Hi everyone,
I'm testing Gwt Highcharts by I have a big problem: need draw a scatter chart with symbol...for example:
......
Point p1 = new Point(5, 5);
Marker m = new Marker();
m.setEnabled(true);
m.setRadius(4);
String myUrl = "url(" + GWT.getModuleBaseURL()+"images/snow.png" + ")";
m.setOption("symbol", myUrl);
p1.setMarker(m);
.....

It works fine!.
The BIG problem is that I need rotate the symbol of a degree value. I'm trying the following code but it doesn't work:
.......
String myRotate = "rotate(45)";
m.setOption("transform", myRotate);
.......

What's wrong?

Thanks a Lot.
Maurizio