Hello,
i am having a bunch of sorted time values, which polty plots in the wrong order.
i am having the following setup:
dfLineGraphOut = pd.DataFramerows = connectionLineGraphListOutSorted
figOut = px.line(dfLineGraphOut, x="time", y="amount", color="list")
graphJSONLineGraphOut = plotly.io.to_json(figOut, pretty=True)
And here is a sample of my set:
set=[ {
โlistโ': โdoneโ,
โamountโ: 500,
โtimeโ : โ15:20โ,
}]
My set is sorted by time.
This is how my plot looks like:
If i try to plot less values, then it works
Thank you for your help in advance, since i couldnโt find anything regarding that topic.