Tag Archive for 'horizontaltickaligned'

19
Nov

Aligning data in a Flex LineChart control to horizontal and vertical tick marks

The following example shows how you can align the tick marks along the vertical and horizontal axis using the horizontalTickAligned and verticalTickAligned styles in the GridLines class, as seen in the following snippet:

<mx:GridLines direction="both"
    horizontalTickAligned="false"
    verticalTickAligned="false">

    …

</mx:GridLines>

Full code after the jump.

Continue reading ‘Aligning data in a Flex LineChart control to horizontal and vertical tick marks’