##// END OF EJS Templates
A few more warnings removed from examples
A few more warnings removed from examples

File last commit:

r607:32d18e1badc3
r613:36ecec1e9bf9
Show More
chartthemelight_p.h
38 lines | 1.2 KiB | text/x-c | CLexer
/ src / themes / chartthemelight_p.h
#include "charttheme_p.h"
QTCOMMERCIALCHART_BEGIN_NAMESPACE
class ChartThemeLight: public ChartTheme
{
public:
ChartThemeLight() : ChartTheme(QChart::ChartThemeLight)
{
// Series colors
m_seriesColors << QRgb(0x209fdf);
m_seriesColors << QRgb(0x99ca53);
m_seriesColors << QRgb(0xf6a625);
m_seriesColors << QRgb(0x6d5fd5);
m_seriesColors << QRgb(0xbf593e);
generateSeriesGradients();
// Background
QLinearGradient backgroundGradient;
backgroundGradient.setColorAt(0.0, QRgb(0xffffff));
backgroundGradient.setColorAt(1.0, QRgb(0xffffff));
backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode);
m_chartBackgroundGradient = backgroundGradient;
// Axes and other
m_masterFont = QFont();
m_axisLinePen = QPen(QRgb(0xe2e2e2));
m_axisLinePen.setWidth(1);
m_axisLabelBrush = QBrush(QRgb(0x838383));
m_axisLabelPen = Qt::NoPen; // NoPen for performance reasons
m_backgroundShadesPen = Qt::NoPen;
m_backgroundShades = BackgroundShadesNone;
m_gridLinePen = QPen(QRgb(0xe2e2e2));
m_gridLinePen.setWidth(1);
}
};
QTCOMMERCIALCHART_END_NAMESPACE