title.text String

The title of the chart. You can also set the text directly for a title with default options.

Example

    $("#chart ").kendoChart({
        title: {
            text: "Sales data"
        },
        //...
    });


    $("#chart ").kendoChart({
        title: "Sales data",
        //...
    });
In this article