Knowledge Base Article

Line Chart - Customizing a line to various "Dotted" styles

When creating a line chart, a certain line might require a different style.

For example - A line that shows a threshold should be styled as a dotted line

The following widget & widget script can be used to customize your line chart:

widget.on('processresult', function(widget, result) {
let series = result.result.series;
series[1].dashStyle = 'Dot'
})

 Result:

Before After

 

 

Available line styles:

  • Solid
  • ShortDash
  • ShortDot
  • ShortDashDot
  • ShortDashDotDot
  • Dot
  • Dash
  • LongDash
  • DashDot
  • LongDashDot
  • LongDashDotDot'

Created from Line Chart - Customizing a line to various "Dotted" styles by Ophir_Buchman 

 

Updated 05-02-2024

1 Comment