Login   Register  
PHP Classes
elePHPant
Icontem

File: sample_barfade.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  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: 2008-06-08 02:34
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 BarFade55'#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 BarFade55'#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)
    ->
setXLabelStyle11'#000000')
    ->
setXLabels( array( 'January','February','March','April','May','June','July','August','September','October' ) )
    ->
setXAxisColor'#909090''#ADB5C7' )
    ->
setYAxisColor'#909090''#ADB5C7' )
    ->
setYMax10 )
    ->
setYSteps)
    ->
setYLegend'Open Flash Chart'12'#736AFF' );
    
echo 
$g->render();
?>