问题标签 [qcustomplot]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
qt - reference to connect is ambiguous QQuickItem QMainWindow
I am trying to use QCustomPlot's example of the following folder, in my program:
/examples/plots
and at the same time I want it accessible from QML. So, I added <QQuickItem> and it resulted in the error stated in the title.
The code:
What should I do to make it accessible from QML and solve the error too?
c++ - 在 QT 应用程序(VS 插件)中停止使用 QcustomPlot 基本代码工作的程序
我正在尝试在 VS2012 中使用 QCustomPlot 示例(如下),带有 Qt 插件的 64 位 Win7 http://www.qcustomplot.com/index.php/tutorials/basicplotting
QcustomPlot 代码文件添加到位置:D:\userdata\userXYZ\My Documents\Visual Studio 2012\Projects,这就是为什么我 #include "../../qcustomplot.h"
编译代码时带有警告 C4700: uninitialized local variable使用'customPlot'。
当我运行应用程序时,它会在 1 秒后停止工作。
有人可以帮忙找出未正确设置的内容吗,哦,代码应该是什么样子?也许我错过了VS中的一些设置?
谢谢!
qcustomplot - 清除 QCustomPlot 中的 QCPItemText
我无法清除 a 中的项目QCustomPlot
。该方法QCustomPlot::itemCount()
始终返回 0。
也许QCPItemText
不被视为一个项目,但我该如何清除QCPItemText
呢?还是重置QCustomPlot
?
c++ - 如何在函数和变量之间发送实时数据变量?
我想分配给一个函数的双变量(param1)结果。
capture_values() 必须实时捕获双变量。这个变量我想通过 function() 分配给我的 param1
我应该使用信号和插槽机制还是其他机制?有人可以给出完整的代码示例吗?
谢谢!
c++ - new QCustomPlot() C++ -> program exists with exit code 1
I am trying to instantiate a new QCustomPlot variable QCustomPlot* plot = new QCustomPlot();
Program exits after executing this line. There is no error in compilation or after program exits.
Am I missing something?
What is the solution for this issue?
Solution - Rebuilt the library and it worked
c++ - 一段 qcustomplot 代码不起作用(小示例代码)
我有一段不起作用的 qt 代码(即一直显示空白窗口)
主窗口.h:
主.cpp:
结果应该是这样的 http://www.qcustomplot.com/images/examples/quadraticdemo.png
我使用了可以在这里找到的 QCustomPlot 库 http://www.qcustomplot.com/index.php/download
c++ - 传递对构造函数的引用,默认参数
我正在创建一个自己的 Qt C+ 类,它应该从 ui-> 引用 QCustomPlot 作为构造函数的输入参数。
它应该如下所示:
我不想以编程方式创建绘图区域,因为它在 UI 编辑中更简洁。并且不希望使用指针作为参数,因为据我了解,引用更安全且语法更简洁。但是我收到以下错误:
“错误:'myPlots::myPlots(QObject*, QCustomPlot&)' 显式 myPlots(QObject *parent=0, QCustomPlot& _plot) 的参数 2 缺少默认参数;”
我尝试将 =0 和 =null 作为默认参数,但只得到错误。这里发生了什么?
c++ - QCustomPlot 中的 QImage / 徽标
如何在QCustomPlot
绘图中添加徽标/QImage?
我对 Qt 和QCustomPlot
.
我正在使用 C++
如何在绘图中添加徽标?
c++ - Qt - 如何在 QCustomPlot 上定义轴间隔?
我QCustomPlot
在 Qt 上使用 来绘制视频序列的各个方面。
我想定义我的图表的背景,以便沿着我的yAxis
. 我的图表是这样的:
我想在我的定义间隔yAxis
得到这样的东西:
最后一张图片属于一个名为 PEAT 的程序,用于分析可能引发癫痫发作的视频。我指的是他们定义沿yAxis
.
有什么建议么?
c++ - QCustomPlot - 各种选项卡中的绘图
我目前正在通过串行通信接收信息,请参阅下面的数据示例:
现在我要做的是获取所有传入的数据并绘制它。为此,我创建了一个带有多个选项卡的 Qt 应用程序。
我为每个选项卡添加了一个小部件并将其提升为 QCustomPlot。
我将每个 QCustomPlot 设置如下:
完成后,我打开串行端口并连接到 ReadyRead 信号。每次有新数据可用时,我都会检查新数据的来源并绘制它。
我省略了从传入数据中提取实际值的代码。
现在我希望 removeDataBefore(key_x-10) 删除该点之前的所有数据,因为我发现我的内存很快就会填满。key_x 和频率在其他地方定义。
我目前拥有的代码(类似于上面的代码)确实可以工作,但是过了一会儿,一切都开始变慢并且一切都被延迟了。所以我不太确定是什么问题或导致这种情况发生。我还想知道如何在选项卡 1 上使用 A 部分、B 部分、C 部分和 D 部分的图,因为我不想在第一个选项卡上创建另外 4 个小部件来绘制数据。
我希望我已经为您提供了足够的背景信息。
提前谢谢你的帮助。