diff --git a/resources/AdvancedTabComponents/AdvancedImuTab.qml b/resources/AdvancedTabComponents/AdvancedImuTab.qml index 033242684..7f4c32421 100644 --- a/resources/AdvancedTabComponents/AdvancedImuTab.qml +++ b/resources/AdvancedTabComponents/AdvancedImuTab.qml @@ -28,8 +28,6 @@ Item { Layout.fillHeight: true Layout.alignment: Qt.AlignTop visible: true - title: Constants.advancedImu.title - titleColor: Constants.commonChart.titleColor plotAreaColor: Constants.commonChart.areaColor backgroundColor: "transparent" legend.visible: false diff --git a/resources/AdvancedTabComponents/AdvancedMagnetometerTab.qml b/resources/AdvancedTabComponents/AdvancedMagnetometerTab.qml index 5fdd757ed..b4db642e0 100644 --- a/resources/AdvancedTabComponents/AdvancedMagnetometerTab.qml +++ b/resources/AdvancedTabComponents/AdvancedMagnetometerTab.qml @@ -28,8 +28,6 @@ Item { Layout.fillWidth: true Layout.fillHeight: true Layout.alignment: Qt.AlignTop - title: Constants.advancedMagnetometer.title - titleColor: Constants.commonChart.titleColor plotAreaColor: Constants.commonChart.areaColor backgroundColor: "transparent" legend.visible: false diff --git a/resources/AdvancedTabComponents/AdvancedSpectrumAnalyzerTab.qml b/resources/AdvancedTabComponents/AdvancedSpectrumAnalyzerTab.qml index 32f8c4cb0..2b3d753e6 100644 --- a/resources/AdvancedTabComponents/AdvancedSpectrumAnalyzerTab.qml +++ b/resources/AdvancedTabComponents/AdvancedSpectrumAnalyzerTab.qml @@ -27,8 +27,6 @@ Item { Layout.fillWidth: true Layout.fillHeight: true - title: Constants.advancedSpectrumAnalyzer.title - titleColor: Constants.commonChart.titleColor plotAreaColor: Constants.commonChart.areaColor backgroundColor: "transparent" legend.visible: false diff --git a/resources/Constants/Constants.qml b/resources/Constants/Constants.qml index a1fbb242a..c2dc97550 100644 --- a/resources/Constants/Constants.qml +++ b/resources/Constants/Constants.qml @@ -353,7 +353,6 @@ QtObject { } advancedMagnetometer: QtObject { - readonly property string title: "Raw Magnetometer Data" readonly property var legendLabels: ["Mag. X (uT)", "Mag. Y (uT)", "Mag. Z (uT)"] readonly property var lineColors: ["#66c2a5", "#fc8d62", "#8da0cb"] readonly property int xAxisMax: 200 @@ -368,7 +367,6 @@ QtObject { } advancedSpectrumAnalyzer: QtObject { - readonly property string title: "Spectrum Analyzer" readonly property var lineColors: ["#000000"] readonly property int xAxisTickCount: 10 readonly property real yAxisTickCount: 2.5 @@ -385,7 +383,6 @@ QtObject { } advancedImu: QtObject { - readonly property string title: "Raw IMU Data" readonly property var textDataLabels: ["Imu temp:", "Imu conf:", "Rms acc x:", "Rms acc y:", "Rms acc z:"] readonly property var insStatusLabels: ["GNSS Pos:", "GNSS Vel:", "Wheelticks:", "Wheelspeed:", "nhc:", "Static Detection:"] readonly property var legendLabels: ["Accn. X", "Accn. Y", "Accn. Z", "Gyro X", "Gyro Y", "Gyro Z"]