Is there any way to set multiple colors in an axis title in google charts? Through the charts options or jQuery?
For instance, I have this graph:
I set the Orange Y-axis title to orange with {title:'Orange', minValue: 0, titleTextStyle:{color: 'orange'}}
. I would like to set the other Y-axis title so that green is the color green and blue is the color blue. Seems simple but is it possible?
'ready'
event fires -- you replace the contents of the<text>
elements with multiple<tspan>
elements -- here are a couple examples, example 1 & example 2 – WhiteHat