mirror of https://github.com/qt/qtcharts.git
17 lines
418 B
C++
17 lines
418 B
C++
|
#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);
|
||
|
chartView.setChartTitle("Three random line charts");
|
||
|
window.setCentralWidget(&chartView);
|
||
|
window.resize(400, 300);
|
||
|
window.show();
|
||
|
return a.exec();
|
||
|
}
|