##// END OF EJS Templates
Adds owvership to domain
Adds owvership to domain

File last commit:

r717:a566cfd317a8
r787:e08865d3185f
Show More
chartthemebluecerulean_p.h
36 lines | 1.2 KiB | text/x-c | CLexer
/ src / themes / chartthemebluecerulean_p.h
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeBlueCerulean: public ChartTheme
{
public:
ChartThemeBlueCerulean() : ChartTheme(QChart::ChartThemeBlueCerulean)
{
// Series colors
m_seriesColors << QRgb(0xc7e85b);
m_seriesColors << QRgb(0x1cb54f);
m_seriesColors << QRgb(0x5cbf9b);
m_seriesColors << QRgb(0x009fbf);
m_seriesColors << QRgb(0xee7392);
generateSeriesGradients();
// Background
QLinearGradient backgroundGradient(0.5, 0.0, 0.5, 1.0);
backgroundGradient.setColorAt(0.0, QRgb(0x056189));
backgroundGradient.setColorAt(1.0, QRgb(0x101a31));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_chartBackgroundGradient = backgroundGradient;
// Axes and other
m_titleBrush = QBrush(QRgb(0xffffff));
m_axisLinePen = QPen(QRgb(0xd6d6d6));
m_axisLinePen.setWidth(2);
m_axisLabelBrush = QBrush(QRgb(0xffffff));
m_gridLinePen = QPen(QRgb(0x84a2b0));
m_gridLinePen.setWidth(1);
m_backgroundShades = BackgroundShadesNone;
}
};
QTCOMMERCIALCHART_END_NAMESPACE