Hello,
I know that I can assign a color to an entire series using setOption like so:
.setOption('series',{'0':{'color':'0000ff'},'1':{'color':'red'}, '2':{'color':'775baf'},'3':{'color':'green'}})
or directly with
.setOption('series.0.color', 'blue')
Sometimes I run into a case where I want to call attention to only a single data point in the series, and not the entire series. How can I set this color in script? I know there is an option to do it in the Edit Chart UI, but I was hoping to do it in code.