-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathPlotting.qml
More file actions
55 lines (43 loc) · 1.4 KB
/
Plotting.qml
File metadata and controls
55 lines (43 loc) · 1.4 KB
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
pragma Singleton
import QtQuick
QtObject {
property double sampleMinX: -1.
property double sampleMaxX: 1.
property double sampleMinY: -10.
property double sampleMaxY: 10.
property double sldMinX: -2.
property double sldMaxX: 2.
property double sldMinY: -20.
property double sldMaxY: 20.
property double experimentMinX: -3.
property double experimentMaxX: 3.
property double experimentMinY: -30.
property double experimentMaxY: 30.
property double analysisMinX: -4.
property double analysisMaxX: 4.
property double analysisMinY: -40.
property double analysisMaxY: 40.
property int modelCount: 1
signal samplePageDataChanged()
function setQtChartsSerieRef(value1, value2, value3) {
console.debug(`setQtChartsSerieRef ${value1}, ${value2}, ${value3}`)
}
function drawCalculatedOnSampleChart(){
console.debug(`drawCalculatedOnSampleChart`)
}
function drawCalculatedOnSldChart(){
console.debug(`drawCalculatedOnSldChart`)
}
function getSampleDataPointsForModel(index) {
console.debug(`getSampleDataPointsForModel ${index}`)
return []
}
function getSldDataPointsForModel(index) {
console.debug(`getSldDataPointsForModel ${index}`)
return []
}
function getModelColor(index) {
console.debug(`getModelColor ${index}`)
return '#0000FF'
}
}