JavaScript/jQuery Funnel - Title and Subtitle
Titles and subtitles are textual elements that provide an overview of what the Funnel visualizes.
The title object configures the title; the title.subtitle object configures the subtitle.
JavaScript
- $(function() {
- $("#funnelContainer").dxFunnel({
- // ...
- title: {
- text: "I am the Title",
- subtitle: {
- text: "I am the Subtitle"
- }
- }
- });
- });
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 title's default settings and do not need a subtitle.
JavaScript
- $(function() {
- $("#funnelContainer").dxFunnel({
- // ...
- title: "I am the Title"
- });
- });
Refer to the API reference's title section for information about all the title and subtitle properties.
See Also
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.