title.visible Boolean(default: false)

The visibility of the title.

Example

    $("#chart ").kendoChart({
        title: {
            // hides the title
            visible: false
        },
        //...
    });
In this article