##// END OF EJS Templates
Table model data example
Table model data example

File last commit:

r507:cd18b203dd88
r519:987444b37af4
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 {
Jani Honkonen
Adding list of series gradients to theme.
r494 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;
backgroundGradient.setColorAt(0.0, QRgb(0xffBDE3F2));
backgroundGradient.setColorAt(1.0, QRgb(0xffafafaf));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_backgroundGradient = backgroundGradient;
Michal Klocek
Refactor themes...
r143 }
};
QTCOMMERCIALCHART_END_NAMESPACE