文件名称:d3.reusable:制作可重用 d3 图的助手
文件大小:5KB
文件格式:ZIP
更新时间:2024-07-06 13:56:20
JavaScript
d3.可重用 制作可重用 d3 图的助手 来自的概念的扩展 为简单起见,使用部分内容 示例位于 这是旧方法的一个简单示例: var aReusableChart = function ( ) { return function ( selection ) { d3 . select ( selection ) . append ( "div" ) . attr ( "class" , "chart" ) . selectAll ( "div" ) . data ( [ 4 , 8 , 15 , 16 , 23 , 42 ] ) . enter ( ) . append ( "div" ) . style ( "width" , function ( d ) { return d * 10 + "px" ; } ) . text ( f
【文件预览】:
d3.reusable-master
----.gitignore(18B)
----README.md(5KB)
----d3.reusable.js(3KB)
----LICENSE(1KB)
----bower.json(487B)