我正在使用Dygraph,我在折线图上设置了注释。我的问题是我为注释定义了tickColor属性,但是注释采用了趋势的颜色而没有我定义的颜色。
我的代码:
scoreChart = new Dygraph(document.getElementById("scorechart"),
ad,
{
colors: ['blue'],
height: 200,
});
scoreChart.ready(function() {
scoreChart.setAnnotations([{
series: "Score",
x: '2016/04/25 07:25:14',
shortText: 'g120_wi',
tickHeight: 280,
tickColor: "red",
attachAtBottom: true,
tickWidth: 2
}]);
});
结果:(我希望在tickColor属性中设置红色注释行。但我想要蓝色趋势)