Warning, /frameworks/kquickcharts/controls/Theme.qml is written in an unsupported language. File is not indexed.

0001 /*
0002  * This file is part of KQuickCharts
0003  * SPDX-FileCopyrightText: 2019 Arjen Hiemstra <ahiemstra@heimr.nl>
0004  *
0005  * SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006  */
0007 
0008 import QtQuick 2.9
0009 
0010 pragma Singleton;
0011 
0012 QtObject {
0013     property real gridUnit: 20
0014     property real smallSpacing: 5
0015     property real largeSpacing: 10
0016 
0017     property color highlightColor: "blue"
0018     property color backgroundColor: "white"
0019 }