gRaphael:如何增加条形图中条形之间的间距
我使用 gRaphael 图表库创建了一个水平条形图。我想增加栏之间的间距。有没有办法做到这一点?
I have created a horizontal bar graph using gRaphael charting library. I want to increase the spacing between the bars. Is there an option to do that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
嗯,据我所知,没有一种方法可以增加间距,但您可以通过在初始化期间操纵装订线值来实现。
请参阅:
g.raphael 文档
Well, from what I know there's not exactly a way to increase spacing but you can do so by manipulating the gutter value during initialization.
See:
g.raphael docs here
增加排水沟。它可以作为一个选项接收或者只是更改 g.bar.js
increase the gutter. It can be received as an option or just change g.bar.js
从我使用点图的情况来看,间距是使用图表的宽度和高度间接控制的。
我最初认为下面的 x_coords 和 y_coords 变量指定了数据的确切像素位置,但看来它们只是间接控制这一点。
因此间距与 width/(x 轴上的值的数量) 成正比。
From what I have seen using the dotchart, the spacing is controlled indirectly using the
width
andheight
of a chart.I originally thought that the
x_coords
andy_coords
variables I have below specify the exact pixel locations of the data, but it appears they only indirectly control this.So the spacing is proportional to width/(# of values on the x axis) .