| <?php
// Sample bar chart
require_once ("class_ebcharts.php");
$b=new chart("EDEMO","bar",400,200);
$b->add_value('10,20,30,25,33','Software');
$b->add_value('11,14,25,15,23','Hardware');
$b->add_value('5,6,8,9,11','Labor');
$b->add_label("first,second,third,fourth,fifth");
$b->set_color_table('0x339966,0x999900,0xcc3300,0x669999,0x993333');
$b->show_legend();
$b->draw();
?> | | |