RAPHAEL GWT 画布问题
我正在研究 RAPHAEL-GWT 并且能够生成拉斐尔图。我的问题是它超出了 Raphael GWT 画布的指定宽度和高度。
如何向 Raphael GWT 画布添加滚动条,以在 Raphael 画布的给定宽度和高度内容纳整个图表?
还有其他方法或解决方法来处理上述情况吗?
请帮忙。提前致谢。
I am working on RAPHAEL-GWT and am able to generate the raphael diagram. My problem is that it is exceeding the specified width and height of the Raphael GWT canvas.
How can i add a scroll-bar to the Raphael GWT canvas to accommodate the entire diagram within the given width and height of the Raphael canvas?
Are there any other ways or workarounds to handle the above case?
Please help. Thanks in Advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一个简单的想法是
在其中绘制图形元素的 Raphael container() 在浏览器上应具有最大高度。外部 div 的高度固定,CSS 中带有 Overflow:auto 。
One simple idea is
Raphael container() in which you draw your graphic elements, should have maximum height on browser. And an outer div fixed height with overflow:auto in CSS.