##// END OF EJS Templates
Refactors axis layout managment...
Refactors axis layout managment * create layout handling * add basic animations support

File last commit:

r280:9b4c1980ee18
r291:2b7ffa40a22f
Show More
custombarset.cpp
8 lines | 237 B | text/x-c | CppLexer
sauimone
updated barchart examples. minor fixes
r276 #include "custombarset.h"
sauimone
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
r280 CustomBarSet::CustomBarSet(QString name, QObject *parent) :
QBarSet(name, parent)
sauimone
updated barchart examples. minor fixes
r276 {
// Using signal to signal connection here.
connect(this,SIGNAL(clicked()),this,SIGNAL(toggleFloatingValues()));
}