##// END OF EJS Templates
Added basic donut chart example. Still better data needed
Added basic donut chart example. Still better data needed

File last commit:

r1693:8b01a00ae1fe
r1841:e5aa797837ba
Show More
main.cpp
11 lines | 168 B | text/x-c | CppLexer
#include <QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}