我需要为以下设计自定义hightcharts pie donut:
问:如何自定义圆形以形成 C形和形状的箭头?
已编辑:
感谢Bochan,revised jsfiddle: see sample
现在,我试图在两点之间制作橙色和蓝色点(marker),根据文档,我写了下面的代码;但它没有显示标记:
plotOptions: {
pie: {
pointWidth: '2',
borderWidth: '0',
innerSize: '60%',
animation: false,
dataLabels: {
enabled: false,
},
states: {
hover:{
marker:{
fillColor: 'red',
lineWidth: 2,
lineColor: 'blue',
radius: 2
}
}
}
}
},
sample shows marker on line chart我需要类似的。
由于
答案 0 :(得分:2)