Created
January 7, 2018 04:02
-
-
Save NPashaP/4d7255441069d490ab1ebf6284493d88 to your computer and use it in GitHub Desktop.
Viz - Bar - shadow
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
license: gpl-3.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
</head> | |
<style> | |
.viz-bar .bar{ | |
fill: steelblue; | |
} | |
#shadow .bar{ | |
filter:url(#viz-filter) | |
} | |
</style> | |
<body> | |
<svg width="960" height="500"> | |
<defs> | |
<filter id="viz-filter" width="130%" height="130%"> | |
<feGaussianBlur in="SourceAlpha" stdDeviation="4"/> | |
<feOffset dx="3" dy="-3" result="offsetblur"/> | |
<feComponentTransfer> | |
<feFuncA type="linear" slope="0.5"/> | |
</feComponentTransfer> | |
</filter> | |
</defs> | |
<g transform="translate(50,50)"> | |
<g id="shadow"></g> | |
<g id="bars"></g> | |
</g> | |
</svg> | |
<script src="https://d3js.org/d3.v4.min.js"></script> | |
<script src="http://vizjs.org/viz.v1.3.0.min.js"></script> | |
<script> | |
var data=[{key:2, value:10},{key:3, value:4},{key:5, value:6},{key:8, value:1}]; | |
d3.select("#shadow").call(viz.bar().data(data)); | |
d3.select("#bars").call(viz.bar().data(data)); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment