"Inverse" step line option
Current step line chart plots the horizontal line first, then the vertical. "Inverse" option would result in the vertical line plotted first, followed by the vertical.
10
votes
alex
shared this idea
-
Andruscha commented
It could be a paramater like step_inverted:true
-
Barkley101 commented
in highstock.js change
// step line?
if (i && options.step) {
var lastPoint = segment[i - 1];
segmentPath.push(
lastPoint.plotX,
point.plotY
);
}