Warning this is an old version.

Take me to the latest version

Chart Elements - Y Axis Menu - Reverse Y Axis

The Y Axis has been reversed, -10 is at the top.

This goes into the <head> of the page:

<script type="text/javascript" src="js/swfobject.js"></script>
<script type="text/javascript">

swfobject.embedSWF(
"open-flash-chart.swf", "my_chart",
"550", "260", "9.0.0", "expressInstall.swf",
{"data-file":"gallery/y-axis-rotate-labels.php"} );

</script>
This writes the chart into a div with id="my_chart", right click and view source to see it in action, [the tutorials have more details]

gallery/y-axis-rotate-labels.php
<?php

include '../php-ofc-library/open-flash-chart.php';

$title = new titledate("D M d Y") );

$data = array();
for( 
$i=0$i<10$i++)
    
$data[] = rand(27);

$bar = new bar_rounded_glass();
$bar->set_values$data );

$chart = new open_flash_chart();
$chart->set_title$title );
$chart->add_element$bar );

//
// create a Y Axis object
//
$y = new y_axis();
$y->set_vertical();
$y->set_labels( array('Zero','One','Two','Three','Four','Five','Six','Seven','Eight') );

//
// Add the Y Axis object to the chart:
//
$chart->set_y_axis$y );

echo 
$chart->toPrettyString();
To see the data produced : gallery/y-axis-rotate-labels.php, then 'view source'.
Support This Project
Adverts:


Open Flash Chart logo by numb.me.uk. | Syntax highlights are by GeSHi