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

Chart Titles

  • 2 minutes to read

This document describes how chart titles can be created and customized, and illustrates their general functionality.

Chart titles allow you to accompany your chart with text headers and explanations with HTML support, and no limitations on the size and quantity of titles.

Note that if a chart title’s length exceeds the size of the chart, you can force the title’s text to be wrapped in multiple lines using the AlignedTitle.WordWrap property.

ChartTitles

To access the chart title collection at design time, select the chart control, and in the Properties window, locate the ChartControl.Titles property. Click its ellipsis button, and the Chart Title Collection Editor will appear.

ChartTitles_1

In this dialog, use the Add button to create chart titles. After a title is created, you can customize its appearance and behavior using the available properties briefly described below.

  • A title’s text is determined by the Title.Text property. You can apply HTML formatting to your chart’s titles, by using standard HTML tags. To learn more on HTML support, refer to HTML Text Formatting.
  • The appearance of title text can be customized with the TitleBase.Font, TitleBase.Antialiasing and TitleBase.TextColor properties. Note that the color defined with title HTML tags <color></color> has priority over the title’s TitleBase.TextColor property’s setting.
  • Placement of titles within a chart is determined by their AlignedTitle.Alignment and DockableTitle.Dock properties.
  • To define the spacing around a title (in pixels), define its DockableTitle.Indent property.
  • To enable automatic word wrapping for lengthy chart titles, use the AlignedTitle.WordWrap property.

    After you enable this property, the AlignedTitle.MaxLineCount property comes into effect, which allows you to determine the limit for new lines appearing when a title’s text is wrapped. Note that if a title’s length exceeds this limit, the last line of text will be cut off by an ellipsis.

    ChartTitles_2c

    If required, you can set the AlignedTitle.MaxLineCount property to 0, which will wrap title completely.

    ChartTitles_2b

  • To hide a title while maintaining it in the collection, disable its TitleBase.Visible property.

Note

The Chart Control can hide its elements if there is insufficient space to display them. Elements are hidden in the following order:

  1. Legends
  2. Axis Titles
  3. Series Titles
  4. Pane Titles
  5. Axes
  6. Chart Title
  7. Breadcrumbs

To make the Chart Control always display its elements, disable the ChartControl.AutoLayout property.