##// END OF EJS Templates
framework for legend
framework for legend

File last commit:

r507:cd18b203dd88
r524:280ce33a2f47
Show More
chartthemevanilla_p.h
26 lines | 801 B | text/x-c | CLexer
/ src / themes / chartthemevanilla_p.h
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeVanilla: public ChartTheme
{
public:
ChartThemeVanilla():ChartTheme(QChart::ChartThemeVanilla)
{
m_seriesColors << QColor(217, 197, 116);
m_seriesColors << QColor(214, 168, 150);
m_seriesColors << QColor(160, 160, 113);
m_seriesColors << QColor(210, 210, 52);
m_seriesColors << QColor(136, 114, 58);
generateSeriesGradients();
QLinearGradient backgroundGradient;
backgroundGradient.setColorAt(0.0, QRgb(0xff9d844d));
backgroundGradient.setColorAt(1.0, QRgb(0xffafafaf));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_backgroundGradient = backgroundGradient;
}
};
QTCOMMERCIALCHART_END_NAMESPACE