This question is locked. New answers and comments are not allowed.
Hi,
I am trying to add pie chart and have error when I move my mouse.
as you can see through the pics that I added that I can see the chart but the problem start after I move the mouse.
my code:
@(Html.Telerik().Chart<CRC.Models.ElectricitySource>()
.Name("pieChart")
.Title("Bla Bla")
.Legend(legend => legend
.Position(ChartLegendPosition.Bottom)
)
.Series(series => {
series.Pie("Percentage", "Source")
.Labels(labels => labels.Visible(true)
.Align(ChartPieLabelsAlign.Column)
.Position(ChartPieLabelsPosition.OutsideEnd))
.StartAngle(90).Padding(60);
})
.DataBinding(dataBinding => dataBinding
.Ajax().Select("_SpainElectricity", "Home")
)
.HtmlAttributes(new { style = "width: 300px; height: 300px;" })
)
I added two pic before and after the problem
the file that has the problem is: JQuery v1.7.1
I am trying to add pie chart and have error when I move my mouse.
as you can see through the pics that I added that I can see the chart but the problem start after I move the mouse.
my code:
@(Html.Telerik().Chart<CRC.Models.ElectricitySource>()
.Name("pieChart")
.Title("Bla Bla")
.Legend(legend => legend
.Position(ChartLegendPosition.Bottom)
)
.Series(series => {
series.Pie("Percentage", "Source")
.Labels(labels => labels.Visible(true)
.Align(ChartPieLabelsAlign.Column)
.Position(ChartPieLabelsPosition.OutsideEnd))
.StartAngle(90).Padding(60);
})
.DataBinding(dataBinding => dataBinding
.Ajax().Select("_SpainElectricity", "Home")
)
.HtmlAttributes(new { style = "width: 300px; height: 300px;" })
)
I added two pic before and after the problem
the file that has the problem is: JQuery v1.7.1