You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MyXAxis in ApexChartOptions :
Xaxis = new XAxis
{
Title = new AxisTitle
{
Text = "Time",
},
Type = XAxisType.Datetime,
Min = _listTop.Min(p => p.Time),
Max = _listTop.Max(p => p.Time),
},
So the issue is the following : the chart is displaying the last hour before with a wrong date start (24 on the image, all my data are from the 27). I checked multiple time my data from the json and the c# list who provide the series, and according to me there is no mistake. I don't know why the chart has this behaviour. Thanks in advance
The text was updated successfully, but these errors were encountered:
sorry I misread you post.. looks like you are 3 days off, so it's not timezone.
There is no magic here that could explain the difference.
One tip is to use the method ToUnixTimeMilliseconds() to set the x-axis data, Apexcharts.js is using that under the hood.
You can also set the Debug flag on the chart to see the data send to the chart in the console.
Hello, I have the following ApexChart :
My Code :
So the issue is the following : the chart is displaying the last hour before with a wrong date start (24 on the image, all my data are from the 27). I checked multiple time my data from the json and the c# list who provide the series, and according to me there is no mistake. I don't know why the chart has this behaviour. Thanks in advance
The text was updated successfully, but these errors were encountered: