使用 Qt Creator 绘制 csv 文件图表
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您并没有真正使用 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
在我看来,目前最好的方法是
生成使用 FLOTR JS 库绘制图表的 html 文档
看-> http://solutoire.com/flotr/
该库提供的结果比 QWT 好看得多。您还可以生成与图表混合的文本报告。
使用 QtWebKit(内部 Qt www 浏览器)在表单中显示此 html 文档
in my opinion the best way currently would be to
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.
display this html document inside your form using QtWebKit (internal Qt www browser)