功率曲线

This commit is contained in:
geting 2024-12-09 09:57:30 +08:00
parent db87de1f58
commit 75de123972
3 changed files with 2 additions and 1 deletions

View File

@ -338,7 +338,6 @@ const statAnalysisOperate = () => {
type: 'scatter', type: 'scatter',
data: seriesData, data: seriesData,
name: '实际值', name: '实际值',
smooth: true,
symbolSize: 5, symbolSize: 5,
symbol: 'circle', symbol: 'circle',
} }

View File

@ -512,6 +512,7 @@ const historyDataReq = (promises: any) => {
data: yData.map((value: any) => ({ data: yData.map((value: any) => ({
value: getCutDecimalsValue(value, 2), value: getCutDecimalsValue(value, 2),
})), })),
smooth: true,
symbolSize: 5, symbolSize: 5,
symbol: 'circle', symbol: 'circle',
} }

View File

@ -459,6 +459,7 @@ const historyDataReq = (data: any) => {
value: getCutDecimalsValue(value, 2), value: getCutDecimalsValue(value, 2),
unit: unit, // unit: unit, //
})), })),
smooth: true,
symbolSize: 5, symbolSize: 5,
symbol: 'circle', symbol: 'circle',
} }