如何减少角度规融合小部件的宽度和高度
您好,我正在使用以下示例来构造角度规融合小部件,但我没有找到减少小部件高度和宽度的选项。我可以知道他们有任何调整角度小部件大小的选项吗?
Hi i am using the following example to construct the angular gauge fusion widget, but i am not finding a option to decrease the height and width of the widget.Can i know is their any option to resize the angular widget.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该仪表是使用各种元素构建的,这些元素使用基于宽度 300 和高度 300 的像素值放置。您可以使用仪表的自动缩放功能使这些元素自动缩放。
请在
和
元素之前使用origW='300' origH='300' autoScale='1'
您尝试减小仪表的宽度和高度。注意:您应该始终使用原始的宽度和高度比例(即 300:300,即本例中的 1:1)来增加或减少仪表的尺寸,
因此,使用自动缩放,您可以安全地使用 200x200px 或 400x400px。
有关自动缩放的更多信息,请阅读:http://www.fusioncharts.com/ widgets/docs/Contents/Ang_Origins.html
The gauge is built using various elements which are placed using pixel values based on the width of 300 and height of 300. You can make these elements scale automatically using the Auto Scale feature of the gauge.
Please use
origW='300' origH='300' autoScale='1'
in<chart>
and<annotations>
element before you try to decrease the width and height of the gauge.NOTE: You should always increase or decrease the size of the gauge using the original ratio of width and height (which is 300:300 i.e., 1:1 in this case)
So, using the auto scale you can safely use 200x200px or 400x400px.
For more information on Auto Scale please read : http://www.fusioncharts.com/widgets/docs/Contents/Ang_Origins.html