diff options
author | Derick Rethans <github@derickrethans.nl> | 2006-12-13 15:20:49 +0000 |
---|---|---|
committer | Derick Rethans <github@derickrethans.nl> | 2006-12-13 15:20:49 +0000 |
commit | 0ad26ac3a11d0b9c82bf15e70e4fc67200d38f9a (patch) | |
tree | 9988a35fc253d70913abcaa883d77d3626ba0786 /docs | |
parent | 8ba09f524620588ca67f5bdfa60f31f953725e4f (diff) | |
download | zetacomponents-graph-0ad26ac3a11d0b9c82bf15e70e4fc67200d38f9a.zip zetacomponents-graph-0ad26ac3a11d0b9c82bf15e70e4fc67200d38f9a.tar.gz |
- More RST fixes.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/tutorial.txt | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/docs/tutorial.txt b/docs/tutorial.txt index 987d0c8..8a17975 100644 --- a/docs/tutorial.txt +++ b/docs/tutorial.txt @@ -143,19 +143,18 @@ renderer again in this example. There are only two differences compared to the last example. In line we instantiate an ezcGraphLineChart object instead of a PieChart and beginning in line 10 we assign multiple datasets from an array we included earlier in the -script. The array in the file tutorial_wikipedia_data.php is build like this: - -.. - <?php - return array( - 'English' => array( - 'Jan 2006' => 965, - 'Feb 2006' => 1000, - ... - ), - ... - ); - ?> +script. The array in the file tutorial_wikipedia_data.php is build like this:: + + <?php + return array( + 'English' => array( + 'Jan 2006' => 965, + 'Feb 2006' => 1000, + ... + ), + ... + ); + ?> The result is the simple default line chart. |