forked from github/dataease
Merge remote-tracking branch 'origin/main' into main
This commit is contained in:
commit
8ebb35976a
@ -24,9 +24,7 @@ export function baseRadarOption(chart_option, chart) {
|
|||||||
// 处理data
|
// 处理data
|
||||||
if (chart.data) {
|
if (chart.data) {
|
||||||
chart_option.title.text = chart.title
|
chart_option.title.text = chart.title
|
||||||
chart.data.x.forEach(function(ele) {
|
const maxValues = []
|
||||||
chart_option.radar.indicator.push({ name: ele })
|
|
||||||
})
|
|
||||||
for (let i = 0; i < chart.data.series.length; i++) {
|
for (let i = 0; i < chart.data.series.length; i++) {
|
||||||
const y = chart.data.series[i]
|
const y = chart.data.series[i]
|
||||||
// color
|
// color
|
||||||
@ -40,7 +38,13 @@ export function baseRadarOption(chart_option, chart) {
|
|||||||
chart_option.legend.data.push(y.name)
|
chart_option.legend.data.push(y.name)
|
||||||
y.value = JSON.parse(JSON.stringify(y.data))
|
y.value = JSON.parse(JSON.stringify(y.data))
|
||||||
chart_option.series[0].data.push(y)
|
chart_option.series[0].data.push(y)
|
||||||
|
|
||||||
|
maxValues.push(Math.max.apply(null, y.value))
|
||||||
}
|
}
|
||||||
|
const max = Math.max.apply(null, maxValues)
|
||||||
|
chart.data.x.forEach(function(ele) {
|
||||||
|
chart_option.radar.indicator.push({ name: ele, max: max })
|
||||||
|
})
|
||||||
}
|
}
|
||||||
// console.log(chart_option);
|
// console.log(chart_option);
|
||||||
componentStyle(chart_option, chart)
|
componentStyle(chart_option, chart)
|
||||||
|
Loading…
Reference in New Issue
Block a user