This question is locked. New answers and comments are not allowed.
Hi,
I have run into an unusual problem. I have a line chart that is generated from a partial view inside a tab strip. The chart works on all browsers, except on IE9 I get just the grid and no lines on the chart. My code for the line chart looks like so:
Do note that the chart works perfectly on every other browser even IE7 and 8.
Any help would be appreciated.
I have run into an unusual problem. I have a line chart that is generated from a partial view inside a tab strip. The chart works on all browsers, except on IE9 I get just the grid and no lines on the chart. My code for the line chart looks like so:
<%= Html.Telerik().Chart<AllStars.Models.Metrics.StatisticsChart>() .Name("myChart") .Legend(legend => legend .Position(ChartLegendPosition.Bottom) ) .Series(series => { series.Line(s => s.open_rate).Name("Open Rate").Color("#26a0db"); series.Line(s => s.click_rate).Name("Click Rate").Color("#009900"); series.Line(s => s.referral_rate).Name("Referral Rate").Color("#E4814F"); }) .CategoryAxis(axis => axis .Categories(o => o.title) .Labels(l => l.Rotation(-45)) ) .ValueAxis(axis => axis .Numeric().Labels(labels => labels.Format("{0:#,##0}%")) ) .Tooltip(tooltip => tooltip .Visible(true) .Template("<#= series.name #> : <#= value #>") ) .DataBinding(dataBinding => dataBinding .Ajax().Select("_GetMyChartInfo", "Metric") ) .HtmlAttributes(new {style = "width: 840px; height: 400px;"}) %>Do note that the chart works perfectly on every other browser even IE7 and 8.
Any help would be appreciated.