使用 Qt Creator 绘制 csv 文件图表

发布于 2024-10-23 15:54:26 字数 154 浏览 0 评论 0原文

我正在使用 Qt Creator,而且我对它完全陌生。

如何在 Qt Creator 中绘制图表?

我有一个 csv 文件,其中存储了一些数据。我希望添加所有行,以便它们成为一行并在图表中绘制该行,因为我的数据不断更新,因此我无法添加所有行并将其存储在下一行中。

I am working with Qt Creator and I am completely new to it.

How can I plot a graph in Qt Creator?

I have a csv file which has some data stored in it. I want all the rows to be added so that they become a single row and plot that row in the graph as my data is continuously updated so I cannot add the all rows and store it in thee next row.

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

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

发布评论

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

评论(2

或十年 2024-10-30 15:54:26

您并没有真正使用 Qt Creator - 那是 Qt 的 gui 标记语言的 gui 编辑器。

在 Qt 中绘制图表的最简单方法是使用 qwt 小部件集

You aren't really using Qt creator - that's the gui editor for Qt's gui markup language.

The easiest way to plot a graph in Qt is to use the qwt widget set

﹂绝世的画 2024-10-30 15:54:26

在我看来,目前最好的方法是

  1. 生成使用 FLOTR JS 库绘制图表的 html 文档
    看-> http://solutoire.com/flotr/
    该库提供的结果比 QWT 好看得多。您还可以生成与图表混合的文本报告。

  2. 使用 QtWebKit(内部 Qt www 浏览器)在表单中显示此 html 文档

in my opinion the best way currently would be to

  1. generate html document that plots your graph using FLOTR JS library
    look -> http://solutoire.com/flotr/

    This library gives much better looking results then QWT. You could also generate text reports mixed with graphs.

  2. display this html document inside your form using QtWebKit (internal Qt www browser)

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