Line | |
---|
1 | package charts {
|
---|
2 | import charts.series.Element;
|
---|
3 | import charts.series.bars.Bar;
|
---|
4 | import string.Utils;
|
---|
5 |
|
---|
6 |
|
---|
7 | public class Bar extends BarBase {
|
---|
8 |
|
---|
9 | public function Bar( 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 charts.series.bars.Bar( index, this.get_element_helper_prop( value ), this.group );
|
---|
20 | }
|
---|
21 | }
|
---|
22 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.