Nick Hoang - 2013-11-10

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