Package org.pentaho.platform.uifoundation.chart

Examples of org.pentaho.platform.uifoundation.chart.XYZSeriesCollectionChartDefinition


    } else if ( ChartDefinition.DIAL_CHART_STR.equalsIgnoreCase( chartType ) ) {
      dataDefinition = new DialWidgetDefinition( data, byRow, chartAttributes, width, height, getSession() );
    } else if ( ChartDefinition.BAR_LINE_CHART_STR.equalsIgnoreCase( chartType ) ) {
      dataDefinition = new BarLineChartDefinition( data, byRow, chartAttributes, getSession() );
    } else if ( ChartDefinition.BUBBLE_CHART_STR.equalsIgnoreCase( chartType ) ) {
      dataDefinition = new XYZSeriesCollectionChartDefinition( data, byRow, chartAttributes, getSession() );
    } else {
      dataDefinition = new CategoryDatasetChartDefinition( data, byRow, chartAttributes, getSession() );
    }

    // Determine what we are sending back - Default to OUTPUT_PNG output
View Full Code Here

TOP

Related Classes of org.pentaho.platform.uifoundation.chart.XYZSeriesCollectionChartDefinition

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.