Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 d3.js 的箱形图中是否有任何画笔选择选项?
喜欢以下链接中的选择
http://mbostock.github.com/d3/ex/splom.html
D3 不是图表库,因此它不会将画笔控件之类的东西作为选项公开,而是作为可配置组件公开。您可以使用d3.svg.brush()将画笔控件附加到任何可视化,包括设置要使用的比例以及定义在画笔事件之前、期间和之后要执行的操作的处理程序。
d3.svg.brush()