Tag Archive for 'seriesfilters'

13
Nov

Removing the default drop shadow from a LineChart chart in Flex

The following example shows how you can remove the default drop shadow from a LineChart chart in Flex by setting the seriesFilters property, as seen in the following snippets:

<mx:LineChart id="lineChart"
        showDataTips="true"
        dataProvider="{dp}"
        width="100%"
        height="100%"
        seriesFilters="[]">

    <!– . . . –>

</mx:LineChart>
<mx:LineChart id="lineChart"
        showDataTips="true"
        dataProvider="{dp}"
        width="100%"
        height="100%">

    <!-- series filters -->
    <mx:seriesFilters>
        <mx:Array />
    </mx:seriesFilters>

    <!– . . . –>

</mx:LineChart>

Full code after the jump.

Continue reading ‘Removing the default drop shadow from a LineChart chart in Flex’