Tooltip for symbols in palette

Is there a way to display a tooltip when the mouse hovers over a symbol in the symbol palette?


1 Reply

AA Amsath Ali M Syncfusion Team May 18, 2011 05:49 AM UTC

Hi David,

Thanks for using Syncfusion products.

Regarding your query “Is there a way to display a tooltip when the mouse hovers over a symbol in the symbol palette?”
Yes there is way to show tooltips when the mouse hovers over a symbol in the symbol palette .we suggest you to set the PaletteGroupView’s ‘ShowToolTips’ property to ‘true’ to achieve your requirement.

Please refer the below code snippet:
[C#]

foreach (GroupBarItem item in paletteGroupBar1.GroupBarItems)
{
PaletteGroupView view = item.Client as PaletteGroupView;
view.ShowToolTips = true;
}


Please try the below sample and let us know your concerns.
Showtooltips-870764441.zip

Regards,
Amsath Ali.M




Loader.
Up arrow icon