BootstrapUIWidgetTooltipSettings.OnClientCustomizeTooltip Property
In This Article
Specifies a client callback function used to customize the tooltip.
Namespace: DevExpress.Web.Bootstrap
Assembly: DevExpress.Web.Bootstrap.v24.2.dll
NuGet Package: DevExpress.Web.Bootstrap
#Declaration
#Property Value
Type | Default | Description |
---|---|---|
String | String. |
A string that represents either the name of a Java |
#Remarks
The function returned by OnClientCustomizeTooltip accepts an object with properties that depend on the chart type. For more information on this object’s properties, refer to the customizeTooltip article.
cs
chart.OnClientCustomizeTooltip = @"function(arg) {
return {
text: arg.argumentText + ""<br/>"" + arg.valueText
};
}";
See Also