I know how you can set the title of a chart when you first create it:
but is there any way to change it afterwards?
I've tried this:
but it doesn't have any effect.
$("#chart").kendoChart({ title: { text: "Players in Error" }, /* etc */but is there any way to change it afterwards?
I've tried this:
var chart = $("#chart").data("kendoChart");chart.title = { text: kendo.toString(queryDate, "dddd MMMM d, yyyy") };chart.refresh();but it doesn't have any effect.