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

Last change on this file was 7849, checked in by dennisw, 15 years ago
File size: 601 bytes
Line 
1 package charts {
2 import charts.series.Element;
3 import charts.series.bars.Plastic;
4 import string.Utils;
5
6 public class BarPlastic extends BarBase {
7
8
9 public function BarPlastic( json:Object, group:Number ) {
10
11 super( json, group );
12 }
13
14 //
15 // called from the base object
16 //
17 protected override function get_element( index:Number, value:Object ): Element {
18
19 return new Plastic( index, this.get_element_helper_prop( value ), this.group );
20 }
21
22 }
23 }
Note: See TracBrowser for help on using the repository browser.