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.
我有一个由 nvd3 生成的饼图,但它的切片太多。
通过点击图例,我们可以控制切片显示与否,我希望图表切片的前10(按计数)默认显示,其他隐藏(通过点击图例可以添加到饼图中)。
我可以在 nvd3 中执行此操作吗?
最后,我通过转换我的数据来完成这个:
[{ 'x': 10, 'y': 1, 'disabled': true, }]
将 disabled 属性设置为true。
true