i design column chart and i have to show the data tip function on top
of the column chart, i am able to how datatip function on top the
column chart, but after certain height data tip function merge with
column, here is the code for that
public function dataTipFunction(e : HitData) : String {
var dataTip : String = "";
var element : Series = Series(e.element);
var yField : String = element["yField"];
dataTip += "<b>" + element.displayName + "</b><br/>";
if (ddlmetric.selectedit...@unit == '$') {
dataTip +=
dollarFormatter.format(e.item[yField]);
}
else{
dataTip +=
valueFormatter.format(e.item[yField]);
}
return dataTip;
}
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.