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
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;
}