main.cpp
16 lines
| 419 B
| text/x-c
|
CppLexer
Michal Klocek
|
r246 | #include "chartview.h" | ||
#include <QApplication> | ||||
#include <QMainWindow> | ||||
int main(int argc, char *argv[]) | ||||
{ | ||||
QApplication a(argc, argv); | ||||
QMainWindow window; | ||||
ChartView chartView(&window); | ||||
chartView.setRenderHint(QPainter::Antialiasing); | ||||
Michal Klocek
|
r391 | chartView.setAnimationOptions(QChart::AllAnimations); | ||
Michal Klocek
|
r246 | window.setCentralWidget(&chartView); | ||
window.resize(400, 300); | ||||
window.show(); | ||||
return a.exec(); | ||||
} | ||||