Rev | Line | |
---|
[7849] | 1 | package charts {
|
---|
| 2 |
|
---|
| 3 | import charts.series.Element;
|
---|
| 4 | import charts.series.bars.PlasticFlat;
|
---|
| 5 | import string.Utils;
|
---|
| 6 |
|
---|
| 7 | public class BarPlasticFlat extends BarBase {
|
---|
| 8 |
|
---|
| 9 |
|
---|
| 10 | public function BarPlasticFlat( json:Object, group:Number ) {
|
---|
| 11 |
|
---|
| 12 | super( json, group );
|
---|
| 13 | }
|
---|
| 14 |
|
---|
| 15 | //
|
---|
| 16 | // called from the base object
|
---|
| 17 | //
|
---|
| 18 | protected override function get_element( index:Number, value:Object ): Element {
|
---|
| 19 |
|
---|
| 20 | return new PlasticFlat( index, this.get_element_helper_prop( value ), this.group );
|
---|
| 21 | }
|
---|
| 22 |
|
---|
| 23 | }
|
---|
| 24 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.