You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@flex.apache.org by "Justin Mclean (JIRA)" <ji...@apache.org> on 2013/12/25 01:28:50 UTC

[jira] [Assigned] (FLEX-34011) Axis Render throws RTE when axis is null

     [ https://issues.apache.org/jira/browse/FLEX-34011?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Justin Mclean reassigned FLEX-34011:
------------------------------------

    Assignee: Justin Mclean

> Axis Render throws RTE when axis is null
> ----------------------------------------
>
>                 Key: FLEX-34011
>                 URL: https://issues.apache.org/jira/browse/FLEX-34011
>             Project: Apache Flex
>          Issue Type: Bug
>          Components: Charts
>    Affects Versions: Apache Flex 4.11.0
>         Environment: Any
>            Reporter: João Fernandes
>            Assignee: Justin Mclean
>            Priority: Minor
>              Labels: chart, easyfix, easytest
>   Original Estimate: 0.5h
>  Remaining Estimate: 0.5h
>
> When a CartesianChart is initialized with a null Axis, which can be created in the future an propagated through bindings, the chart throws RTE because the value is not validated if it's null or not.
> In AxisRenderer, 
>    public function set axis(value:IAxis):void
>     {
>         if (_axis)
>         {
>             _axis.removeEventListener("axisChange", axisChangeHandler, false);
>             _axis.removeEventListener("titleChange", titleChangeHandler, false);
>         }
>         _axis = value;
>         value.addEventListener("axisChange", axisChangeHandler,
>                                false, 0, true);
>         value.addEventListener("titleChange", titleChangeHandler,
>                                false, 0, true);
>     }
> should be 
>    public function set axis(value:IAxis):void
>     {
>         if (_axis)
>         {
>             _axis.removeEventListener("axisChange", axisChangeHandler, false);
>             _axis.removeEventListener("titleChange", titleChangeHandler, false);
>         }
>         _axis = value;
>        if(value)
>        {
>         value.addEventListener("axisChange", axisChangeHandler,
>                                false, 0, true);
>         value.addEventListener("titleChange", titleChangeHandler,
>                                false, 0, true);
>        }
>     }



--
This message was sent by Atlassian JIRA
(v6.1.5#6160)