RE: [flexcoders] Re: how to show/hide a line in a chart

2006-09-05 Thread Ely Greenfield
Ah, yeah, actually I know why it's not working. My head is pretty rusty on the Flex 1.5 code ;) In Flex 1.5, series are _not_ visual objects. Instead, they manage visual objects. As such, they don't have a _visible property themselves. I don't have the code in front of me, but this:

[flexcoders] Re: how to show/hide a line in a chart

2006-09-03 Thread shemeshkale
Ely, that would be the greatest solution - but unfortunately its NOT working. any idea why? (again: i m with flex 1.5) --- In flexcoders@yahoogroups.com, Ely Greenfield [EMAIL PROTECTED] wrote: You can get at the nth lineSeries as: myChart.series[i]._visible = true/false; Ely.

[flexcoders] Re: how to show/hide a line in a chart

2006-08-31 Thread shemeshkale
(see the first post in this topic) FLEX 1.5 ! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

RE: [flexcoders] Re: how to show/hide a line in a chart

2006-08-31 Thread Ely Greenfield
You can get at the nth lineSeries as: myChart.series[i]._visible = true/false; Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkaleSent: Thursday, August 31, 2006 12:28 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: how to show/hide a

[flexcoders] Re: how to show/hide a line in a chart

2006-08-31 Thread Doug Lowder
If you have your line chart bound to a series array, you can build a new array that contains only the lines you wish to show, and then change your chart's binding to that array instead of the original array. I used this approach with area/line combination charts with four elements, and it

[flexcoders] Re: how to show/hide a line in a chart

2006-08-30 Thread shemeshkale
anyone? please help! --- In flexcoders@yahoogroups.com, shemeshkale [EMAIL PROTECTED] wrote: Igor, it seems u misunderstood my question. please read my first post again - i want to show/hide only ONE line (LineSeries) not the whole chart. your answer will hide the whole chart! since

RE: [flexcoders] Re: how to show/hide a line in a chart

2006-08-30 Thread Ely Greenfield
Flex 1.5 or Flex 2? Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of shemeshkaleSent: Wednesday, August 30, 2006 12:28 AMTo: flexcoders@yahoogroups.comSubject: [flexcoders] Re: how to show/hide a line in a chart anyone? please help!--- In [EMAIL

[flexcoders] Re: how to show/hide a line in a chart

2006-08-28 Thread shemeshkale
Igor, it seems u misunderstood my question. please read my first post again - i want to show/hide only ONE line (LineSeries) not the whole chart. your answer will hide the whole chart! since LineSeries can NOT have IDs the solution is not that simple. again: i have one chart with 4 different