I wrote a function to override my FLEX LineChart's datatips because the default datatips were ugly and rather boring.

I finally set the style I wanted but am now having some problems removing un-necessary tags from being displayed in the custom datatips.

For example, the datatips now display things like this:

"<b>Humidity</b></BR>2010-07-05T00:15:00"

I can always perform a "Replace()" to remove those break and bold HTML tags, but that seems really un-necessary and anti-development.

I am using this to set the dataTip's label text:

var hd:HitData = value as HitData; 
var item:LineSeriesItem = hd.chartItem as LineSeriesItem;
_xAxisText = String(hd.displayText + ' ' + item.xValue);

Why is [displayText] displaying HTML tags I must parse out? How can I format those tags out of my text's value? Is there a setting?

I understand the HTML tag's purpose, although they are not being used by FLEX (apparently). I just dont understand how to remove them from the text. I already set my style attributes in the container, which I think would override these tags? Could that be why they are appearing?

Any ideas or suggestions? Thanks!

link|improve this question

70% accept rate
FWIW, I'm having the same problem with my charts too. Hoping someone can help us out here. – Wade Mueller Aug 12 '10 at 21:56
^ Wade, I did "somewhat" fix it by using both the dataTipFunction and the dataTipRenderer class. I do not understand why using both fixed it, but if I set the custom label text properties in the dataTipRenderer (class) AND as well in the dataTipFunction (in MXML component), it seems to work. It atleast removes the HTML tags, but I still cant set the background color property. I wonder if this is an Adobe bug? If I do not use both, I get the tags still :( – Devtron Aug 12 '10 at 23:26
feedback

1 Answer

Flex should definitely be using the HTML tags to format your dataTip. Check this article.

Because you are seeing HTML tags in your dataTips, I am wondering if you perhaps implemented the dataTipFunction incorrectly. If you are able to, you should post a little bit more code.

link|improve this answer
It's actually not a dataTipfunction, the code is in the dataTipRenderer class. I did recently add a dataTipFunction. It fixed my problem (somewhat) but when I removed my rendering class, it did not keep the style I wanted. It seems to pick and choose what gets used and how and where. If I use the function only, it doesnt look right. if I use both, I get some of my data missing. if I use rendering class only, I get the HTML tags in the text. – Devtron Aug 12 '10 at 18:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.