Hi,
I'm developing a web application that uses Gflot v 3.1.1 to build graphs. In some cases, my graphs' X Axis labels have a long text String that I'd like to rotate so that they don't overlap and can be read. So far, I've come to a nasty hack (see attached image) that uses a "placeholder" like (a), (b), (c) as X Axis label, and has a ListBox with the meaning of each placeholder.

This has the drawback that, if I generate an image the X Axis labels don't have a "readable" meaning unless somehow the ListBox is also included.
The X Axis labels could be rotated so as to accommodate these long String. I have in my application's CSS the (web-kit/moz/o)-transform code to rotate text in several web browsers, but I haven't found how to apply this style to my X Axis labels.
I've tried modifying my TickFormatter.formatTickValue(double tickValue, Axis axis) implementation so that returned an HTML tag:
return "<span class='dbAnalysisLabel'>"+labelToDisplay+"</span>";
instead of simply returning the string to be displayed, but everything within the tags is removed, I guess for safety reasons.
Is there a way I can set the CSS style of my X Axis labels?
Thank you very much,
Guillem Plasencia Gallofre.