Hardik Shah
Hardik Shah

Reputation: 11

Is Kendo UI Dataviz chart supported in IE8?

When I run the Kendo Chart in IE9, everything works fine. But in IE8, the design is not as good as in IE9. Means X-axis and Y-axis value is not displayed properly in IE8.

Thanks...

Upvotes: 1

Views: 1130

Answers (2)

Nic
Nic

Reputation: 12846

From my experience all chart's basic functionality works properly in IE8. However, to get the width right, sometimes you'll need to set the width when initialising the chart using HtmlAttributes.

Example:

@(Html.Kendo().Chart<MyModel>()
    .Name("chart")
    .HtmlAttributes(new { Style = "width:400px;" })
    .Etc...
)

What Telerik says:

Supported Browsers

Browser             Supported versions
Internet Explorer   9 and later
Chrome              21 and later
Firefox             24 and later, ESR
Opera               15 and later
OS X Safari         5 and later
iOS Safari          4 and later
Chrome for Mobile   4 and later

Browsers with limited support

  • Internet Explorer 6, 7 and 8 are supported with the following limitations:
    • PDF export is not supported.
    • Image export is not supported.
    • 64-bit versions do not support text rotation.
    • Pie and donut charts don't have gradients
  • Internet Explorer 10 does not support dashed lines in canvas. This affects the exportImage as well.
  • Android 2.x will use non-interactive canvas output

Upvotes: 0

shankar.parshimoni
shankar.parshimoni

Reputation: 1299

IE can be very sensitive to the options that map to CSS attributes. For example, font settings must be with valid CSS syntax, otherwise the rendering is aborted. Please try to exclude any non-essential options from the chart configuration to see if that helps.Please refer this link for further Information

Upvotes: 1

Related Questions