From 6178c449b2ac28e33bb60be755b8af6dcc7c3dc5 Mon Sep 17 00:00:00 2001 From: xiaowuler Date: Tue, 26 Sep 2023 19:26:41 +0800 Subject: [PATCH] modify some codes --- .../Frontend/src/components/MicrowaveRadiation.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue b/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue index 395d5d8..078579f 100644 --- a/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue +++ b/04.系统编码/Frontend/src/components/MicrowaveRadiation.vue @@ -342,7 +342,8 @@ export default { creates.verticalProfileTemp = new HighChartCreate('verticalProfileTemp'); creates.verticalProfileTemp.setChart(true, 'line', 500, 500); creates.verticalProfileTemp.setXAxis('高度(km)', false); - creates.verticalProfileTemp.setYAxis('温度T(℃)', 10, -40, 10, 6); + // creates.verticalProfileTemp.setYAxis('温度T(℃)', 10, -40, 10, 6); + creates.verticalProfileTemp.setYAxis('温度T(℃)'); creates.verticalProfileTemp.setLegend(); creates.verticalProfileTemp.setTooltip('{point.category} KM, {point.y}'); creates.verticalProfileTemp.setSeries('温度', 0, '℃', '#F49927'); @@ -354,7 +355,8 @@ export default { creates.verticalProfileVaporDensity = new HighChartCreate('verticalProfileVaporDensity'); creates.verticalProfileVaporDensity.setChart(true, 'line', 500, 500); creates.verticalProfileVaporDensity.setXAxis('高度(km)', false); - creates.verticalProfileVaporDensity.setYAxis('水汽密度q(g/kg)', 10, 0, 1, 11); + // creates.verticalProfileVaporDensity.setYAxis('水汽密度q(g/kg)', 10, 0, 1, 11); + creates.verticalProfileVaporDensity.setYAxis('水汽密度q(g/kg)'); creates.verticalProfileVaporDensity.setLegend(); creates.verticalProfileVaporDensity.setTooltip('{point.category} KM, {point.y}'); creates.verticalProfileVaporDensity.setSeries('水汽密度', 0, 'g/Kg', '#6AB312');