endValue: Number

Sets the point where the stripLine’s shaded region ends on the y-axis. Should be used in conjunction with “startValue” property.


Default: null
Example: 50,60,200,300

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
axisY:{
    stripLines: [{
        .
        endValue:50,
        .
    }]
},
 .
 .
});
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