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 possible to exclude some series from chart legend? Thanks!
|
feedback
|
|
It is possible to exclude some series from the chart legend. Every chart class (extending ChartBase) has a legendData Array property. This legendData has a list of LegendItem's. If you create a newArray based on the legendData, but with only the LegendItem's that you want; then you can set that array as the dataProvider for your legend. Also, you can create your own array of LegendItem's based on LegendItems that you create from scratch. And use that array as the dataProvider for the Legend. For example, here I only display the first and third series in my legend:
http://livedocs.adobe.com/flex/3/langref/mx/charts/chartClasses/ChartBase.html#legendData | |||||||||||||
feedback
|
|
I elaborated on Luis B's answer to make this dynamically reflect on the linechart's data provider. This way the legend only shows what fields are available in the chart. Kinda nifty. Here is what I came up with, and it works well:
I ended up having to use an EventHandler and attaching an event Listener to the linechart itself. This is because I was experiencing "race conditions" with the legend's data provider. Sometmes it would work, sometimes it would not. Using the event Listener eliminated that problem, and only filters the legend when the linechart has completed loading it's data. FEEL FREE TO UPVOTE THIS ANSWER, FLEX FOLKS!! | |||||
feedback
|
|
OK another version of devtron's answer, if you already have a custom linechart class anyway like I have, then put this in:
Then you bind your legend dataprovider to linechart.activeLegendData instead of linechart. The advantage of this solution over Devtron's is that you don't have to rewrite the code every time you put another linechart in your app. | |||
feedback
|