如何自定义饼图中引导线(连接图形和标签的线)的颜色(Amcharts v4)
How to customise the color of leader line (line that connects graph and label) in a pie chart (Amcharts v4)
我用amcharts v4做了一个饼图。包含饼图的 div 的背景颜色是深色,引出线(连接图表和标签的线)默认为深色,使其不可见。
Pie chart image
有没有办法自定义引导线的颜色?
使用 Tick
pieSeries.ticks.template.stroke = '#d0d2d6';
pieSeries.ticks.template.strokeWidth = 1;
我用amcharts v4做了一个饼图。包含饼图的 div 的背景颜色是深色,引出线(连接图表和标签的线)默认为深色,使其不可见。
Pie chart image
有没有办法自定义引导线的颜色?
使用 Tick
pieSeries.ticks.template.stroke = '#d0d2d6';
pieSeries.ticks.template.strokeWidth = 1;