Step Line Charts
Unsolved
General and Desktop
-
Hi,
Do you mean something like the Line Chart Example ?
-
@gazoni that should be easy enough to create on your own with QLineSeries.
Whenever you add a new point to the series(pNew), check if a previous point exists(pOld),
if yes, than create an intermediatePoint (pNew.x, pOld.y) add that one to the series and than add pNew itself.