如何在柱形图后面显示面积图 - extjs(多图表)

发布于 2024-12-04 10:09:00 字数 214 浏览 1 评论 0原文

嗨, 我正在研究 ExtJS 4 图表。

我想要一个柱形图和面积图在一起。 我确实将它们渲染在一起,但问题是 - 面积图放置在柱形图之上。

我正在寻找一些属性/黑客,它将在柱形图后面呈现面积图!

抱歉,我无法将实际代码放在这里,因为我已经实现了保险丝盒框架,所以必须配置很多东西。

extJS 示例中的示例代码就足够了,(感谢您的时间) 提前致谢。

Hie,
Im working on ExtJS 4 charts.

I want to have a column chart and area chart together.
I did render these together, but the problem is - the area chart is placed over the column chart.

I'm looking for some attribute/hack, that will render the area chart BEHIND the column chart!

Sorry, I cannot place the actual code here, as i've implemented fusebox framework, so many things had to be configured.

Sample code from the extJS examples will suffice,(thanks for your time)
Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

把人绕傻吧 2024-12-11 10:09:00

他们按顺序渲染。如果您首先定义面积图,然后在系列部分中定义柱形图,它应该可以工作。

series: [{
    type: 'area',
    axis: 'left',
    xField: 'yourxField',
    yField: 'youryField'
}, {
    type: 'column',
    axis: 'left',
    xField: 'yourxField',
    yField: 'youryField'
}]

They render by order. If you first define Area Chart and then define Column Cahrt in the Series part it should work.

series: [{
    type: 'area',
    axis: 'left',
    xField: 'yourxField',
    yField: 'youryField'
}, {
    type: 'column',
    axis: 'left',
    xField: 'yourxField',
    yField: 'youryField'
}]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文