Hi Craig,
There is no special tutorial for MVC as the integration is really simple. You can send the project for review to support@nevron.com.
Regarding the integration - in general the control has three types of output in the case of MVC:
1. Script (executed when the page is rendered)
2. Content (executed when the page is rendered)
3. Update (executed when the chart has to be updated)
1 and 2 are called only once when the control is initially rendered and 3 is called when AJAX calls to the server are processed. Those entry points are exposed as actions in the controller class you create.
Those entry points can produce either text or binary output - therefore you need to implement a class that derives from PartialViewResult and render the specified output.
Overall you need to implement 2 classes to integrate the control - controller and result - that's all. We've opted not to put them in the thinweb assembly as it would require a reference to the Mvc assemblies, which may not be present on older versions of the ASP.NET framework.
Hope this helps - let us know if you need assistance or have any questions or comments.
Best Regards,
Nevron Support Team