@SuppressWarnings("unchecked")
public JSMChart (ChartOptions options) {
this.options = options;
this.series = new JSMArray<Series> ();
Array<org.one2team.highcharts.shared.Series> s = options.getSeries ();
SeriesType dst = SeriesType.valueOf (options.getChart ().getDefaultSeriesType ());
for (int i = 0; i < s.length (); i ++) {
org.one2team.highcharts.server.JSMSeries si = (org.one2team.highcharts.server.JSMSeries) s.getItem (i);
JSMSeries sd = new JSMSeries (si);
((JSMArray<Series>) series).pushItem (sd);
switch (dst) {