chartthemescientific_p.h
20 lines
| 539 B
| text/x-c
|
CLexer
Michal Klocek
|
r143 | #include "charttheme_p.h" | ||
QTCOMMERCIALCHART_BEGIN_NAMESPACE | ||||
class ChartThemeScientific: public ChartTheme | ||||
{ | ||||
public: | ||||
Michal Klocek
|
r153 | ChartThemeScientific():ChartTheme(QChart::ChartThemeScientific) | ||
Michal Klocek
|
r143 | { | ||
m_seriesColor.append(QRgb(0xFF000000)); | ||||
m_seriesColor.append(QRgb(0xFFFFAD00)); | ||||
m_seriesColor.append(QRgb(0xFF596A75)); | ||||
m_seriesColor.append(QRgb(0xFF474747)); | ||||
m_gradientStartColor = QColor(QRgb(0xffafafaf)); | ||||
m_gradientEndColor = QColor(QRgb(0xffafafaf)); | ||||
} | ||||
}; | ||||
QTCOMMERCIALCHART_END_NAMESPACE | ||||