mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2025-02-10 06:30:55 +08:00
![jkriege2](/assets/img/avatar_default.png)
- fixed additional renames JKQTPLotter->JKQTPlotter - improved documentation (boxplots, JKQTMathText) - added several examples
15 lines
228 B
C++
15 lines
228 B
C++
#include <QApplication>
|
|
#include "formwithjkqtplotter.h"
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
QApplication app(argc, argv);
|
|
|
|
FormWithJKQTPlotter plot;
|
|
plot.show();
|
|
plot.resize(600,400);
|
|
|
|
return app.exec();
|
|
}
|