JavaScript UI Libraries & Blazor Components Suite – Smart UI › Forums › Charts & Data Viz › Change Axis Labels, Range, Intervals, horizontal areas via JS › Reply To: Change Axis Labels, Range, Intervals, horizontal areas via JS
July 19, 2022 at 3:00 pm
#103411
salasidis
Participant
Thanks – got that working
How about for elements that are arrays – for example horizontal bands
I can get them working via the main initialization, but not sure how to access them individually
I tried
chart.seriesGroups(0).bands(0).minValue = 0;
chart.seriesGroups(0).bands(0).maxValue = 100;
chart.seriesGroups(0).bands(0).color = ‘light gray’;
but that did not work.