source: code/Website/open-flash-chart/charts/BarRoundGlass.as@ 7849

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