Tagged Questions

3
votes
3answers
2k views

How to exclude series in legend (Flex)

In flex charting, I want to draw something like "reference lines" which are related to specific series, therefore these lines are not independent series and should not be shown in legend. Is it ...
1
vote
3answers
4k views

Flex 3.0 : Showing data in the legend of a Pie Chart

I'm a newbie to Adobe Flex 3.0. I need to show data within the Pie Chart Legend, alongside the colored markers. I have a few vague ideas about how to go about it. (Maybe I would have to write my ...
0
votes
0answers
59 views

Making all text in legendItems in a legend the same width in flex

I have been trying to make it so that the text in legendItems are all the same width but to no avail. Normally this is not a problem but when setting the opaqueBackground of the legendItem to a value ...
0
votes
2answers
190 views

Setting fill style of flex legend item not working

I have been trying (but to no avail) to set the background color of a legend item in Flex to a color of my choosing. Unfortunately, it doesn't seem to be working. I obtain a reference to the ...
0
votes
0answers
338 views

User-defined legend on a flex chart

I'm creating a simple bar chart with a single series, which have a fillFunction. The function is setting a color based on the data object : <?xml version="1.0" encoding="utf-8"?> ...
0
votes
2answers
256 views

Flex Chart Legend - how to get fine grained programmatic control?

I am looking to get access to individual legend items in actionscript (a Legend Item being the label and coloured block identifying a chart series). Does anyone know of a property of the Legend or ...
0
votes
1answer
253 views

Making a Flex chart with an interactive legend

I currently need help with making a chart in Flex with multiple series and a chart legend which is an interactive legend where upon selecting an item in the legend (which corresponds with a series in ...
0
votes
2answers
792 views

Flex Column Chart customization

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 ...
0
votes
1answer
2k views

Flex - Placement of Legend for a chart

I would like to be able to specify the placement of a legend for a linechart. Currently, it continues to appear to the right of the chart. I have tried playing with the width/height of the chart to ...
0
votes
3answers
1k views

Adding LegendItems in Flex places horizontally not vertically (as it's supposed to)

I'm dynamically inserting LegendItems into a Legend using the following code: signalLegend.removeAllChildren(); signalLegend.direction = "vertical"; for (var i:int = 0; i < numItems - 1; i++) { ...
0
votes
1answer
736 views

How to add children to a LegendItem?

I'm trying to add a Label to the LegendItem objects in my chart's legend, without much success. I extended the LegendItem class, and the constructor of the class I made is below. The problem is that ...