##// END OF EJS Templates
QChart mapping functions: return QPoint(0, 0) if series type is Pie...
QChart mapping functions: return QPoint(0, 0) if series type is Pie Some QLogValueAxis tests added. Most commented out. LogDomain correctly move, zoomin and zoomout when log base is less than 1

File last commit:

r2346:1937d28dc870
r2351:bd26609a29ae
Show More
main.cpp
11 lines | 164 B | text/x-c | CppLexer
#include <QApplication>
#include "view.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
View w;
w.show();
return a.exec();
}