Kendo graphics issue in print

We have a page where we print Kendo pie charts that work great. We have the option to print these diagrams using the default "Print by default" option using Windows.Print (). The problem we've seen is that center-aligned charts are shifted to the right during printing. As we invested further, we realized this was happening because the page resizes during printing, but Kendo charts do not resize or align in the center. We have explicitly updated Kendo charts by adding and then explicitly updating Kendo charts

$("#Chart").data("kendoChart").refresh();

      

However, we still run into an issue where her print is centered. Has anyone faced a similar challenge? Is there a workaround?

+3


source to share


1 answer


You can resize the kendo map by the redraw method



$("#myChart").data("kendoChart").redraw();

      

0


source







All Articles