Skip to content

DevExpress-Examples/winforms-charts-customize-chart-tooltips

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Chart for WinForms - Show and Customize Chart Tooltips

This example demonstrates how to enable and customize chart tooltips at runtime. 

To enable tooltips, set the ChartControl.ToolTipEnabled property to true.

Specify the tooltip display text in the ToolTipPointPattern property.

Example Structure

The following example shows tree series with different tooltip patterns:

  • unboundSeries - a simple unbound series.

    The series shows tooltips with the following pattern: Line Series: {A}:{V}

    unbound series

  • unboundSeriesWithTag - an unbound series with the specified SeriesPoint.Tag property for each data point.

    The series shows tooltips with the pattern that references Tag values: {A}: {V} ({Test})

    unbound series with tag

  • boundSeries - a series that is bound to the data source.

    The series shows tooltips with the pattern that references data source field values: {A}: {V} ({Comment})

    bound series

Files to Look At

Documentation

More Examples