chartthemeicy_p.h
20 lines
| 518 B
| text/x-c
|
CLexer
Michal Klocek
|
r143 | #include "charttheme_p.h" | ||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class ChartThemeIcy: public ChartTheme | ||||
{ | ||||
public: | ||||
Michal Klocek
|
r153 | ChartThemeIcy():ChartTheme(QChart::ChartThemeIcy) | ||
Michal Klocek
|
r143 | { | ||
m_seriesColor.append(QRgb(0xFF0D2673)); | ||||
m_seriesColor.append(QRgb(0xFF2685BF)); | ||||
m_seriesColor.append(QRgb(0xFF3DADD9)); | ||||
m_seriesColor.append(QRgb(0xFF62C3D9)); | ||||
m_gradientStartColor = QColor(QRgb(0xffBDE3F2)); | ||||
m_gradientEndColor = QColor(QRgb(0xffafafaf)); | ||||
} | ||||
}; | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||