Package ca.odell.glazedlists.jfreechart

Examples of ca.odell.glazedlists.jfreechart.CalculationCategoryDataset


    // Datasets
    //

    /** A CategoryDataset backed by the given <code>calculations</code>; each Calculation is a single-valued series in the CategoryDataset */
    public static CalculationCategoryDataset calculationCategoryDataset(Calculation<? extends Number>... calculations) {
        final CalculationCategoryDataset ccd = new CalculationCategoryDataset();
        ccd.getCalculations().addAll(Arrays.asList(calculations));
        return ccd;
    }
View Full Code Here

TOP

Related Classes of ca.odell.glazedlists.jfreechart.CalculationCategoryDataset

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.