使用c3.js,想知道是否有任何方法可以将散点图上的圆圈更改为其他内容,例如矩形?也许是某种d3脚本..
想使用形状来区分两种形式的数据(位置和竞争对手)。
非常感谢任何帮助!
答案 0 :(得分:3)
我不相信它目前是可行的,但您可能希望继续关注/贡献此github问题,其中已请求该功能:https://github.com/masayuki0812/c3/issues/1071
答案 1 :(得分:0)
css中正方形的工作区。这不是最好的方法,但是...
circle {
stroke: rgb(255, 127, 14);
stroke-linecap: square;
stroke-dasharray: 0.1 60;
stroke-width: 14px;
}