1Graph::Frame(3) User Contributed Perl Documentation Graph::Frame(3)
2
3
4
5 new
6 Title : new
7 Usage : you should not be calling new, see add_frame
8 Function:
9 Example :
10 Returns :
11 Args :
12
13 init
14 Title : init
15 Usage :
16 Function:
17 Example :
18 Returns :
19 Args :
20
21 add_glyph
22 Title : add_glyph
23 Usage : $frame->add_glyph( 'glyph_name', glyph_args=>arg)
24 Function: adds a glyph to the Frame object
25 Returns : a SVG::Graph::Glyph::glyph_name object
26 Args : glyph dependent
27
28 add_frame
29 Title : add_frame
30 Usage : my $frame = $graph->add_frame
31 Function: adds a Frame to the current Frame
32 Returns : a SVG::Graph::Frame object
33 Args : (optional) frame_transform => 'top' default orientation
34 'bottom' rotates graph 180 deg (about the center)
35 'right' points top position towards right
36 'left' points top position towards left
37
38 frames
39 Title : frames
40 Usage :
41 Function:
42 Example :
43 Returns :
44 Args :
45
46 add_data
47 Title : add_data
48 Usage : $frame->add_data($data)
49 Function: adds a SVG::Graph::Data object to the current Frame
50 Returns : none
51 Args : SVG::Graph::Data object
52
53 all_data
54 Title : all_data
55 Usage :
56 Function:
57 Example :
58 Returns :
59 Args :
60
61 data
62 Title : data
63 Usage :
64 Function:
65 Example :
66 Returns :
67 Args :
68
69 glyphs
70 Title : glyphs
71 Usage :
72 Function:
73 Example :
74 Returns :
75 Args :
76
77 data_chunks
78 Title : data_chunks
79 Usage :
80 Function:
81 Example :
82 Returns :
83 Args :
84
85 draw
86 Title : draw
87 Usage : should not directly call this method, see SVG::Graph->draw
88 Function: depends on child glyph implementations
89 Example :
90 Returns :
91 Args :
92
93 _recalculate_stats
94 Title : _recalculate_stats
95 Usage :
96 Function:
97 Example :
98 Returns :
99 Args :
100
101 _parent_svg
102 Title : _parent_svg
103 Usage : $obj->_parent_svg($newval)
104 Function:
105 Example :
106 Returns : value of _parent_svg (a scalar)
107 Args : on set, new value (a scalar or undef, optional)
108
109 _parent_frame
110 Title : _parent_frame
111 Usage : $obj->_parent_frame($newval)
112 Function:
113 Example :
114 Returns : value of _parent_frame (a scalar)
115 Args : on set, new value (a scalar or undef, optional)
116
117 svg
118 Title : svg
119 Usage : $obj->svg($newval)
120 Function:
121 Example :
122 Returns : value of svg (a scalar)
123 Args : on set, new value (a scalar or undef, optional)
124
125 xsize
126 Title : xsize
127 Usage : $obj->xsize($newval)
128 Function:
129 Example :
130 Returns : value of xsize (a scalar)
131 Args : on set, new value (a scalar or undef, optional)
132
133 ysize
134 Title : ysize
135 Usage : $obj->ysize($newval)
136 Function:
137 Example :
138 Returns : value of ysize (a scalar)
139 Args : on set, new value (a scalar or undef, optional)
140
141 xoffset
142 Title : xoffset
143 Usage : $obj->xoffset($newval)
144 Function:
145 Example :
146 Returns : value of xoffset (a scalar)
147 Args : on set, new value (a scalar or undef, optional)
148
149 yoffset
150 Title : yoffset
151 Usage : $obj->yoffset($newval)
152 Function:
153 Example :
154 Returns : value of yoffset (a scalar)
155 Args : on set, new value (a scalar or undef, optional)
156
157 xmin
158 Title : xmin
159 Usage : $obj->xmin($newval)
160 Function:
161 Example :
162 Returns : value of xmin (a scalar)
163 Args : on set, new value (a scalar or undef, optional)
164
165 xmax
166 Title : xmax
167 Usage : $obj->xmax($newval)
168 Function:
169 Example :
170 Returns : value of xmax (a scalar)
171 Args : on set, new value (a scalar or undef, optional)
172
173 ymin
174 Title : ymin
175 Usage : $obj->ymin($newval)
176 Function:
177 Example :
178 Returns : value of ymin (a scalar)
179 Args : on set, new value (a scalar or undef, optional)
180
181 ymax
182 Title : ymax
183 Usage : $obj->ymax($newval)
184 Function:
185 Example :
186 Returns : value of ymax (a scalar)
187 Args : on set, new value (a scalar or undef, optional)
188
189 xrange
190 Title : xrange
191 Usage : $obj->xrange($newval)
192 Function:
193 Example :
194 Returns : value of xrange (a scalar)
195
196 yrange
197 Title : yrange
198 Usage : $obj->yrange($newval)
199 Function:
200 Example :
201 Returns : value of yrange (a scalar)
202
203 stack
204 Title : stack
205 Usage : $obj->stack($newval)
206 Function:
207 Example :
208 Returns : value of stack (a scalar)
209 Args : on set, new value (a scalar or undef, optional)
210
211
212
213perl v5.12.0 2003-11-21 Graph::Frame(3)