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