Chart.js:着色工具提示标签

时间:2015-02-12 22:10:45

标签: javascript charts chart.js

我无法在文档中找到它,是否有人知道如何使工具提示中的那些灰色方块与线条颜色相同,并可能标记每一个? (高,低,平均)

1 个答案:

答案 0 :(得分:3)

在我看来,您并没有在数据集上正确设置pointColor属性。

对于每个数据集,只需将 pointColor 设置为与 strokeColor 相同的值。

在第一个数据集中的内容:

    strokeColor: "rgba(1,220,1,1)",
    pointColor: "rgba(1,220,1,1)",

在第二个数据集中:

    strokeColor: "rgba(220,1,1,1)",
    pointColor: "rgba(220,1,1,1)",

等等......

Here's a jsfiddle to illustrate the point : http://jsfiddle.net/rdtome/aa2j9rut/