SankeyTooltipBuilder.NodeTooltipTemplate(String) Method
In This Article
Specifies the client-side nodeTooltipTemplate.
Namespace: DevExtreme.AspNet.Mvc.Builders
Assembly: DevExtreme.AspNet.Core.dll
#Declaration
C#
public SankeyTooltipBuilder NodeTooltipTemplate(
string templateContent
)
#Parameters
Name | Type | Description |
---|---|---|
template |
String | A string that contains the template. |
#Returns
Type | Description |
---|---|
Sankey |
A reference to this instance after the method is called. |
#Remarks
This method allows you to specify a short template for a node tooltip. Refer to the Templates article for more information and code examples.
@(Html.DevExtreme().Sankey()
.Tooltip(tooltip => tooltip
.NodeTooltipTemplate("Template content")
)
)
See Also