I have a linechart that contains daily price data.  I'd like the gridlines to
ONLY appear on the 1st day of the month and the labels to only display under
the gridlines.  I still want all datapoints on the chart, just want to
eliminate some of the clutter on the screen.  Thanks in advance.  

As of right now I have something like this:

<mx:LineChart dataProvider="{asdf}">
    <mx:backgroundElements>
        <mx:GridLines direction="both"/>
    </mx:backgroundElements>

    <mx:series>
        <mx:LineSeries yField="price"/>
    </mx:series>
    
    <mx:horizontalAxis>
        <mx:CategoryAxis categoryField="date"/>
    </mx:horizontalAxis>

    <mx:verticalAxis>
        <mx:LinearAxis baseAtZero="false"/>
    </mx:verticalAxis>

    <mx:horizontalAxisRenderer>
        <mx:AxisRenderer tickPlacement="none" labelRotation="90"
canDropLabels="true" canStagger="true"/>
    </mx:horizonatalAxisRenderer>
</mx:LineChart>
-- 
View this message in context: 
http://www.nabble.com/LineChart-gridlines---labels-with-daily-data-tf3487290.html#a9736750
Sent from the FlexCoders mailing list archive at Nabble.com.

Reply via email to