I’m trying to do bulk set for all chart’s on a page that have a large number of values based on user interaction with a page.
roreach chart set
chart.title.set(“fontColor”,hexColor);
chart.legend.set(“fontColor”,hexColor);
for each y and x axis
x/yAxis.set(“titleFontColor”,hexColor);
x/yAxis.set(“labelFontColor”,hexColor);
because it renders them all in sequence it takes over 30 seconds sometimes. Is there a way to set all at once rather than one at a time?