title.description String
The accessible description of the Chart. The description is announced by screen readers when the Chart is focused.
Example - set the chart description
<div id="stock-chart"></div>
<script>
$("#stock-chart").kendoStockChart({
title: {
text: "Stock Chart"
description: "A sample stock chart with mock data"
},
dataSource: {
data: [
{ value: 1, date: new Date(2012, 1, 1)},
{ value: 2, date: new Date(2012, 1, 2)}
]
},
dateField: "date",
series: [
{
field: "value",
name: "Value"
}
]
});
</script>