String title= "Micro$oft at Work";
DataSeries dataSeries = new DataSeries( xAxisLabels, xAxisTitle, yAxisTitle, title );
Stroke[] strokes = new Stroke[]{ LineChartProperties.DEFAULT_LINE_STROKE, LineChartProperties.DEFAULT_LINE_STROKE, LineChartProperties.DEFAULT_LINE_STROKE };
Shape[] shapes = new Shape[]{ PointChartProperties.SHAPE_DIAMOND, PointChartProperties.SHAPE_TRIANGLE, PointChartProperties.SHAPE_CIRCLE };
LineChartProperties lineChartProperties= new LineChartProperties( strokes, shapes );
String[] legendLabels= new String[]{ "Bugs", "Security Holes", "Backdoors" };
dataSeries.addIAxisPlotDataSet( AxisChartsGuide.createAxisChartDataSet( ChartType.LINE, lineChartProperties, 3, legendLabels, 200, 5000 ) );
ChartProperties chartProperties= new ChartProperties();