[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-11 Thread sailorsea21
Thanks everyone! Works great :) -David --- In flexcoders@yahoogroups.com, EddieBerman [EMAIL PROTECTED] wrote: Here you go... private function myDataTipFunction( e:HitData ):String { var obj:Object = e.chartItem; if (e.chartItem is ColumnSeriesItem) { ...your columnSeries code here }

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, sailorsea21 [EMAIL PROTECTED] wrote: Hi everyone, I have a multiple series graph: ColumnSeries and LineSeries. How can I modify the value displayed in my ColumnSeries datatip? The value is a numeric value like 20465. I would like to apply a

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread sailorsea21
Hi Amy, My graph is a multiple series (Column and Line). I successfully modified the column series datatip but my line series data tip is now giving me an error: Type Coercion failed: cannot convert mx.charts.series::[EMAIL PROTECTED] to mx.charts.series.ColumnSeries. How can I have another

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread Amy
--- In flexcoders@yahoogroups.com, sailorsea21 [EMAIL PROTECTED] wrote: Hi Amy, My graph is a multiple series (Column and Line). I successfully modified the column series datatip but my line series data tip is now giving me an error: Type Coercion failed: cannot convert

[flexcoders] Re: sailorsea21 - How can I modify the value in my ColumnSeries datatip.

2008-11-10 Thread EddieBerman
Here you go... private function myDataTipFunction( e:HitData ):String { var obj:Object = e.chartItem; if (e.chartItem is ColumnSeriesItem) { ...your columnSeries code here } else { ...your lineSeries code here } -Eddie --- In flexcoders@yahoogroups.com, Amy [EMAIL PROTECTED] wrote: --- In