Official Support Area, Q&As, Discussions, Suggestions and Bug reports.
Forum's Guidelines
Above code show you the most important code to setup a combochart, however you will need data which is required for any charts, for example
<?php
ComboChart::create(array(
"dataSource"=>array(
array("category","dataBar","dataLine"),
array("Pencil",50,100),
array("Paper",30,50),
array("Book",120,30),
),
"columns"=>array(
"category",
"dataBar",
"dataLine"
),
"options"=>array(
"series"=>array(
array("type"=>"bars"),
array("type"=>"line"),
)
)
));
?>
For the purpose of demonstrating ComboBox, I use the array as datasource.
Let KoolReport help you to make great reports. It's free & open-source released under MIT license.
Download KoolReport View demo