stemDashType : String

Sets the dash type of Stem in Box and Whisker / Error Charts.


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

Other Supported Dash Types:

  • “solid”
  • “shortDash”
  • “shortDot”
  • “shortDashDot”
  • “shortDashDotDot”
  • “dot”
  • “dash”
  • “dashDot”
  • “longDash”
  • “longDashDot”
  • “longDashDotDot”

Note
  • Works only in Box and Whisker & Error Charts.

var  chart =  new  CanvasJS.Chart("container",
{
 .
 .
data:[{
     type: "error",
     stemDashType : "dash",

}]
});
chart.render();


Try it Yourself by Editing the Code below.

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