Archive for November 24th, 2007

24
Nov

Changing the default column width ratio of a ColumnChart control in Flex

The following example shows how you can customize the column width in a Flex ColumnChart control by setting the columnWidthRatio style, as seen in the following snippet:

<mx:ColumnChart id="columnChart" columnWidthRatio="0.85">

    // …

</mx:ColumnChart>

Full code after the jump.

Continue reading ‘Changing the default column width ratio of a ColumnChart control in Flex’

24
Nov

Setting a ColumnChart control’s item roll over color and item selection color in Flex

The following code shows you how you can customize the item roll over color and item selection color in a Flex ColumnChart control by setting the itemRollOverColor and itemSelectionColor styles.

Full code after the jump.

Continue reading ‘Setting a ColumnChart control’s item roll over color and item selection color in Flex’