##// END OF EJS Templates
Add custom slice color & explode & visible label in basic piechart example.
Add custom slice color & explode & visible label in basic piechart example.

File last commit:

r147:ede69107bdd8
r713:964c794fe613
Show More
main.cpp
18 lines | 316 B | text/x-c | CppLexer
Jani Honkonen
First draft of project structure
r1 #include <QtCore/QtGlobal>
#if (QT_VERSION < QT_VERSION_CHECK(5, 0, 0))
#include <QApplication>
#else
#include <QtWidgets/QApplication>
#endif
Tero Ahola
New features like chart type to the test app
r5 #include "mainwidget.h"
Jani Honkonen
First draft of project structure
r1
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Tero Ahola
New features like chart type to the test app
r5 MainWidget w;
Michal Klocek
Fix test application to have valid window size
r147 w.resize(1000,600);
Jani Honkonen
First draft of project structure
r1 w.show();
Tero Ahola
New features like chart type to the test app
r5
Jani Honkonen
First draft of project structure
r1 return a.exec();
}