Hi, I’m using the scatter chart and I want to set a specific interval.
Here is an example data array : [09:45:00,0.26780000000000653,13.390000000000327,9,45,0] This is its signification. [time (unix time formatted in hours, minutes, seconds), price, value, hour, minutes, seconds] For the xAxis I’m using ‘category’, but I can also use time if needed. Here is the result: [cid:image001.png@01D95E4C.5727ECA0] Now, I would like to achieve the following. * On the xAxis, I would like it to start at 08:00:00 * On the xAxis, I would like a 15 minutes interval. So the xAxis would be 08:00:00, 08:15:00, 08:30:00, etc. I’ve tried with interval, maxInterval, minInterval, etc. and also changing type from ‘category’ to ‘time’ but I cannot achieve this. Can you please tell me how I can achieve this ? Thank you