RE: [flexcoders] Custom Datatip Renderes for charts

2007-05-30 Thread Ely Greenfield
__ From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent: Wednesday, May 30, 2007 2:40 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Custom Datatip Renderes for charts There's nothing special going on in the GraphicsUtil

RE: [flexcoders] Custom Datatip Renderes for charts

2007-05-30 Thread {reduxDJ}
[mailto:[EMAIL PROTECTED] On Behalf Of Ely Greenfield Sent: Wednesday, May 30, 2007 2:40 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Custom Datatip Renderes for charts There's nothing special going on in the GraphicsUtilities class. The problem is that you're dr

RE: [flexcoders] Custom Datatip Renderes for charts

2007-05-30 Thread Ely Greenfield
There's nothing special going on in the GraphicsUtilities class. The problem is that you're drawing into a sprite, rather than directly into your component's own graphics. Ely. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of patricklemiuex Sent: Wednesda

Re: [flexcoders] Custom Datatip Renderes for charts

2007-05-30 Thread Flexing...
You need to write an Renderder and assign it to the "dataTipRenderer" property of the chart. Have a look at the following thread. Though it is not in English but I guess you should be able to understand the code: http://www.fxug.net/modules/xhnewbb/viewtopic.php? topic_id=888&post_id=3572

RE: [flexcoders] Custom Datatip Renderes for charts

2007-05-30 Thread Ely Greenfield
The text for data tips is flash standard HTML. So you can control font, color, formatting, etc. with html tags. I'm surprised dollar signs are removed, maybe if you tried encoding them, it might render correctly? There's no way to get rounded corners with the default data tip. But All c