- Home
- Forum
- ASP.NET Web Forms
- How to get captions and tooltips on Symbol Palette items?
How to get captions and tooltips on Symbol Palette items?
Hi, I am trying to add captions and tooltips to my symbol palette items. How do I do this?

Original => What I want
SIGN IN To post a reply.
3 Replies
RT
Ramya Thirugnanam
Syncfusion Team
April 26, 2019 06:04 AM UTC
Hi David,
|
Query |
Response | |
|
Add caption to symbol palette items |
· Please use symbol palette’s ShowPaletteItemText Property to show/hide the text below the palette shapes.
· By default, when you enable showPaletteItemText property, a node name will be rendered as a palette item text.
· If you need a text to be displayed with space or something, then you should use paletteItem label property to achieve your requirement because node name should not contain space or start with numeric values.
Code example:
| |
|
Add tooltip to symbol palette items. |
We have rendered a tooltip for symbol palette items in diagram create event. Please refer to the code example below.
Code example:
|
Regards,
Ramya T
DV
David van Laar Veth
April 29, 2019 01:19 AM UTC
Thanks Ramya,

I have implemented the caption, but now when I drag the shape, there is a label on the dragged shape, and it is the Name (BPMNTaskNode), not the PaletteItem.Label (Form).
How do I remove the label from the dragged items?
RT
Ramya Thirugnanam
Syncfusion Team
April 29, 2019 06:40 AM UTC
Hi David,
Query: How do I remove the label from the dragged items
Please use the below CSS code example to achieve your requirement.
Code example:
|
<style>
.e-paletteItem.e-draggable.e-js.dragClone .e-text-container {
display:none;
}
</style>
|
Regards,
Ramya T
SIGN IN To post a reply.
- 3 Replies
- 2 Participants
-
DV David van Laar Veth
- Apr 25, 2019 11:14 PM UTC
- Apr 29, 2019 06:40 AM UTC