mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 06:27:23 +08:00
✨ Add sign status for Lagrange.Core
This commit is contained in:
parent
f22f8f772a
commit
7fbfafe2db
@ -12,6 +12,16 @@ data.forEach((item) => {
|
|||||||
document.body.appendChild(signChartDiv)
|
document.body.appendChild(signChartDiv)
|
||||||
|
|
||||||
let signChart = echarts.init(document.getElementById(chartID))
|
let signChart = echarts.init(document.getElementById(chartID))
|
||||||
|
let timeCount = []
|
||||||
|
|
||||||
|
item["counts"].forEach((count, index) => {
|
||||||
|
// 计算平均值,index - 1的count + index的count + index + 1的count /3
|
||||||
|
if (index > 0) {
|
||||||
|
timeCount.push((item["counts"][index] - item["counts"][index - 1]))
|
||||||
|
}
|
||||||
|
})
|
||||||
|
|
||||||
|
console.log(timeCount)
|
||||||
|
|
||||||
signChart.setOption(
|
signChart.setOption(
|
||||||
{
|
{
|
||||||
@ -26,14 +36,26 @@ data.forEach((item) => {
|
|||||||
type: 'category',
|
type: 'category',
|
||||||
data: item["times"].map(timestampToTime),
|
data: item["times"].map(timestampToTime),
|
||||||
},
|
},
|
||||||
yAxis: {
|
yAxis: [
|
||||||
|
{
|
||||||
type: 'value',
|
type: 'value',
|
||||||
min: Math.min(...item["counts"]),
|
min: Math.min(...item["counts"]),
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
type: 'value',
|
||||||
|
min: Math.min(...timeCount),
|
||||||
|
}
|
||||||
|
],
|
||||||
series: [
|
series: [
|
||||||
{
|
{
|
||||||
data: item["counts"],
|
data: item["counts"],
|
||||||
type: 'line'
|
type: 'line',
|
||||||
|
yAxisIndex: 0
|
||||||
|
},
|
||||||
|
{
|
||||||
|
data: timeCount,
|
||||||
|
type: 'line',
|
||||||
|
yAxisIndex: 1
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user