Hi Greg,
Based on your requirement, we suggest you use the SfTooltip
component within the headerTemplate to show the tooltip on hovering over the
tab header. Refer the below highlighted code snippet. Let us know if you need
any further assistance.
[index.razor]
|
<SfTab ID="tab" Height="250px" Width="550px">
<TabItems>
<TabItem >
<HeaderTemplate>
<SfTooltip Target="#tabitem1" Content="Tab1 Tooltip">
</SfTooltip>
<div id="tabitem1">Tab1</div>
</HeaderTemplate>
<ContentTemplate>
<div>Content</div>
</ContentTemplate>
</TabItem>
</TabItems>
</SfTab>
|
[output screenshot]
Regards,
Vijay Ravi