<?php
 
 
include_once 'QOpenFlash.class.php';
 
 
// generate some random data
 
srand((double)microtime()*1000000);
 
 
$bar_red = new BarFade( 55, '#C31812' );
 
$bar_red->add('Key', '2006', 10 );
 
 
// add random height bars:
 
for( $i=0; $i<10; $i++ ){
 
  $bar_red->add(rand(2,5));
 
}
 
$bar_blue = new BarFade( 55, '#424581' );
 
$bar_blue->add('Key', '2007', 10 );
 
 
for( $i=0; $i<10; $i++ ){
 
    $bar_blue->add(rand(5,9));
 
}
 
 
$g = new QChartOpenFlash();
 
$g    ->setTitle( 'Fade Bars', '{font-size:20px; color: #bcd6ff; margin:10px; background-color: #5E83BF; padding: 5px 15px 5px 15px;}' )
 
    ->setBgColor('#FDFDFD')
 
    ->setDataSets($bar_red, $bar_blue)
 
    ->setXLabelStyle( 11, '#000000', 2 )
 
    ->setXLabels( array( 'January','February','March','April','May','June','July','August','September','October' ) )
 
    ->setXAxisColor( '#909090', '#ADB5C7' )
 
    ->setYAxisColor( '#909090', '#ADB5C7' )
 
    ->setYMax( 10 )
 
    ->setYSteps( 5 )
 
    ->setYLegend( 'Open Flash Chart', 12, '#736AFF' );
 
    
 
echo $g->render();
 
?>
 
 |