Chartjs传说的不同边界颜色
我需要为传说设置与实际图表不同的边框颜色。每当我在图表数据中添加边框颜色时,它都会应用于图例和图表。而且我找不到为传奇设置不同边框颜色的任何选择nofollow noreferrer“>在文档中
I need to set a different border color for the legend than the actual chart; whenever I add border color to the chart data, it gets applied to both legend and chart. And I couldn't find any options for setting different border colors for the legend in documentation
Here's a screenshot of what I'm trying to achieve, any idea?:
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我发现这样做的唯一方法以及传说中的其他一些自定义是实现传奇项目接口。
接受的答案在这里与传奇项目接口结合使用,应该是一个不错的开始。
这是 jsfiddle 我从该答案中做出的,但对ChartJS 3.7.1进行了更新。重点关注的主要部分是:
Strokestyle是大纲属性,我在数据集中介绍了一个名为LegendOutline的字段。 LegendOutline和数据集中的数据均为i引用,因此LegendOutline [i]指向表示数据[i]的标签
The only way I have found to do this and some other customisation on the legend is to implement the legend item interface.
The accepted answer here in combination with the legend item interface should be a good start.
Here's a jsfiddle that I made from that answer, but updated for chartjs 3.7.1. The main part to focus on is this:
strokeStyle is the outline property, and I've made a field in the dataset called legendOutline. legendOutline and the data from the dataset are both referenced with i, so the legendOutline[i] points to the label representing data[i]