This question is locked. New answers and comments are not allowed.
I have an issue where the chart gets a page break in the middle of it in IE9, whereas this does not occur in Chrome or Firefox. Is there anything I can do about that?
For example, throw this chart on a page and repeat it 6 times then try printing in IE9, note that if a chart doesn't fit on the page, it gets cut in half with part of it on one page and part if it on another.
For example, throw this chart on a page and repeat it 6 times then try printing in IE9, note that if a chart doesn't fit on the page, it gets cut in half with part of it on one page and part if it on another.
<div style=" width: 640px; height: 480px;">@(Html.Telerik().Chart() .Name("chart") .Title("Test 1") .Series(series => { series.Bar(new int[] { 2015, 6003, 6881 }).Name("Representative Sales"); series.Bar(new int[] { 15458, 26598, 27623 }).Name("Total Sales"); }) .CategoryAxis(axis => axis.Categories(new string[] { "Aug 2010", "Sept 2010", "Oct 2010" })) )</div>