When I customized the ColumnChart in Flex by overrided updateDisplayList function, colors in legend no longer display. As you will see in the below picture:
http://i41.tinypic.com/mim35d.png
Does I missed anything?
Thanks.
|
When I customized the ColumnChart in Flex by overrided updateDisplayList function, colors in legend no longer display. As you will see in the below picture: http://i41.tinypic.com/mim35d.png Does I missed anything? Thanks. | |||
|
feedback
|
|
In case you want to look into the source code, here is what I did. override protected function updateDisplayList(unscaledWidth:Number,unscaledHeight:Number):void { super.updateDisplayList(unscaledWidth, unscaledHeight);
| |||
|
feedback
|
|
You can format the legend markers by using legendMarkerRenderer. This article shows you how towards the bottom: http://livedocs.adobe.com/flex/3/html/help.html?content=charts_formatting_13.html You can also customize your LegendItem's even more by creating your own LegendItem's: http://livedocs.adobe.com/flex/3/langref/mx/charts/LegendItem.html Example to customize your Legend: http://stackoverflow.com/questions/2491303/how-to-exclude-series-in-legend-flex/2495314#2495314 | |||
|
feedback
|