Is it possible to add horizontal gridlines at irregular intervals to a Google Visualization ColumnChart? Something similar to the Good, Better, Best markers on this image chart:
I have tried to figure it out myself, but have only found ways to add gridlines at regular intervals. Nothing at arbitrary locations.
If Google Visiualization can't do this, can anyone suggest a good javascript svg charting library that can?
Use the
vAxis.ticks
option:Each element in the
ticks
array is an object withv
andf
properties: thev
property is the value to place the label at, and thef
property is the label to use.