ToolTipOptions.ShowForPoints Property
Specifies whether to show tooltip for a series point.
Namespace: DevExpress.XtraCharts
Assembly: DevExpress.XtraCharts.v24.1.dll
NuGet Package: DevExpress.Charts
Declaration
[TypeConverter(typeof(BooleanTypeConverter))]
[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 |
|
ASP.NET Web Forms Controls | WebChartControl |
|
ASP.NET MVC Extensions | ChartControlSettings |
|
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 |
---|---|
For more information on how to use a tooltip, refer to the Tooltip topic.
See Also