This is a migrated thread and some comments may be shown as answers.

how can I set a Tips when RadDiagramShape MouseOver

1 Answer 85 Views
Diagram
This is a migrated thread and some comments may be shown as answers.
zhu
Top achievements
Rank 1
zhu asked on 21 Aug 2019, 09:03 AM

Hi!

I am using RadDiagram and in my diagram.

how can I Show a Text Tips when RadDiagramShape MouseOver ?

Thanks

1 Answer, 1 is accepted

Sort by
0
Dimitar Dinev
Telerik team
answered on 22 Aug 2019, 10:38 AM
Hi Zhu,

You can achieve that by setting the ToolTip property of the RadDiagramShape. Note that if RadDiagramShape property IsEnabled is set to false, the ToolTip won't show. In that case, you can use the ToolTipService.ShowOnDisabled="True" attached property to show it.

<telerik:RadDiagramShape x:Name="ConditionShape"
        Width="80"
        Height="80"
        Content="Condition"
        Position="160, 80"
        Geometry="{telerik:FlowChartShape ShapeType=DecisionShape}"
        IsEnabled="False"
        ToolTip="TEST"
        ToolTipService.ShowOnDisabled="True"/>


Please, let me know if that answers your query.

Regards,
Dimitar Dinev
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Diagram
Asked by
zhu
Top achievements
Rank 1
Answers by
Dimitar Dinev
Telerik team
Share this question
or