lineDashType: String

Sets the Dash Type of Custom Break.

Default: solid
Example: “dot”, “dash”, etc.

Other Supported Dash Types:

  • “solid”
  • “shortDash”
  • “shortDot”
  • “shortDashDot”
  • “shortDashDotDot”
  • “dot”
  • “dash”
  • “dashDot”
  • “longDash”
  • “longDashDot”
  • “longDashDotDot”
var  chart =  new  CanvasJS.Chart("chartContainer",
{
 .
 .
axisX: {
    scaleBreaks: {
	customBreaks: [{
	     scaleBreaks: "dash",
             .
	     .
        }]
    }

},
 .
 . 
});
chart.render();

Try Editing The Code

  Also See:    


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