##// END OF EJS Templates
d
d

File last commit:

r717:a566cfd317a8
r722:3c81c15bc4ba
Show More
chartthemelight_p.h
35 lines | 1.1 KiB | text/x-c | CLexer
/ src / themes / chartthemelight_p.h
Tero Ahola
New theme with light colors, chartview background
r584 #include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeLight: public ChartTheme
{
public:
ChartThemeLight() : ChartTheme(QChart::ChartThemeLight)
{
// Series colors
Tero Ahola
Colors of the light theme
r607 m_seriesColors << QRgb(0x209fdf);
m_seriesColors << QRgb(0x99ca53);
m_seriesColors << QRgb(0xf6a625);
m_seriesColors << QRgb(0x6d5fd5);
m_seriesColors << QRgb(0xbf593e);
Tero Ahola
New theme with light colors, chartview background
r584 generateSeriesGradients();
// Background
QLinearGradient backgroundGradient;
backgroundGradient.setColorAt(0.0, QRgb(0xffffff));
backgroundGradient.setColorAt(1.0, QRgb(0xffffff));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_chartBackgroundGradient = backgroundGradient;
// Axes and other
Tero Ahola
Fonts and background of the themes...
r614 m_axisLinePen = QPen(0xd6d6d6);
Tero Ahola
New theme with light colors, chartview background
r584 m_axisLinePen.setWidth(1);
Tero Ahola
Fonts and background of the themes...
r614 m_axisLabelBrush = QBrush(QRgb(0x404044));
Tero Ahola
Colors of the light theme
r607 m_gridLinePen = QPen(QRgb(0xe2e2e2));
Tero Ahola
New theme with light colors, chartview background
r584 m_gridLinePen.setWidth(1);
Tero Ahola
Default theme background, removed extra themes
r692 m_backgroundShades = BackgroundShadesNone;
Tero Ahola
New theme with light colors, chartview background
r584 }
};
QTCOMMERCIALCHART_END_NAMESPACE