startValue: Number

Sets the point where the stripLine’s shaded region begins on the x-axis.


Default: null
Example: 20,30,100,50

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
axisX:{
    stripLines: [{
        .
        startValue:20,
        .
    }]
},
 .
 .
});
chart.render();


Try it Yourself by Editing the Code below.

  Also See:    



If you have any questions, please feel free to ask in our forums.Ask Question