To overcome error I have changed main view to use @Html.Partial("_SummaryChart") instead and reordered the included scripts so jquery.js is included prior to the chart.
I would however be interested to see recommended solution to refresh chart.
[Partial.cshtml]
@{Html.RenderPartial("Index");}
[Index.cshtml]
<div>
<ej-chart id="container">
</ej-chart>
</div>
|
Thank you for the sample. It seems to be working now. I had to move the jquery include file nearer to top of page.
The error was on a page containing numerous other third party jquery components from different vendors.
Thanks