I cannot seem to find an example where every single point in a set of data had its own tick and label on a graph. when I load in my data, CanvasJS gives me intervals as my x axis. the actual points are placed inbetween these intervals. If i add more data, the intervals dont change. I am looking for an example of how to make it so each point is represented.
I would also like the xaxis to look as identical to this formatting as possible

I have read some documentation here but I am struggling to make it work for me. My X axis values look like this: 119604384477647324 but are in Miliseconds.
any help would be appreciated. I have a presentation soon and I am hard stuck. thank you!
Canvas.js offers a wide range of charts that can be used with a variety of ways to customize them. One key thing to keep in mind is to ensure that your data array
dataPointis in the correct format and contains all corresponding elements.I believe what you are trying to do can be done through utilizing
valueFormatStringvariable, kindly find below a similar example that creates an area chart when working with timestamp data (stored as Unix Timestamp in milliseconds).Also, many examples can be found on how to handle time series data in many ways such as storing the data in
Dateformat as well (not limited to Unix Timestamp). Kindly find here.Hope it helped :)!