I have 3 graphs RadHtmlChart
of Telerik
on a page, I'm dividing this page into 3 so they always appear, without the need to scroll scroll
to view them.
I need to resize the page, RadHtmlChart
is suitable for this resizing.
Is it possible to do this?
I've 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 results.
I also tried using @media screen
, but without success too.
How can I do this?