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

ToolTipOptions.ShowForPoints Property

Specifies whether to show tooltip for a series point.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v19.1.dll

Declaration

[XtraSerializableProperty]
public bool ShowForPoints { get; set; }

Property Value

Type Description
Boolean

true to show tooltip; otherwise, false.

Property Paths

You can access this nested property as listed below:

Library Object Type Path to ShowForPoints
WinForms Controls ChartControl
.ToolTipOptions.ShowForPoints
ASP.NET Web Forms Controls ChartControlSettings
.ToolTipOptions.ShowForPoints
MVCxChartControl
.ToolTipOptions.ShowForPoints
WebChartControl
.ToolTipOptions.ShowForPoints

Remarks

Before using the ShowForPoints property, make sure the ChartControl.ToolTipEnabled property is set to true.

When working with a multiple series, it makes sense to display a series name (specified in the Series.Name property) in a tooltip. To do this, use the ToolTipOptions.ShowForSeries property.

The following table shows this property in action.

ShowForPoints=True ShowForPoints=False
ShowForPointsEnabled ShowForPointsDisabled

For more information on how to use a tooltip, refer to the Tooltip topic.

See Also