Package com.googlecode.wickedcharts.highcharts.options.series

Examples of com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries


                new PlotOptionsChoice()
                .setColumn(new PlotOptions().setPointPadding(0.2f).setBorderWidth(0)));

        for (Summary summary : summaries) {
            String propertyName = summary.getPropertyName();
            Series<Number> setData = new SimpleSeries().setName(propertyName).setData(summary.getValuesAsNumbers());
            options.addSeries(setData);
        }
       
        return new WickedChart(options);
    }
View Full Code Here


       
        options.setPlotOptions(
                new PlotOptionsChoice()
                    .setColumn(new PlotOptions().setPointPadding(0.2f).setBorderWidth(0)));
       
        Series<Number> setData = new SimpleSeries().setName("Value").setData(values);
        options.addSeries(setData);
       
        return new WickedChart(options);
    }
View Full Code Here

        options.setyAxis(new Axis().setTitle(new Title("Temperature (C)")));

        options.setLegend(new Legend().setLayout(LegendLayout.VERTICAL).setAlign(HorizontalAlignment.RIGHT).setVerticalAlign(VerticalAlignment.TOP).setX(-10).setY(100).setBorderWidth(0));

        options.addSeries(new SimpleSeries().setName("Tokyo").setData(Arrays.asList(new Number[] { 7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6 })));

        options.addSeries(new SimpleSeries().setName("New York").setData(Arrays.asList(new Number[] { -0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5 })));
        return options;
    }
View Full Code Here

       
        options.setPlotOptions(
                new PlotOptionsChoice()
                    .setColumn(new PlotOptions().setPointPadding(0.2f).setBorderWidth(0)));
       
        Series<Number> setData = new SimpleSeries().setName("Value").setData(values);
        options.addSeries(setData);
       
        return new WickedChart(options);
    }
View Full Code Here

        options.setyAxis(new Axis().setTitle(new Title("Temperature (C)")));

        options.setLegend(new Legend().setLayout(LegendLayout.VERTICAL).setAlign(HorizontalAlignment.RIGHT).setVerticalAlign(VerticalAlignment.TOP).setX(-10).setY(100).setBorderWidth(0));

        options.addSeries(new SimpleSeries().setName("Tokyo").setData(Arrays.asList(new Number[] { 7.0, 6.9, 9.5, 14.5, 18.2, 21.5, 25.2, 26.5, 23.3, 18.3, 13.9, 9.6 })));

        options.addSeries(new SimpleSeries().setName("New York").setData(Arrays.asList(new Number[] { -0.2, 0.8, 5.7, 11.3, 17.0, 22.0, 24.8, 24.1, 20.1, 14.1, 8.6, 2.5 })));
        return options;
    }
View Full Code Here

TOP

Related Classes of com.googlecode.wickedcharts.highcharts.options.series.SimpleSeries

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.