Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用剑道控件做一个项目。它几乎完成但提出了一个问题,即当最小化窗口时,所有应用程序都会变得笨拙。所有控件的位置都略有移动,因此它被视为笨拙。如何解决这个问题。请帮我?
你试试这个
$(window).resize(function () { $("#chart svg").width(Number($('.k-content').width())); $("#chart svg").height(Number($('.k-content').height())); $("#chart").data("kendoChart").refresh(); });