##// END OF EJS Templates
removed legend background drawing
removed legend background drawing

File last commit:

r738:ce991d3dee26
r785:fe2ea9e69ee8
Show More
chartanimation_p.h
26 lines | 540 B | text/x-c | CLexer
Michal Klocek
Animation refactor...
r530 #ifndef CHARTANIMATION_H_
#define CHARTANIMATION_H_
#include "qchartglobal.h"
#include <QVariantAnimation>
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartAnimation: public QVariantAnimation
{
public:
Michal Klocek
Improves spline interpolation...
r622 enum Animation { LineDrawAnimation, MoveDownAnimation, MoveUpAnimation };
Marek Rosa
Animation folder formating: white spaces, brackets, etc fixed
r738 ChartAnimation(QObject* parent=0):QVariantAnimation(parent), m_type(MoveDownAnimation){}
Michal Klocek
Improves spline interpolation...
r622 void setAnimationType(Animation type){
m_type=type;
}
protected:
Animation m_type;
Michal Klocek
Animation refactor...
r530 };
QTCOMMERCIALCHART_END_NAMESPACE
#endif /* AXISITEM_H_ */