gRaphael:如何增加条形图中条形之间的间距

发布于 2024-10-18 04:26:49 字数 56 浏览 3 评论 0原文

我使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

七秒鱼° 2024-10-25 04:26:49

嗯,据我所知,没有一种方法可以增加间距,但您可以通过在初始化期间操纵装订线值来实现。

请参阅:

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

公布 2024-10-25 04:26:49

增加排水沟。它可以作为一个选项接收或者只是更改 g.bar.js

increase the gutter. It can be received as an option or just change g.bar.js

未蓝澄海的烟 2024-10-25 04:26:49

从我使用点图的情况来看,间距是使用图表的宽度和高度间接控制的。

我最初认为下面的 x_coords 和 y_coords 变量指定了数据的确切像素位置,但看来它们只是间接控制这一点。

var r = Raphael(div_tag);  

r.dotchart(x_center,y_center,width,height,x_coords,y_coords,data, {symbol: "o", max: 10, heat: true, axis: "0 0 1 1", axisxstep: axisx_step, axisystep: axisy_step, axisxlabels: g_xaxis, axisxtype: " ", axisytype: " ", axisylabels: g_yaxis}

因此间距与 width/(x 轴上的值的数量) 成正比。

From what I have seen using the dotchart, the spacing is controlled indirectly using the width and height of a chart.

I originally thought that the x_coords and y_coords variables I have below specify the exact pixel locations of the data, but it appears they only indirectly control this.

var r = Raphael(div_tag);  

r.dotchart(x_center,y_center,width,height,x_coords,y_coords,data, {symbol: "o", max: 10, heat: true, axis: "0 0 1 1", axisxstep: axisx_step, axisystep: axisy_step, axisxlabels: g_xaxis, axisxtype: " ", axisytype: " ", axisylabels: g_yaxis}

So the spacing is proportional to width/(# of values on the x axis) .

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文