The following example shows how you can display the labels in a ColumnSeries either vertically or horizontally in a ColumnChart control in Flex by setting the Boolean showLabelVertically property.
Full code after the jump.
Continue reading ‘Displaying the labels vertically in Flex ColumnChart control’
The following example shows how you can create custom labels for a ColumnChart control’s ColumnSeries in Flex, as well as creating custom label functions for a linear axis and custom data tips for the ColumnChart control.
Full code after the jump.
Continue reading ‘Adding custom labels to a Flex ColumnChart control’s column series’
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’
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’
The following example shows how you can add a stroke around chart items in a Flex ColumnChart control.
Full code after the jump.
Continue reading ‘Adding a stroke around a ColumnSeries item in a Flex ColumnChart control’
In a previous example, “Creating a linear gradient fill on a ColumnChart control’s column series in Flex”, we saw how to create a linear gradient fill for a ColumnChart in Flex. In the following example we look at how to create a radial gradient fill.
Full code after the jump.
Continue reading ‘Creating a radial gradient fill on a ColumnChart control’s column series in Flex’
The following example shows how you can create a linear gradient fill for a ColumnSeries in Flex.
Full code after the jump.
Continue reading ‘Creating a linear gradient fill on a ColumnChart control’s column series in Flex’