I am looking for tutorials and code examples on how to display a KendoUI chart on a web page with data fetched from a database. More precisely an ASP.Net MVC webpage; like what needs to be done on the server side to be able to show data calculated on controller method displayed on the KendoUI chart.
Questions specifically are:
- Does KendoUI work only with services or can I even return ViewModel object in
an ActionResult method as
return View(vmObj);? - Is there any example of code on the server side that returns to a KendoUI chart?
- Does KendoUI only work in MVC or can I use it in Asp.Net WebForms also
The KendoUI docs that I have seen so far only show client side code and are not tailored towards AspNet MVC developers.
Thanks for your time..