A step chart is a line chart in which points are connected by horizontal and vertical line segments, looking like steps of a staircase. Use below script to display line chart as steps.
Steps:
Create a line chart. Make sure the Line Type selected is Straight (not Smooth)
Add below script to the widget
Save the script and refresh the widget
widget.on('processresult',function(se,ev){
stepType = 'left' //possible values are : left, right, center
ev.result.series[0].step = stepType
})
For example, can the purple line below be converted into a stepper line?
Can this be done for spline values within a column chart?