This is an automated email from the ASF dual-hosted git repository. aharui pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/royale-asjs.git
commit 68258f5889ead881aa6c140c35271efba21cc48d Author: Alex Harui <aha...@apache.org> AuthorDate: Thu Nov 8 11:15:49 2018 -0800 force redraw --- .../MXRoyale/src/main/royale/mx/charts/GridLines.as | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/frameworks/projects/MXRoyale/src/main/royale/mx/charts/GridLines.as b/frameworks/projects/MXRoyale/src/main/royale/mx/charts/GridLines.as index 7130058..ce07541 100644 --- a/frameworks/projects/MXRoyale/src/main/royale/mx/charts/GridLines.as +++ b/frameworks/projects/MXRoyale/src/main/royale/mx/charts/GridLines.as @@ -677,6 +677,21 @@ public class GridLines extends ChartElement { invalidateDisplayList(); } + + /** + * @inheritDoc + * + * @langversion 3.0 + * @playerversion Flash 9 + * @playerversion AIR 1.1 + * @productversion Flex 3 + */ + override public function setActualSize(w:Number, h:Number):void + { + super.setActualSize(w, h); + updateDisplayList(w, h); + } + } }