Displaying 1 result from an estimated 1 matches for "applicationbus".
Did you mean:
application's
2009 May 15
1
[PATCH server] First round of (largely) cosmetic changes to flexchart.
...chart/flexchart.mxml
index 7a86cd9..d4d097b 100644
--- a/src/flexchart/flexchart.mxml
+++ b/src/flexchart/flexchart.mxml
@@ -22,6 +22,9 @@
private function myInit():void {
+ Constants.setWidth(this.stage.stageWidth);
+ Constants.setHeight(this.stage.stageHeight);
+
var bus:ApplicationBus = ApplicationBus.instance();
mainChart.height = Constants.height;
mainChart.width = Constants.width;
@@ -57,6 +60,7 @@
}
private function zoomOutSeries(e:Event):void {
+ ApplicationBus.instance().mainChart.clearSelection();
expandHistory.end(); expandHistory.pl...