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.
这个问题的标题说明了一切。我只发现了如何更改连接器的颜色。如果我删除该color:选项,它们都是灰色的。我试图用十六进制存储的颜色放入该字段,但没有结果,保持黑色。
color:
在dataLabels.formatter您可以访问this.point.color. 如此简单的数据标签集useHTML: true,并创建具有指定颜色的跨度。
dataLabels.formatter
this.point.color
useHTML: true
formatter 函数为您提供了一个回调对象,该对象具有一个颜色属性,可以使用您选择的颜色进行设置
formatter: (format) -> format.color = @point.color