1
I have 3 graphics RadHtmlChart
of Telerik
on a page, I’m dividing this page into 3 so that they are always displayed, without the need to roll a scroll
to view them.
I need that when resizing the page, the RadHtmlChart
fits with this resizing.
It is possible to do this ?
I tried the following:
window.onresize = function () {
$find("<%=chtPESO.ClientID%>").get_kendoWidget().resize();
$find("<%=chtPARTIC.ClientID%>").get_kendoWidget().resize();
$find("<%=chtVDA.ClientID%>").get_kendoWidget().resize();
}
But with no result.
I also tried using the @media screen
, but also unsuccessful.
How can I do that ?