Utilizing MVC 4.0 and chart.JS for graph generation, I have successfully implemented horizontal lines on the Y axis using the following property:
scaleShowGridLines = true;
scaleShowHorizontalLines: true,
//Boolean - Whether to show vertical lines (except Y axis)
scaleShowVerticalLines: false,
However, my specific requirement is to have different colors for each horizontal line.
scaleGridLineColor: "rgba(0,0,0,.05)"
The above code changes the color of all horizontal lines uniformly. How can I set different colors for individual lines?