##// END OF EJS Templates
First version of legend. Simple markers and serie names. Using drilldown as example for now.
First version of legend. Simple markers and serie names. Using drilldown as example for now.

File last commit:

r486:7ab45bf9f776
r529:73dc1554f5c7
Show More
main.cpp
11 lines | 186 B | text/x-c | CppLexer
Marek Rosa
Spline working somewhat
r401 #include <QtGui/QApplication>
#include "splinewidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
SplineWidget w;
w.show();
return a.exec();
}