summaryrefslogtreecommitdiffstats
path: root/examples/charts/qmlchartsgallery/qml/CategoryAxis.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/charts/qmlchartsgallery/qml/CategoryAxis.qml')
-rw-r--r--examples/charts/qmlchartsgallery/qml/CategoryAxis.qml46
1 files changed, 46 insertions, 0 deletions
diff --git a/examples/charts/qmlchartsgallery/qml/CategoryAxis.qml b/examples/charts/qmlchartsgallery/qml/CategoryAxis.qml
new file mode 100644
index 00000000..21a4f368
--- /dev/null
+++ b/examples/charts/qmlchartsgallery/qml/CategoryAxis.qml
@@ -0,0 +1,46 @@
+// Copyright (C) 2023 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GPL-3.0-only
+
+import QtCharts
+
+//![1]
+ChartView {
+ title: "Numerical Data for Dummies"
+ anchors.fill: parent
+ legend.visible: false
+ antialiasing: true
+
+ LineSeries {
+ axisY: CategoryAxis {
+ min: 0
+ max: 30
+ CategoryRange {
+ label: "critical"
+ endValue: 2
+ }
+ CategoryRange {
+ label: "low"
+ endValue: 4
+ }
+ CategoryRange {
+ label: "normal"
+ endValue: 7
+ }
+ CategoryRange {
+ label: "high"
+ endValue: 15
+ }
+ CategoryRange {
+ label: "extremely high"
+ endValue: 30
+ }
+ }
+
+ XYPoint { x: 0; y: 4.3 }
+ XYPoint { x: 1; y: 4.1 }
+ XYPoint { x: 2; y: 4.7 }
+ XYPoint { x: 3; y: 3.9 }
+ XYPoint { x: 4; y: 5.2 }
+ }
+}
+//![1]