##// END OF EJS Templates
label angle initialization fix
label angle initialization fix

File last commit:

r2358:9d5a354692be
r2406:d3d25f8317f5
Show More
main.cpp
11 lines | 164 B | text/x-c | CppLexer
Marek Rosa
Added callout example (Drawing on top of chart)
r2150 #include <QApplication>
Marek Rosa
Updated callout example
r2346 #include "view.h"
Marek Rosa
Added callout example (Drawing on top of chart)
r2150
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
Marek Rosa
Updated callout example
r2346 View w;
Marek Rosa
Added callout example (Drawing on top of chart)
r2150 w.show();
return a.exec();
}