This is a migrated thread and some comments may be shown as answers.

Kendo UI charts are not being rendered(working) in IE8..How to fix this?

4 Answers 49 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
prabhakar
Top achievements
Rank 1
prabhakar asked on 07 Oct 2013, 02:23 PM
Hi,

Kendo UI charts are not being rendered(working)  in IE8..How to fix this?.This is vital for us ..Please help me in this regrad.


Thanks,
Prabhakar Manne

4 Answers, 1 is accepted

Sort by
0
Iliana Dyankova
Telerik team
answered on 07 Oct 2013, 03:52 PM
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
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.
0
Iliana Dyankova
Telerik team
answered on 09 Oct 2013, 01:58 PM
Hello Prabhakar,

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?  

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
Iliana Dyankova
Telerik team
answered on 10 Oct 2013, 11:48 AM
Hi Prabhakar,

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")
     )
  )
)
  Regards,
Iliana Nikolova
Telerik
Join us on our journey to create the world's most complete HTML 5 UI Framework - download Kendo UI now!
Tags
General Discussions
Asked by
prabhakar
Top achievements
Rank 1
Answers by
Iliana Dyankova
Telerik team
prabhakar
Top achievements
Rank 1
Share this question
or