4 Answers, 1 is accepted
0
Hello Prabhakar,
Most probably the default IE 8 security settings prevent the chart from rendering. For more detailed information and a solution please take a look at this troubleshooting topic.
Regards,
Iliana Nikolova
Telerik
Most probably the default IE 8 security settings prevent the chart from rendering. For more detailed information and a solution please take a look at this troubleshooting topic.
Regards,
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0

prabhakar
Top achievements
Rank 1
answered on 08 Oct 2013, 05:51 AM
I have cross checked above mentioned setting in IE8 and everything seems to be correct with settings in IE.
Still Charts are not being rendered. The same code is working fine with IE 9. Please help us .
I have attached error that is coming in kendo.all.min.js while running in IE 8.
Still Charts are not being rendered. The same code is working fine with IE 9. Please help us .
I have attached error that is coming in kendo.all.min.js while running in IE 8.
0
Hello Prabhakar,
Iliana Nikolova
Telerik
I am not quite sure what causes the issue in your application. Is it possible to provide a small runnable example which demonstrates your Kendo UI Chart implementation and which I can test locally?
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
0
Hi Prabhakar,
Regards,
Iliana Nikolova
Telerik
Thank you so much for the provided project - it was forwarded to me. I examined it and observed that scale.labels.font definition is invalid - font-family definition is mandatory when the shorthand font property is used (link). Hence in order to get everything correctly rendered please try the following:
@(Html.Kendo().RadialGauge()
//....
.Name(Model.GaugeChartId)
.Scale(scale => scale
//....
.Labels(labels => labels
//....
.Font(
"5px Arial, Helvetica, sans-serif"
)
)
)
)
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!