I have a function which creates a series line in amcahrt.
Within in I have the following lines
let bullet = series.bullets.push(new am4charts.CircleBullet())
bullet.circle.stroke = am4core.color('#fff')
bullet.circle.radius = 5
series.strokeWidth = 2
I want to set these on the chart globally rather than at series line level as they will always be the same.
Does this chart have some global options so I could do something like
mychart.series.strokeWidth = 2
You may well want set individual stroke widths but IMHO the normal use case would be to have them all the same width.