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

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