Example: The following example creates a indexed bar series chart and adds values to it.
import com.cete.dynamicpdf.Document;
import com.cete.dynamicpdf.Page;
import com.cete.dynamicpdf.pageelements.charting.*;
import com.cete.dynamicpdf.pageelements.charting.series.*;
import com.cete.dynamicpdf.pageelements.charting.values.*;
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();
// 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 numeric x axis
NumericXAxis xAxis = new NumericXAxis();
// Create a indexed y axis
IndexedYAxis yAxis = new IndexedYAxis();
// Create a indexed bar series and add values to it
IndexedBarSeries barSeries1 = new IndexedBarSeries("Website A", xAxis, yAxis);
barSeries1.getValues().add(new IndexedBarValue(5, 0));
barSeries1.getValues().add(new IndexedBarValue(7, 1));
barSeries1.getValues().add(new IndexedBarValue(9, 2));
barSeries1.getValues().add(new IndexedBarValue(6, 3));
IndexedBarSeries barSeries2 = new IndexedBarSeries("Website B", xAxis, yAxis);
barSeries2.getValues().add(new IndexedBarValue(4, 0));
barSeries2.getValues().add(new IndexedBarValue(2, 1));
barSeries2.getValues().add(new IndexedBarValue(5, 2));
barSeries2.getValues().add(new IndexedBarValue(8, 3));
IndexedBarSeries barSeries3 = new IndexedBarSeries("Website C", xAxis, yAxis);
barSeries3.getValues().add(new IndexedBarValue(2, 0));
barSeries3.getValues().add(new IndexedBarValue(4, 1));
barSeries3.getValues().add(new IndexedBarValue(6, 2));
barSeries3.getValues().add(new IndexedBarValue(8, 3));
// Add indexed bar series to the plot area
plotArea.getSeries().add(barSeries1);
plotArea.getSeries().add(barSeries2);
plotArea.getSeries().add(barSeries3);
// Create a title and add it to the yaxis
Title lTitle = new Title("Visitors (in millions)");
barSeries1.getXAxis().getTitles().add(lTitle);
// Adding AxisLabels to the XAxis
barSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q1", 0));
barSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q2", 1));
barSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q3", 2));
barSeries1.getYAxis().getLabels().add(new IndexedYAxisLabel("Q4", 3));
// Add the chart to the page
page.getElements().add(chart);
document.getPages().add(page);
// Save the PDF
document.draw("[PhysicalPath]/MyDocument.pdf" );
}
}