com.cete.dynamicpdf.pageelements.charting.Series
Class IndexedStackedBarSeriesElement



Example: The following example creates indexed stacked bar series elements and creates indexed stacked bar series chart to it.

import com.cete.dynamicpdf.*;
import com.cete.dynamicpdf.pageelements.charting.*;
import com.cete.dynamicpdf.pageelements.charting.series.*;
import com.cete.dynamicpdf.pageelements.charting.axes.*;
 
public class MyClass{
       public static void main(String args[]){
 
           // Create a PDF Document
           Document document = new Document();
 
           // Create a Page and add it to the document
           Page page = new Page();
           document.getPages().add(page);
 
           // Create a chart
           Chart chart = new Chart(0, 0, 400, 200);
        
           //Get the default plot area from the chart
           PlotArea plotArea = chart.getPrimaryPlotArea();
        
           // Create header titles and add it to the chart
           Title title1 = new Title("Website Visitors");
           Title title2 = new Title("Year - 2007");
           chart.getHeaderTitles().add(title1);
           chart.getHeaderTitles().add(title2);
        
           // Create a indexed bar series elements and add values to it
           IndexedStackedBarSeriesElement seriesElement1 = new IndexedStackedBarSeriesElement("Website A");
           seriesElement1.getValues().add(new float[] { 5, 7, 9, 6 });
           IndexedStackedBarSeriesElement seriesElement2 = new IndexedStackedBarSeriesElement("Website B");
           seriesElement2.getValues().add(new float[] { 4, 2, 5, 8 });
           IndexedStackedBarSeriesElement seriesElement3 = new IndexedStackedBarSeriesElement("Website C");
           seriesElement3.getValues().add(new float[] { 2, 4, 6, 9 });
        
           // Create a indexed stacked bar series and add indexed stacked bar series elements to it
           IndexedStackedBarSeries stackedBarSeries1 = new IndexedStackedBarSeries();
           stackedBarSeries1.add(seriesElement1);
           stackedBarSeries1.add(seriesElement2);
           stackedBarSeries1.add(seriesElement3);
        
           // Add indexed stacked bar series to the plot area
           plotArea.getSeries().add(stackedBarSeries1);
        
           // Create a footer title and add it to the chart
           Title title3 = new Title("Visitors (in millions)");
           chart.getFooterTitles().add(title3);
        
           // Adding AxisLabels to the YAxis
           stackedBarSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q1", 0));
           stackedBarSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q2", 1));
           stackedBarSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q3", 2));
           stackedBarSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q4", 3));
        
           // Add the chart to the page
           page.getElements().add(chart);
 
           // Save the PDF
           document.draw("[PhysicalPath]/MyDocument.pdf" );
       }
 }