or
$("#grid").kendoGrid(); $("#grid").data("kendoGrid").refresh();
All of this ceremony caused frustration and so we decided to eliminate it by supporting method chaining. With this latest service pack, you'll be able to write JavaScript that's more readable:
$("grid").kendoGrid("refresh");
$("#grid").kendoGrid().refresh();
categoryAxis:{ categories:names, labels:{rotation:90}},