fillOpacity: Number

Sets opacity of filled area in custom break.


Default: null
Examples: .1, .5, 1. etc

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
 axisX: {
    scaleBreaks: {
	customBreaks: [{
            fillOpacity: .2,
	    .
	    .
        }]
    }

 },
 .
 . 
});
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