All docs
V24.2
24.2
24.1
23.2
23.1
22.2
22.1
21.2
21.1
20.2
20.1
19.2
The page you are viewing does not exist in version 19.2.
19.1
The page you are viewing does not exist in version 19.1.
18.2
The page you are viewing does not exist in version 18.2.
18.1
The page you are viewing does not exist in version 18.1.
17.2
The page you are viewing does not exist in version 17.2.

JavaScript/jQuery PieChart - Title and Subtitle

Title and subtitle are textual elements that give an idea of what the PieChart visualizes.

DevExtreme HTML5 JavaScript PieChart Title Subtitle

The title is configured by the title object. The subtitle is configured by the subtitle object nested in the title object.

JavaScript
  • $(function() {
  • $("#pieChartContainer").dxPieChart({
  • // ...
  • title: {
  • text: "I am the Title",
  • subtitle: {
  • text: "I am the Subtitle"
  • }
  • }
  • });
  • });

View Demo

You can set the title's text more concisely by assigning it directly to the title property. This is useful if you are satisfied with the default settings of the title and do not need a subtitle.

JavaScript
  • $(function() {
  • $("#pieChartContainer").dxPieChart({
  • // ...
  • title: "I am the Title"
  • });
  • });

For information about all properties of the title and subtitle, visit the title section of the API reference.

See Also