##// END OF EJS Templates
Default theme with OS specific colors on Windows
Default theme with OS specific colors on Windows

File last commit:

r526:8593b87d6899
r537:f223805ee598
Show More
chartthemeicy_p.h
25 lines | 722 B | text/x-c | CLexer
/ src / themes / chartthemeicy_p.h
Michal Klocek
Refactor themes...
r143 #include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeIcy: public ChartTheme
{
public:
Michal Klocek
Adds missing ids to theme classes
r153 ChartThemeIcy():ChartTheme(QChart::ChartThemeIcy)
Michal Klocek
Refactor themes...
r143 {
Tero Ahola
Fixed a bug in vanilla theme
r526 m_seriesColors << QRgb(0xff0d2673);
m_seriesColors << QRgb(0xff2685bf);
m_seriesColors << QRgb(0xff3dadd9);
m_seriesColors << QRgb(0xff62c3d9);
Michal Klocek
Refactor themes...
r143
Tero Ahola
Theme gradients now generated from a single base color
r507 generateSeriesGradients();
Jani Honkonen
Adding list of series gradients to theme.
r494
QLinearGradient backgroundGradient;
Tero Ahola
Lightened up chart backgrounds in themes
r525 backgroundGradient.setColorAt(0.0, QRgb(0xffebebeb));
backgroundGradient.setColorAt(1.0, QRgb(0xfff8f9fb));
Jani Honkonen
Adding list of series gradients to theme.
r494 backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_backgroundGradient = backgroundGradient;
Michal Klocek
Refactor themes...
r143 }
};
QTCOMMERCIALCHART_END_NAMESPACE