I'm pulling my hair out trying to ditch the lineSeries dropshadow:

<mx:LineChart id="chart" dataProvider="{graph.itemList}" maxHeight="{width /
2}" maxWidth="{width - 80}" showDataTips="true" filters="{null}">

    <mx:horizontalAxis>
        <mx:DateTimeAxis displayName="{graph.xLabel}"
title="{graph.xLabel}"/>
    </mx:horizontalAxis>

    <mx:verticalAxis>
        <mx:LinearAxis displayName="{graph.yLabel}" title="{graph.yLabel}"/>
    </mx:verticalAxis>

    <mx:series>
       <mx:LineSeries xField="x" yField="y" lineStroke="{ls}"
lineSegmentRenderer="mx.charts.renderers.LineRenderer" filters="{null}"/>
    </mx:series>

    <mx:annotationElements>
        <gui1:HighTideMark positionValue="{widget.kpiValue}"
lineColor="#6633ff"/>
    </mx:annotationElements>

</mx:LineChart>

According to all the docs I canfind, using
lineSegmentRenderer="mx.charts.renderers.LineRenderer" should get rid of the
drop shadow under my line series, but... no dice.

Any ideas?

-- 
"Therefore, send not to know For whom the bell tolls. It tolls for thee."

Josh 'G-Funk' McDonald
  -  j...@joshmcdonald.info
  -  http://twitter.com/sophistifunk
  -  http://flex.joshmcdonald.info/

Reply via email to