I have two types of annotations, one has links and other doesn't. I want to color them both in different colors. Is it possible?
type 1 is -
{
v: 'sample',
Link: 'some link
}
type 2 is -
{
v: 'sample',
}
I want to color type1 in some color and type2 in other, is it possible ?
you can style the annotations for the overall chart,
or for each series individually
see following working snippet,
the
fontSize
is set to10
for all annotationsthen the colors are changed for the individual series
EDIT
to have different colors for annotations in a single series,
need to change color manually when the
'ready'
event firessee following working snippet...