forked from patrickelectric/AtCore-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Principal.qml
76 lines (70 loc) · 1.93 KB
/
Principal.qml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
import QtQuick 2.1
import org.kde.kirigami 2.1 as Kirigami
import QtCharts 2.2
import QtQuick.Scene3D 2.0
Kirigami.Page {
id: root
property var file: ""
title: "Preferences"
actions {
contextualActions: [
Kirigami.Action {
text: "Perfils"
},
Kirigami.Action {
text: "Settings"
}
]
}
Viewer3D {
id: entity
file: root.file
}
ChartView {
height: parent.height/3
width: parent.width
anchors.bottom: parent.bottom
antialiasing: true
backgroundColor: "transparent"
LineSeries {
name: "Ext Temp."
XYPoint { x: 0; y: 0 }
XYPoint { x: 1.1; y: 2.1 }
XYPoint { x: 1.9; y: 3.3 }
XYPoint { x: 2.1; y: 2.1 }
XYPoint { x: 2.9; y: 4.9 }
XYPoint { x: 3.4; y: 3.0 }
XYPoint { x: 4.1; y: 3.3 }
}
LineSeries {
name: "Ext SP."
XYPoint { x: 0; y: 0 }
XYPoint { x: 1.1; y: 1.1 }
XYPoint { x: 1.9; y: 2.3 }
XYPoint { x: 2.1; y: 1.1 }
XYPoint { x: 2.9; y: 3.9 }
XYPoint { x: 3.4; y: 2.0 }
XYPoint { x: 4.1; y: 2.3 }
}
LineSeries {
name: "Bed Temp."
XYPoint { x: 0; y: 0 }
XYPoint { x: 1.1; y: 0.1 }
XYPoint { x: 1.9; y: 1.3 }
XYPoint { x: 2.1; y: 0.1 }
XYPoint { x: 2.9; y: 2.9 }
XYPoint { x: 3.4; y: 1.0 }
XYPoint { x: 4.1; y: 1.3 }
}
LineSeries {
name: "Bed SP."
XYPoint { x: 0; y: 0 }
XYPoint { x: 1.1; y: 4.1 }
XYPoint { x: 1.9; y: 1.3 }
XYPoint { x: 2.1; y: 3.1 }
XYPoint { x: 2.9; y: 0.9 }
XYPoint { x: 3.4; y: 4.0 }
XYPoint { x: 4.1; y: 0.3 }
}
}
}