Skip to main content
A newer version of this page is available. .

BootstrapChartTooltipSettings.Shared Property

Specifies the kind of information to display in a tooltip.

Namespace: DevExpress.Web.Bootstrap

Assembly: DevExpress.Web.Bootstrap.v19.2.dll

Declaration

[DefaultValue(false)]
public bool Shared { get; set; }

Property Value

Type Default Description
Boolean **false**

true if the tooltip should display information about all the points that have the same argument as the hovered point at once; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to Shared
BootstrapChart
.SettingsToolTip.Shared
BootstrapChartBase
.SettingsToolTip.Shared
BootstrapCoordinateSystemChart
.SettingsToolTip.Shared
BootstrapPieChart
.SettingsToolTip.Shared
BootstrapPolarChart
.SettingsToolTip.Shared

Remarks

A tooltip displays information about the currently hovered series point, by default. If you set the Shared property to true, the tooltip will display information about all the points that have the same argument as the hovered point at once.

If the text displayed in the tooltip by default doesn’t suit your needs, you can customize it using the BootstrapUIWidgetTooltipSettings.OnClientCustomizeTooltip property.

See Also