PHP Classes

File: sample_barfade.php

Recommend this page to a friend!
  Classes of Tom Schaefer   QOpenFlash   sample_barfade.php   Download  
File: sample_barfade.php
Role: Example script
Content type: text/plain
Description: Sample Fading Bar Chart
Class: QOpenFlash
Display charts using Open Flash
Author: By
Last change: renaming
Date: 16 years ago
Size: 1,008 bytes
 

Contents

Class file image Download
<?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();
?>