Hi Brendan, I saw that in the docs as well, and tried it. It actually kinda works, except if there's more than one series, the marker is displayed with a root of the connecting line...
I admit it's the closest I've got to what I need. sefi On Sun, Nov 23, 2008 at 7:56 PM, Brendan Meutzner <[EMAIL PROTECTED]>wrote: > Sefi, > > Add this to your Chart definition... it sets the dataTipRenderer style to > be a "blank" instance, but the data point renderer still shows... I think > this is what you're looking for. > > dataTipRenderer="mx.skins.ProgrammaticSkin" > > > Brendan > > > > On Sun, Nov 23, 2008 at 7:03 AM, Sefi Ninio <[EMAIL PROTECTED]> wrote: > >> Hi Vivian, >> >> I guess I'm not doing a very good job of making myself clear, please >> excuse me - english is not my first language. >> Anyway, A chart datatip has 3 parts: the bubble with the text area, the >> marker on the series itself and the line that connects the two. >> >> I would like to display the datatip, but only with the marker on the >> series itself, without the bubble or the connecting line. >> >> Sefi >> >> >> On Sun, Nov 23, 2008 at 2:48 PM, Vivian Richard <[EMAIL PROTECTED]>wrote: >> >>> if you are trying to get the charting source data then try "HitData" >>> >>> >>> http://livedocs.adobe.com/flex/3/html/help.html?content=charts_eventsandeffects_03.html >>> >>> >>> On Sun, Nov 23, 2008 at 2:48 AM, Sefi Ninio <[EMAIL >>> PROTECTED]<sefi.ninio%40gmail.com>> >>> wrote: >>> > Hi Don, >>> > >>> > Thanks for the reply. >>> > This isn't what I'm after though... I'm looking for a way to display >>> the >>> > datatip but only display the target of the datatip, without the bubble >>> and >>> > the leading line from the target to the bubble. >>> > Or if there's a different approach other than datatips... >>> > >>> > I would have extended the DataTip or something, but I don't have access >>> to >>> > the charting source for some reason... >>> > >>> > Sefi >>> > >>> > On Sun, Nov 23, 2008 at 12:31 PM, Don Kerr <[EMAIL >>> > PROTECTED]<fusionpage%40yahoo.com>> >>> wrote: >>> >> >>> >> Not clear what you are asking, but did you try dataTipFunction for >>> custom >>> >> dataTips? >>> >> >>> >> It lets you layout your dataTip any way you'd like . Generic example >>> from >>> >> one of my apps >>> >> below... >>> >> >>> >> public function dtf(hd:HitData):String { >>> >> return "<b>"+(hd.item.evaldueDate.getMonth()+1).toString() + >>> >> '/'+ hd.item.evaldueDate.getDate()+"</b>" + "<br>"+ >>> >> hd.item.title + "<br>" >>> >> +hd.item.crNumber + "<br>" >>> >> +hd.item.opr + "<br>"; >>> >> } >>> >> >>> >> Don >>> >> >>> >> --- In [email protected] <flexcoders%40yahoogroups.com>, >>> "Sefi Ninio" <[EMAIL PROTECTED]> wrote: >>> >> > >>> >> > Hey, >>> >> > >>> >> > Is it possible to enable datatips on a chart, but to only display >>> the >>> >> > round >>> >> > marker on the series item and not the datatip? >>> >> > >>> >> > Thanks, >>> >> > Sefi >>> >> > >>> >> >>> > >>> > >>> >> >> > > > -- > Brendan Meutzner > http://www.meutzner.com/blog/ > >

