by Peter deHaan
November 15, 2007
The following example shows how you can add horizontal or vertical (or both) grid lines to a LineChart contol in Flex by setting the direction style in the GridLines tags, as seen in the following snippet:
<mx:LineChart dataProvider="{dp}">
<mx:backgroundElements>
<mx:GridLines direction="vertical" />
</mx:backgroundElements>
</mx:LineChart>
Full [...]
Read the full article →
by Peter deHaan
November 15, 2007
The following example shows how you can alternate background row colors in a LineSeries chart in Flex by setting the horizontalAlternateFill style in the GridLines object, as seen in the following snippet:
<mx:LineChart showDataTips="true" dataProvider="{dp}">
<mx:backgroundElements>
<mx:GridLines>
[...]
Read the full article →