Need to change line(grid) color, create custom theme, but my line with opacity
function am4themes_sdTheme(target) {
if (target instanceof am4core.InterfaceColorSet) {
target.setFor('text', am4core.color('#ffffff')); // text color
target.setFor('grid', am4core.color('#ffffff')); // line color
}
}
am4core.useTheme(am4themes_sdTheme);
Thanks!
