##// END OF EJS Templates
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples
barcharts: added legend to model. added signals for hover events (for tooltip). updated examples

File last commit:

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