##// 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
#include "custombarset.h"
CustomBarSet::CustomBarSet(QString name, QObject *parent) :
QBarSet(name, parent)
{
// Using signal to signal connection here.
connect(this,SIGNAL(clicked()),this,SIGNAL(toggleFloatingValues()));
}