功率曲线
This commit is contained in:
parent
e95e974547
commit
db87de1f58
@ -339,7 +339,8 @@ const statAnalysisOperate = () => {
|
|||||||
data: seriesData,
|
data: seriesData,
|
||||||
name: '实际值',
|
name: '实际值',
|
||||||
smooth: true,
|
smooth: true,
|
||||||
animation: false,
|
symbolSize: 5,
|
||||||
|
symbol: 'circle',
|
||||||
}
|
}
|
||||||
option.series.push(series)
|
option.series.push(series)
|
||||||
option.legend.data.push('实际值')
|
option.legend.data.push('实际值')
|
||||||
@ -354,7 +355,6 @@ const statAnalysisOperate = () => {
|
|||||||
data: seriesData,
|
data: seriesData,
|
||||||
name: '理论值',
|
name: '理论值',
|
||||||
smooth: true,
|
smooth: true,
|
||||||
animation: false,
|
|
||||||
symbolSize: 0.1,
|
symbolSize: 0.1,
|
||||||
symbol: 'circle',
|
symbol: 'circle',
|
||||||
}
|
}
|
||||||
|
@ -512,8 +512,8 @@ const historyDataReq = (promises: any) => {
|
|||||||
data: yData.map((value: any) => ({
|
data: yData.map((value: any) => ({
|
||||||
value: getCutDecimalsValue(value, 2),
|
value: getCutDecimalsValue(value, 2),
|
||||||
})),
|
})),
|
||||||
showSymbol: true,
|
symbolSize: 5,
|
||||||
animation: false,
|
symbol: 'circle',
|
||||||
}
|
}
|
||||||
option.legend.data.push(customName[index])
|
option.legend.data.push(customName[index])
|
||||||
option.series.push(seriesData)
|
option.series.push(seriesData)
|
||||||
|
@ -459,7 +459,8 @@ const historyDataReq = (data: any) => {
|
|||||||
value: getCutDecimalsValue(value, 2),
|
value: getCutDecimalsValue(value, 2),
|
||||||
unit: unit, // 将单位添加到每个数据点
|
unit: unit, // 将单位添加到每个数据点
|
||||||
})),
|
})),
|
||||||
animation: false,
|
symbolSize: 5,
|
||||||
|
symbol: 'circle',
|
||||||
}
|
}
|
||||||
option.tooltip = {
|
option.tooltip = {
|
||||||
show: true,
|
show: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user