| 1 | // Copyright (C) 2016 The Qt Company Ltd. |
|---|---|
| 2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only |
| 3 | |
| 4 | // W A R N I N G |
| 5 | // ------------- |
| 6 | // |
| 7 | // This file is not part of the Qt Chart API. It exists purely as an |
| 8 | // implementation detail. This header file may change from version to |
| 9 | // version without notice, or even be removed. |
| 10 | // |
| 11 | // We mean it. |
| 12 | |
| 13 | #ifndef CHARTTHEMEBLUENCS_P_H |
| 14 | #define CHARTTHEMEBLUENCS_P_H |
| 15 | |
| 16 | #include <private/charttheme_p.h> |
| 17 | #include <QtCharts/private/qchartglobal_p.h> |
| 18 | |
| 19 | QT_BEGIN_NAMESPACE |
| 20 | |
| 21 | class Q_CHARTS_EXPORT ChartThemeBlueNcs: public ChartTheme |
| 22 | { |
| 23 | public: |
| 24 | ChartThemeBlueNcs() : ChartTheme(QChart::ChartThemeBlueNcs) |
| 25 | { |
| 26 | // Series colors |
| 27 | m_seriesColors << QRgb(0x1db0da); |
| 28 | m_seriesColors << QRgb(0x1341a6); |
| 29 | m_seriesColors << QRgb(0x88d41e); |
| 30 | m_seriesColors << QRgb(0xff8e1a); |
| 31 | m_seriesColors << QRgb(0x398ca3); |
| 32 | m_seriesGradients = ChartThemeManager::generateSeriesGradients(colors: m_seriesColors); |
| 33 | |
| 34 | // Background |
| 35 | QLinearGradient backgroundGradient; |
| 36 | backgroundGradient.setColorAt(pos: 0.0, color: QRgb(0xffffff)); |
| 37 | backgroundGradient.setColorAt(pos: 1.0, color: QRgb(0xffffff)); |
| 38 | backgroundGradient.setCoordinateMode(QGradient::ObjectBoundingMode); |
| 39 | m_chartBackgroundGradient = backgroundGradient; |
| 40 | |
| 41 | // Axes and other |
| 42 | m_labelBrush = QBrush(QRgb(0x404044)); |
| 43 | m_axisLinePen = QPen(QRgb(0xd6d6d6)); |
| 44 | m_axisLinePen.setWidth(2); |
| 45 | m_gridLinePen = QPen(QRgb(0xe2e2e2)); |
| 46 | m_gridLinePen.setWidth(1); |
| 47 | m_minorGridLinePen = QPen(QRgb(0xe2e2e2)); |
| 48 | m_minorGridLinePen.setWidth(1); |
| 49 | m_minorGridLinePen.setStyle(Qt::DashLine); |
| 50 | m_backgroundShades = BackgroundShadesNone; |
| 51 | m_outlinePen = QPen(QRgb(0x474747)); |
| 52 | m_outlinePen.setWidthF(2.0); |
| 53 | } |
| 54 | }; |
| 55 | |
| 56 | QT_END_NAMESPACE |
| 57 | |
| 58 | #endif |
| 59 |
