##// END OF EJS Templates
combined clicked and rightclicked events of legend to one event with parameter
combined clicked and rightclicked events of legend to one event with parameter

File last commit:

r486:7ab45bf9f776
r567:17f0257049a1
Show More
main.cpp
16 lines | 419 B | text/x-c | CppLexer
Michal Klocek
Adds preseterchart example
r246 #include "chartview.h"
#include <QApplication>
#include <QMainWindow>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QMainWindow window;
ChartView chartView(&window);
chartView.setRenderHint(QPainter::Antialiasing);
Michal Klocek
Fix commit 7b90ec69ce9a3353820d295c222ef3f79537484d
r391 chartView.setAnimationOptions(QChart::AllAnimations);
Michal Klocek
Adds preseterchart example
r246 window.setCentralWidget(&chartView);
window.resize(400, 300);
window.show();
return a.exec();
}