Package org.richfaces.sandbox.chart.model

Examples of org.richfaces.sandbox.chart.model.DateChartDataModel


        category2 = new StringChartDataModel(ChartDataModel.ChartType.bar);
        category2.put("A", 1);
        category2.put("B", 2);
        category2.put("C", 3);
       
        dateModel = new DateChartDataModel(ChartDataModel.ChartType.line);
        dateModel.put(new GregorianCalendar(2013, 4, 1).getTime(), 4);
        dateModel.put(new GregorianCalendar(2013, 4, 2).getTime(), 5);
        dateModel.put(new GregorianCalendar(2013, 4, 3).getTime(), 6);
       
       
View Full Code Here

TOP

Related Classes of org.richfaces.sandbox.chart.model.DateChartDataModel

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.