| Line | |
|---|
| 1 | package charts {
|
|---|
| 2 | import charts.series.Element;
|
|---|
| 3 | import charts.Elements.PointBarFade;
|
|---|
| 4 |
|
|---|
| 5 | public class BarFade extends BarBase {
|
|---|
| 6 |
|
|---|
| 7 | public function BarFade( json:Object, group:Number ) {
|
|---|
| 8 | super( json, group );
|
|---|
| 9 | }
|
|---|
| 10 |
|
|---|
| 11 | //
|
|---|
| 12 | // called from the base object
|
|---|
| 13 | //
|
|---|
| 14 | protected override function get_element( index:Number, value:Object ): Element {
|
|---|
| 15 | return new PointBarFade( index, value, this.colour, this.group );
|
|---|
| 16 | }
|
|---|
| 17 | }
|
|---|
| 18 | }
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.