blob: 96f9c68309a06651b1a501a7d9be950bb95ec427 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
require_once 'tutorial_autoload.php';
$wikidata = include 'tutorial_wikipedia_data.php';
$graph = new ezcGraphBarChart();
$graph->title = 'Wikipedia articles';
// Stack bars
$graph->options->stackBars = true;
// Add data
foreach ( $wikidata as $language => $data )
{
$graph->data[$language] = new ezcGraphArrayDataSet( $data );
}
$graph->yAxis->label = 'Thousand articles';
$graph->render( 400, 150, 'tutorial_stacked_bar_chart.svg' );
?>
|