Jquery Mobile Chart Not Working
Dear All,
I m having a simple JqueryMobile Application with a simple html helper chart.
first time it will not show and if i refresh it will come or if i remove @Scripts.Render("~/bundles/jquery", "~/bundles/jquerymobile") also the chart will show correctly ..could any one can help me
// Controller
public ActionResult MyChart()
{
var bytes = new Chart(width: 400, height: 200)
.AddSeries(
chartType: "bar",
xValue: new[] { "Math", "English", "Computer", "Urdu" },
yValues: new[] { "60", "70", "68", "88" })
.GetBytes("png");
return File(bytes, "image/png");
}
//view
<img src="@Url.Action("Chart", "MyChart", "Home")" alt="SimpleChart" />