使用 ExtJS 4 进行堆叠和分组图表

发布于 2024-12-11 10:26:57 字数 174 浏览 0 评论 0 原文

我正在尝试从 Fusion Charts 转换为内置 ExtJS 4 图表,但找不到创建 堆叠和分组图表。有人成功让它与 ExtJS 4 一起工作吗?

I'm trying to convert from Fusion Charts to the builtin ExtJS 4 charts and I can't find a way to create a Stacked and Grouped Chart. Has anyone been successful getting this to work with ExtJS 4?

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

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

发布评论

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

评论(2

无可置疑 2024-12-18 10:26:57

ExtJS 中的捆绑图表似乎不可能实现这一点。我推荐 High Charts 或 Fusion Charts。

It doesn't look like this is possible with the bundled charting in ExtJS. I'd recommend High Charts or Fusion Charts.

蹲在坟头点根烟 2024-12-18 10:26:57

我找到了解决方案,您应该添加第二个栏系列,并为每个使用渲染处理程序,如下所示:

renderer: function(sprite, config, rendererData, index){ var w = config.width;
config.width = 30;
config.x = config.x + (w-30)/2 - 20; <--- -20 for first bar and + 20 for second

}

来源

I found the solution, You should add the second bar series and for each use render handler like this:

renderer: function(sprite, config, rendererData, index){ var w = config.width;
config.width = 30;
config.x = config.x + (w-30)/2 - 20; <--- -20 for first bar and + 20 for second

}

Source:

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