KoolChart - Excellent PHP Chart and GraphKoolChart - Excellent PHP Chart and GraphFullVersion 2.6.0.2 released on 25/11/2016

ChartTypes - PHP Area Chart

* Note:Generate your own chart with Code Generator

Description & Sample code

To add a line series to the chart, you do:

	$series = new AreaSeries();
    $series->Name = "Expenses";
    $series->Appearance->BackgroundColor = "red";
    $series->LabelsAppearance->DataFormatString = "$ {0}";
    $series->TooltipsAppearance->DataFormatString = "$ {0} millions";
    $series->ArrayData(array(30,20,65,40,30));
    $chart->PlotArea->AddSeries($series);