source: code/Website/open-flash-chart/charts/LineStyle.as

Last change on this file was 7849, checked in by dennisw, 15 years ago
File size: 366 bytes
Line 
1package charts {
2
3 public class LineStyle extends Object
4 {
5 public var style:String;
6 public var on:Number;
7 public var off:Number;
8
9 public function LineStyle( json:Object ) {
10
11 // tr.ace(json);
12
13 // default values:
14 this.style = 'solid';
15 this.on = 1;
16 this.off = 5;
17
18 object_helper.merge_2( json, this );
19 }
20 }
21}
Note: See TracBrowser for help on using the repository browser.