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