##// END OF EJS Templates
Refactor themes...
Refactor themes * theme decorates the items * create classes for all themes * presenter handels theme decoration

File last commit:

r143:a0c24bcedc00
r143:a0c24bcedc00
Show More
chartthemegrayscale_p.h
20 lines | 496 B | text/x-c | CLexer
/ src / themes / chartthemegrayscale_p.h
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeGrayscale: public ChartTheme
{
public:
ChartThemeGrayscale()
{
m_seriesColor.append(QRgb(0xFF869299));
m_seriesColor.append(QRgb(0xFFA5BDCC));
m_seriesColor.append(QRgb(0xFFE8FFFC));
m_seriesColor.append(QRgb(0xFFCCC2C2));
m_gradientStartColor = QColor(QRgb(0xffffffff));
m_gradientEndColor = QColor(QRgb(0xffafafaf));
}
};
QTCOMMERCIALCHART_END_NAMESPACE