我正在使用 MVC 4.0 和 chart.JS 来生成我的图表。我想为每个值放置 Y 轴的水平线,并通过使用以下属性成功开发它。
scaleShowGridLines = true;
scaleShowHorizontalLines: true,
//Boolean - Whether to show vertical lines (except Y axis)
scaleShowVerticalLines: false,
但我的实际要求是我想放置不同颜色的水平线。
scaleGridLineColor: "rgba(0,0,0,.05)"
上面的线改变水平线的颜色,但它适用于所有线。
请指导我。