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

ChartTypes - PHP Bar Chart

* Note:Generate your own chart with Code Generator

Description & Sample code

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

	$series = new BarSeries();
	$series->Name = "TVs";
	$series->TooltipsAppearance->DataFormatString = "$ {0} millions";
	$series->ArrayData(array(20,30,40,70));
	$chart->PlotArea->AddSeries($series);