Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TdxChartActualToolTipMode Subrange Type

Enumerates tooltip display modes in a chart series.

#Declaration

Delphi
TdxChartToolTipMode = (Default, None, Simple, Crosshair);
TdxChartActualToolTipMode = None..Crosshair;

#Members
Show Inherited Hide Inherited

Name Description
Crosshair

Explicitly enables the Crosshair Cursor mode.

Note

Crosshair Cursor is designed for use in a two-dimensional Cartesian coordinate system. This tooltip display mode is available in XY diagrams only.

Inherited from TdxChartToolTipMode.
None

All tooltips are disabled.

This is the default option at the Chart control level.

Inherited from TdxChartToolTipMode.
Simple

A diagram displays simple tooltips for a series and/or its points depending on the Chart control’s ToolTips.SimpleToolTipOptions.ShowForPoints and ToolTips.SimpleToolTipOptions.ShowForSeries property values.

Simple tooltips are available for all diagram types and support the same formatting patterns as value labels.

Inherited from TdxChartToolTipMode.

#Remarks

The TdxChartActualToolTipMode type defines a subrange of the TdxChartToolTipMode type.

Note

TdxChartToolTipMode is a scoped enumeration type. Use the type name together with a scope resolution token (. in Delphi or :: in C++Builder) followed by an enumeration value to refer to this value. For example, use TdxChartToolTipMode.Crosshair (in Delphi) or TdxChartToolTipMode::Crosshair (in C++Builder) to refer to the Crosshair value in code.

#Direct TdxChartActualToolTipMode Type Reference

The TdxChartToolTips.DefaultMode property references the TdxChartActualToolTipMode type.

#Base Type

TdxChartToolTipMode
See Also