##// END OF EJS Templates
Bar series to use theme base colors. Pie brush minor fix....
Bar series to use theme base colors. Pie brush minor fix. Also fixed pen of bar series and stacked bar series.

File last commit:

r530:d482058261e4
r661:4756f59398b8
Show More
axisanimation_p.h
26 lines | 532 B | text/x-c | CLexer
#ifndef AXISANIMATIONITEM_H_
#define AXISANIMATIONITEM_H_
#include "axisitem_p.h"
#include "chartanimation_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class AxisAnimation: public ChartAnimation
{
public:
AxisAnimation(AxisItem *axis);
~AxisAnimation();
protected:
virtual QVariant interpolated (const QVariant & from, const QVariant & to, qreal progress ) const;
virtual void updateCurrentValue (const QVariant & value );
private:
AxisItem* m_axis;
};
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */