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

TitleCollection Class

Represents the collection of explanatory titles for a chart or series.

Namespace: DevExpress.Xpf.Charts

Assembly: DevExpress.Xpf.Charts.v18.2.dll

Declaration

public class TitleCollection :
    ChartElementCollection<Title>

The following members return TitleCollection objects:

Remarks

An object of the TitleCollection type is returned by the ChartControlBase.Titles and PieSeries.Titles properties. An individual title is represented by the Title class instance.

Example

With DXCharts, you can fully customize the appearance and behavior of chart titles. For example, this sample illustrates how to display a group of check boxes, which control series visibility, in a chart title’s area.

To accomplish this task, it is necessary to define a WrapPanel with a set of CheckBox elements, and bind their check state to a Series.Visible property of the corresponding series. Then this WrapPanel can be placed as a chart title into a ChartControlBase.Titles collection.

using System.Windows;

namespace CustomChartTitles {
    public partial class MainWindow : Window {
        public MainWindow() {
            InitializeComponent();
        }
    }
}
See Also