Begin date always showing 24 #4397
Unanswered
RubenDeMossenau
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Question
Is it normal that i'm always seeing 24 + month on x-axis when the start date begins on 00:00
Explanation
I have a question about the x-axis when using the dateTime format.
I'm currently using a line chart. Data as shown
{ "name": "Min", "type": "line", "data": [ { "x": 1696111200000, "y": 2 ,}, { "x": 1696197600000,"y": 0, } ] }
The timezone i'm using it GMT +2 thats why the:
First date 1696111200000 = Sunday, October 1, 2023 00:00:00
Second date 1696197600000 = Monday, October 2, 2023 00:00:00
Now when use this data de first point on the x-axis alsways shows me 24 + month?
I first tought this was the year but this can't be it because the year is 2023
Is there something i'm doing wrong of did i miss a setting?
Screeshot
Data
These are the options that i use:
{ "colors": [ "#0000ff", ], "stroke": { "curve": "stepline", "width": 1 }, "fill": { "type": "fill" }, "yaxis": { "max": 2, "min": 0, "labels": { "style": { "fontSize": "10px" } }, "tickAmount": 2 }, "xaxis": { "type": "datetime", "tooltip": { "enabled": false }, "tickPlacement": "on", "labels": { "datetimeUTC": false, "style": { "fontSize": "10px" } }, "convertedCatToNumeric": false, "min": 1696110200000, "max": 1696198600000 } }
Beta Was this translation helpful? Give feedback.
All reactions