OFC_Chart.php
2.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<?php
/**
* PHP Integration of Open Flash Chart
* Copyright (C) 2008 John Glazebrook <open-flash-chart@teethgrinder.co.uk>
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
if (! function_exists('json_encode'))
{
require_once('OFC/JSON.php');
}
require_once('OFC/JSON_Format.php');
require_once('OFC/OFC_Elements.php');
require_once('OFC/Charts/OFC_Charts_Area.php');
require_once('OFC/Charts/OFC_Charts_Bar.php');
require_once('OFC/Charts/OFC_Charts_Line.php');
require_once('OFC/Charts/OFC_Charts_Pie.php');
require_once('OFC/Charts/OFC_Charts_Scatter.php');
require_once('OFC/Charts/Area/OFC_Charts_Area_Hollow.php');
require_once('OFC/Charts/Bar/OFC_Charts_Bar_Filled.php');
require_once('OFC/Charts/Bar/OFC_Charts_Bar_3d.php');
require_once('OFC/Charts/Bar/OFC_Charts_Bar_Glass.php');
require_once('OFC/Charts/Bar/OFC_Charts_Bar_Horizontal.php');
require_once('OFC/Charts/Bar/OFC_Charts_Bar_Sketch.php');
require_once('OFC/Charts/Bar/OFC_Charts_Bar_Stack.php');
require_once('OFC/Charts/Line/OFC_Charts_Line_Dot.php');
require_once('OFC/Charts/Line/OFC_Charts_Line_Hollow.php');
class OFC_Chart
{
function OFC_Chart()
{
$this->title = new OFC_Elements_Title( "Many data lines" );
$this->elements = array();
}
function set_title( $t )
{
$this->title = $t;
}
function set_x_axis( $x )
{
$this->x_axis = $x;
}
function set_y_axis( $y )
{
$this->y_axis = $y;
}
function add_y_axis( $y )
{
$this->y_axis = $y;
}
function set_y_axis_right( $y )
{
$this->y_axis_right = $y;
}
function add_element( $e )
{
$this->elements[] = $e;
}
function set_x_legend( $x )
{
$this->x_legend = $x;
}
function set_y_legend( $y )
{
$this->y_legend = $y;
}
function set_bg_colour( $colour )
{
$this->bg_colour = $colour;
}
function toString()
{
if (function_exists('json_encode'))
{
return json_encode($this);
}
else
{
$json = new Services_JSON();
return $json->encode( $this );
}
}
function toPrettyString()
{
return json_format( $this->toString() );
}
}