##// END OF EJS Templates
Add animations to pie. Works but has some visual issues when adding slices.
Add animations to pie. Works but has some visual issues when adding slices.

File last commit:

r486:7ab45bf9f776
r618:249071e508d1
Show More
main.cpp
18 lines | 369 B | text/x-c | CppLexer
Tero Ahola
Added example with multiple chart views
r198 #include <QtGui/QApplication>
#include <QMainWindow>
#include "multichartwidget.h"
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
MultiChartWidget *multi = new MultiChartWidget();
// Use the chart widget as the central widget
QMainWindow w;
w.resize(640, 480);
w.setCentralWidget(multi);
w.show();
return a.exec();
}