Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
240
Remove Tree Map tool tip of outer blocks
posted

Hi,

i want to remove the tool tip of the outer blocks in tree map. The format i am using for tool tip is

<ITEM_LABEL><BR/><COLOR_VALUE_LABEL> : <COLOR_VALUE:00.##>.

Please give some code samples to selectivily remove the tool tip of outer blocks in the Fillscenegraph event.

Regards,Shiju

Parents
No Data
Reply
  • 28496
    Offline posted

    if you handle the ChartDrawItem event like this, you should be able to disable that tooltip:

    void UltraChart1_ChartDrawItem(object sender, ChartDrawItemEventArgs e)

    {

    Box b = e.Primitive as Box;

    if (b != null && b.Row == 0)

    {

    b.Caps = PCaps.None;

    b.Layer = null;

    }

    }

Children
No Data