/*****************************************************************************************/
private void gridLines() throws ChartDataException
{
AxisProperties axisProperties = new AxisProperties();
ChartStroke xAxisGridLines = new ChartStroke( new BasicStroke( 1.0f ), Color.red );
axisProperties.getXAxisProperties().setGridLineChartStroke( xAxisGridLines );
axisProperties.getXAxisProperties().setShowGridLines( AxisTypeProperties.GRID_LINES_ONLY_WITH_LABELS );
axisProperties.getYAxisProperties().setShowGridLines( AxisTypeProperties.GRID_LINES_NONE );
double[][] data = {{3444d, 1506.3d, 2777d, 2550.345d, 659.667d, 950.6644d, 4500.3453d, 1200.67583d, 3000.4354d, 1268.0001d, 2444.432d, 5003d}};
String[] xAxisLabels = {"January", "Febuary", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"};
String[] legendLabels = {"New Bugs in Windows Per Month"};