I want to use Google Charts API to create an Annotated Chart like the one on the example page: https://developers.google.com/chart/interactive/docs/gallery/annotationchart
However, my data is not in a date format, it is two columns each containing a number which do not represent time.
When I try to draw my chart I receive an error message stating that the first column must be a date or datetime format.
I tried to get around the problem by changing the first column to:
new Date(0,0,MyNumber)
the chart draws my data but the x-axis labels are all dates which I don't want! How can I get the labels to be my numbers?