##// END OF EJS Templates
Removing data from BarSeries through model added
Removing data from BarSeries through model added

File last commit:

r651:17e2918b5f02
r663:9af75e8e0281
Show More
chartthemebluecerulean_p.h
36 lines | 1.1 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;
backgroundGradient.setColorAt(0.0, QRgb(0x056189));
backgroundGradient.setColorAt(1.0, QRgb(0x101a31));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_chartBackgroundGradient = backgroundGradient;
// Axes and other
m_masterFont = QFont("arial");
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);
}
};
QTCOMMERCIALCHART_END_NAMESPACE