##// END OF EJS Templates
Added support for data from model to QBarSeries. Various fixes and small modifications to data from model support to other series
Added support for data from model to QBarSeries. Various fixes and small modifications to data from model support to other series

File last commit:

r486:7ab45bf9f776
r630:dd8db9a3a988
Show More
main.cpp
11 lines | 174 B | text/x-c | CppLexer
Marek Rosa
Initial commit for gdpBarChart example.
r205 #include <QtGui/QApplication>
#include "widget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Widget w;
w.show();
return a.exec();
}