subtitle.visible Boolean
(default: true)
If set to true
the chart will display the subtitle. By default the subtitle will be displayed.
Example - hide the subtitle
<div id="chart"></div>
<script>
$("#chart").kendoChart({
title: {
text: "Title",
visible: false
},
subtitle: {
text: "Subtitle",
visible: false
},
series: [
{ data: [1, 2, 3] }
]
});
</script>