##// END OF EJS Templates
Set the first pie slice exploded and label visible in chartthemes demo
Set the first pie slice exploded and label visible in chartthemes demo

File last commit:

r677:2b967c4f6e8e
r699:367aeb7897cf
Show More
axisanimation_p.h
26 lines | 524 B | text/x-c | CLexer
Michal Klocek
Animation refactor...
r530 #ifndef AXISANIMATIONITEM_H_
#define AXISANIMATIONITEM_H_
#include "axisitem_p.h"
#include "chartanimation_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class AxisAnimation: public ChartAnimation
{
public:
Michal Klocek
Refactors chartitem...
r677 AxisAnimation(Axis *axis);
Michal Klocek
Animation refactor...
r530 ~AxisAnimation();
protected:
virtual QVariant interpolated (const QVariant & from, const QVariant & to, qreal progress ) const;
virtual void updateCurrentValue (const QVariant & value );
private:
Michal Klocek
Refactors chartitem...
r677 Axis* m_axis;
Michal Klocek
Animation refactor...
r530 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */