##// END OF EJS Templates
Logvalueaxis and multiaxis examples updated
Logvalueaxis and multiaxis examples updated

File last commit:

r2358:9d5a354692be
r2371:64c51f3e619b
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();
}