can you share screen shot.

On Wed, Dec 1, 2010 at 8:52 PM, vipul suthar <[email protected]> wrote:

> 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]<flex_india%[email protected]>
> .
> For more options, visit this group at
> http://groups.google.com/group/flex_india?hl=en.
>
>

-- 
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.

Reply via email to