我如何在 googlechart 中传递 2 个数组作为数据

发布于 2024-09-03 07:39:27 字数 331 浏览 2 评论 0原文

我正在使用 Google Charts Easy php 类这是它的链接< /a>) 我想绘制多个垂直条形图, 正如文档所说“用 | 分隔多个数据集” 所以我尝试这个,但没有任何反应

 $chart1=new googleChart($a | $b ,'bary' );

*注意 $a 和 $a 都没有发生。 $b 是数组,

我将不胜感激任何帮助:)

I'm using google charts easy php class (here's the link of it)
and i want to draw Multiple Vertical Bar Chart,
as the documentation says "Separate multiple data sets with |"
so i try this , but nothing happens

 $chart1=new googleChart($a | $b ,'bary' );

*note that both $a & $b are arrays

i would appreciate any help :)

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

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

发布评论

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

评论(1

別甾虛僞 2024-09-10 07:39:27

尝试 $chart1=new googleChart(implode(',', $a).'|'.implode(',',$b) ,'bary' );


请参阅此处的“具有 3 个不同数据集的图表”http://code.google.com/ p/googlechartseasyphpclass/wiki/文档
它使用所有数据数组创建一个数组,然后使用 smartDataLabel 函数将其传递给 Google Chart 对象

try $chart1=new googleChart(implode(',', $a).'|'.implode(',',$b) ,'bary' );

or
see "CHART WITH 3 DIFFERENT DATA SETS" here http://code.google.com/p/googlechartseasyphpclass/wiki/Documentation
where it creates an array with all your data arrays and then passes it to the Google Chart object with the smartDataLabel function

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