Sets the Dash Type for indexLabel’s line. It is applicable only for pie and doughnut charts when indexLabelPlacement is set to “outside”. For other chart-types, indexLabelLineThickness should be set greater than zero.
Default: solidSupported Line Dash Types:
var chart = new CanvasJS.Chart("container", { . . data: [ { type: "pie", dataPoints : [ {y: 10, indexLabelLineDashType: "dash" } ] }, ] . . }); chart.render();