##// END OF EJS Templates
Merge branch 'master' of https://git.it.local/repos/QtCommercialDevel-13049/charts Conflicts: example/example.pro

File last commit:

r203:7350e0387b3f
r207:1bc0eafcd96e merge
Show More
customslice.cpp
20 lines | 496 B | text/x-c | CppLexer
#include "customslice.h"
CustomSlice::CustomSlice(qreal value, QObject* parent)
:QPieSlice(parent)
{
setValue(value);
connect(this, SIGNAL(changed()), this, SLOT(updateLabel()));
connect(this, SIGNAL(hoverEnter()), this, SLOT(toggleExploded()));
connect(this, SIGNAL(hoverLeave()), this, SLOT(toggleExploded()));
}
void CustomSlice::updateLabel()
{
setLabel(QString::number(this->percentage()));
}
void CustomSlice::toggleExploded()
{
setExploded(!isExploded());
}