Hi,
I'm creating donut charts and setting the title like this:
My problem is that the series title comes from the json object I use to populate the chart.
Is it possible to set the chart title using the same binding feature of the one in the series object? (categoryField, field, colorField, etc...).
Something like:
Thanks,
André
I'm creating donut charts and setting the title like this:
$(
"#"
+ divName).kendoChart({
title: {
text:
"my title"
},
Is it possible to set the chart title using the same binding feature of the one in the series object? (categoryField, field, colorField, etc...).
Something like:
$(
"#"
+ divName).kendoChart({
title: {
textField:
"fieldWithTitle"
},
André