##// END OF EJS Templates
refactoring. QStackedBarSeries and QPercentBarSeries are now derived from QBarSeries.
refactoring. QStackedBarSeries and QPercentBarSeries are now derived from QBarSeries.

File last commit:

r280:9b4c1980ee18
r281:d81c37855aff
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()));
}