Excel 中的图形和图表

发布于 2024-12-27 12:08:36 字数 463 浏览 0 评论 0原文

我想在我的 Android 设备上显示从 Excel 电子表格生成的图形和图表。据我所知,我的选择是:

  1. 从 Excel 导出数字数据,并使用 AChartEngine 之类的包在设备上绘制图表。

  2. 从 Excel 导出 XML 数据,并在 PC 上绘制图表(使用其他绘图包?)或在设备上绘制图表(使用其他绘图包?)

  3. 使用 Excel 在 PC 上以交互方式创建图形,并拍摄屏幕快照。将该文件发送到设备以在 ImageView 中显示

  4. 将数据安排为 Web 服务器上的页面,而不是 Excel 电子表格文件中。从服务器的页面读取并在设备上绘制图表,如步骤 1 所示。

还有其他选择可以考虑吗?

是否有任何方法也可以在其他平台上共享,例如 iOS 和 RIM

感谢您的任何建议 - 看来这应该是一个已解决的问题。

I want to display graphs and charts generated from an Excel spreadsheet, on my Android device. As far as I can see, my choices are:

  1. Export the number data from Excel, and graph it on the device using a package like AChartEngine.

  2. Export XML data from Excel, and graph it on the PC (using some other graphing package?) or graph it on the device (using some other graphing package?)

  3. Create the graphic interactively on a PC using Excel, and take a screen snaphot. Send that file to the device for display in an ImageView

  4. arrange for the data to be a page on a web server, rather than in an Excel spreadsheet file. Read from the page from the server and graph on the device, as in step 1.

Are there other alternatives to consider?

Are there any approaches which could be shared on other platforms, too, like for iOS and RIM

Thanks for any suggestions - it seems like this should be a solved problem.

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

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

发布评论

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

评论(1

幸福还没到 2025-01-03 12:08:36

几个月前我对此进行了研究,发现 AChartEngine 是最容易使用的库。它的一些好处是它是开源的,它有一个很好的社区,并且它得到了积极的维护。它也是免费的,考虑到一些本机库,例如 Android 的 Java Charts< /a> 花费大约 140 美元!我绝对不会建议使用 Excel 生成和显示 ImageView...如果有的话,绝对要使用本机库。 (某些库(例如 AChartEngine)允许您动态调整屏幕上图表的大小/位置,这可能是以后的一个不错的选择)。

除了 AChartEngine 之外,您还可以考虑其他一些库:

  1. ChartDroid
  2. AndroidPlot

I looked into this a couple months back, and I found AChartEngine to be the easiest library to work with. Some benefits are it is open-source, it has a nice community, and it is actively maintained. It's free too, which is great considering that some native libraries such as Java Charts for Android cost something like $140! I definitely wouldn't suggest using Excel to generate and display an ImageView... definitely go with a native library if anything. (Some libraries such as AChartEngine allow you to dynamically resize/reposition the chart on the screen, which might be a nice option to have later on).

Other than AChartEngine, some other libraries you might consider:

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