summaryrefslogtreecommitdiffstats
path: root/basicsuite/enterprise-charts/View5.qml
diff options
context:
space:
mode:
Diffstat (limited to 'basicsuite/enterprise-charts/View5.qml')
-rw-r--r--basicsuite/enterprise-charts/View5.qml16
1 files changed, 11 insertions, 5 deletions
diff --git a/basicsuite/enterprise-charts/View5.qml b/basicsuite/enterprise-charts/View5.qml
index f1005c3..be7794b 100644
--- a/basicsuite/enterprise-charts/View5.qml
+++ b/basicsuite/enterprise-charts/View5.qml
@@ -51,18 +51,16 @@
import QtQuick 2.0
import QtCharts 2.0
-Rectangle {
+Item {
anchors.fill: parent
-
//![1]
- ChartView {
+ BaseChart {
title: "Scatters"
anchors.fill: parent
- antialiasing: true
-
ScatterSeries {
id: scatter1
name: "Scatter1"
+ color: _primaryGreen
XYPoint { x: 1.5; y: 1.5 }
XYPoint { x: 1.5; y: 1.6 }
XYPoint { x: 1.57; y: 1.55 }
@@ -74,6 +72,7 @@ Rectangle {
ScatterSeries {
name: "Scatter2"
+ color: _primaryGrey
//![1]
XYPoint { x: 2.0; y: 2.0 }
XYPoint { x: 2.0; y: 2.1 }
@@ -82,5 +81,12 @@ Rectangle {
XYPoint { x: 2.4; y: 2.7 }
XYPoint { x: 2.67; y: 2.65 }
}
+
+ Component.onCompleted: {
+ axes[0].labelsColor = "white";
+ axes[1].labelsColor = "white";
+ axes[0].labelsFont = appFont;
+ axes[1].labelsFont = appFont;
+ }
}
}