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]> 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]> 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], "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 >> > >> > >

