source:
code/Website/open-flash-chart/elements/axis/YTextField.as@
7849
Last change on this file since 7849 was 7849, checked in by , 15 years ago | |
---|---|
File size: 326 bytes |
Line | |
---|---|
1 | package elements.axis { |
2 | |
3 | import flash.text.TextField; |
4 | |
5 | public class YTextField extends TextField { |
6 | public var y_val:Number; |
7 | |
8 | // |
9 | // mini class to hold the y value of the |
10 | // Y Axis label (so we can position it later ) |
11 | // |
12 | public function YTextField() { |
13 | super(); |
14 | this.y_val = 0; |
15 | } |
16 | } |
17 | } |
Note:
See TracBrowser
for help on using the repository browser.