##// END OF EJS Templates
QSplineSeries calculateControlPoints moved to splinechartitem. This way we don't need to deal with controlPoints on logaritmic scale
QSplineSeries calculateControlPoints moved to splinechartitem. This way we don't need to deal with controlPoints on logaritmic scale

File last commit:

r2358:9d5a354692be
r2372:d6a999e30ac3
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();
}