##// END OF EJS Templates
Theme change now affects also XY series
Theme change now affects also XY series

File last commit:

r491:4417e87c4247
r615:91322882c9fd
Show More
main.cpp
11 lines | 178 B | text/x-c | CppLexer
Tero Ahola
Added data getter for XY series; example for customizing the looks
r491 #include <QtGui/QApplication>
#include "mainwindow.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MainWindow w;
w.show();
return a.exec();
}