防止 d3 圆环图自动排序
prevent d3 donut chart from sorting automatically
有没有办法防止圆环图自动对值进行排序?我没有看到我指定值应该排序的任何地方,但是,它们按顺时针方式按降序排列。任何建议都会很棒。
在饼图布局中使用 sort(null)
:
donut = d3.layout.pie().sort(null);
这是您的 JS Bin:http://jsbin.com/xoqapibuvo/1/edit
有没有办法防止圆环图自动对值进行排序?我没有看到我指定值应该排序的任何地方,但是,它们按顺时针方式按降序排列。任何建议都会很棒。
在饼图布局中使用 sort(null)
:
donut = d3.layout.pie().sort(null);
这是您的 JS Bin:http://jsbin.com/xoqapibuvo/1/edit