##// 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
Tero Ahola
Added draft of dark blue theme
r581 #include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeBlueCerulean: public ChartTheme
{
public:
ChartThemeBlueCerulean() : ChartTheme(QChart::ChartThemeBlueCerulean)
{
// Series colors
Tero Ahola
Three more themes
r651 m_seriesColors << QRgb(0xc7e85b);
m_seriesColors << QRgb(0x1cb54f);
m_seriesColors << QRgb(0x5cbf9b);
m_seriesColors << QRgb(0x009fbf);
m_seriesColors << QRgb(0xee7392);
Tero Ahola
Added draft of dark blue theme
r581 generateSeriesGradients();
Tero Ahola
Removed chart view background
r598 // Background
QLinearGradient backgroundGradient;
Tero Ahola
Three more themes
r651 backgroundGradient.setColorAt(0.0, QRgb(0x056189));
backgroundGradient.setColorAt(1.0, QRgb(0x101a31));
Tero Ahola
Removed chart view background
r598 backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_chartBackgroundGradient = backgroundGradient;
Tero Ahola
Added draft of dark blue theme
r581
// Axes and other
Tero Ahola
Fonts and background of the themes...
r614 m_masterFont = QFont("arial");
m_titleBrush = QBrush(QRgb(0xffffff));
Tero Ahola
Three more themes
r651 m_axisLinePen = QPen(QRgb(0xd6d6d6));
Tero Ahola
Added draft of dark blue theme
r581 m_axisLinePen.setWidth(2);
Tero Ahola
Fonts and background of the themes...
r614 m_axisLabelBrush = QBrush(QRgb(0xffffff));
Tero Ahola
Three more themes
r651 m_gridLinePen = QPen(QRgb(0x84a2b0));
Tero Ahola
New theme with light colors, chartview background
r584 m_gridLinePen.setWidth(1);
Tero Ahola
Added draft of dark blue theme
r581 }
};
QTCOMMERCIALCHART_END_NAMESPACE