KoolChart - Excellent PHP Chart and GraphKoolChart - Excellent PHP Chart and GraphFullVersion 1.0.0.0 released on 11/29/2012

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);