From 63cb5e4f67d326cee7e5937eed3c5214c067829a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20K=C3=A4berich?= Date: Tue, 12 Oct 2021 17:43:36 +0200 Subject: [PATCH] allow reactance only for reflection measurement, rename real/imag --- Software/PC_Application/Traces/tracexyplot.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Software/PC_Application/Traces/tracexyplot.cpp b/Software/PC_Application/Traces/tracexyplot.cpp index 4b0616f..5c7833d 100644 --- a/Software/PC_Application/Traces/tracexyplot.cpp +++ b/Software/PC_Application/Traces/tracexyplot.cpp @@ -789,8 +789,8 @@ QString TraceXYPlot::AxisTypeToName(TraceXYPlot::YAxisType type) case YAxisType::Magnitude: return "Magnitude"; case YAxisType::Phase: return "Phase"; case YAxisType::VSWR: return "VSWR"; - case YAxisType::Real: return "Real (R)"; - case YAxisType::Imaginary: return "Imaginary (X)"; + case YAxisType::Real: return "Real"; + case YAxisType::Imaginary: return "Imaginary"; case YAxisType::SeriesR: return "Resistance"; case YAxisType::Reactance: return "Reactance"; case YAxisType::Capacitance: return "Capacitance"; @@ -862,6 +862,7 @@ bool TraceXYPlot::supported(Trace *t, TraceXYPlot::YAxisType type) return false; case YAxisType::VSWR: case YAxisType::SeriesR: + case YAxisType::Reactance: case YAxisType::Capacitance: case YAxisType::Inductance: case YAxisType::QualityFactor: