dataColumns.titleString
Sets the title of the column.
Example
<div id="chart-wizard"></div>
<script>
$("#chart-wizard").kendoChartWizard({
dataColumns: [
{
field: "productName",
title: "Product Name"
},
{
field: "unitPrice",
title: "Unit Price"
}
]
});
</script>