I noticed that when trying to apply this option, that it wouldn't take effect.
I fixed this by overriding this class and using shape.toString() instead of shape.
FlatPlotOptions.java - Line 182
public FlagPlotOptions setShape(Shape shape) { return this.setOption("shape", shape != null ? shape : null); }
change to
public FlagPlotOptions setShape(Shape shape) { return this.setOption("shape", shape != null ? shape.toString() : null); }
moxie 1.6 openjdk 1.7
Log in to post a comment.
I noticed that when trying to apply this option, that it wouldn't take effect.
I fixed this by overriding this class and using shape.toString() instead of shape.
FlatPlotOptions.java - Line 182
change to
moxie 1.6
openjdk 1.7