Skip to main content

ToolTipOptions.ShowForPoints Property

Specifies whether to show tooltip for a series point.

Namespace: DevExpress.XtraCharts

Assembly: DevExpress.XtraCharts.v23.2.dll

NuGet Package: DevExpress.Charts

Declaration

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 MVC Extensions ChartControlSettings
.ToolTipOptions .ShowForPoints
ASP.NET Web Forms Controls 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