Site Notice
hello, world
Difference between revisions of "ECharts/radar"
From Project-EPB Commons
< ECharts
([InPageEdit] 没有编辑摘要) |
([InPageEdit] 没有编辑摘要) |
||
Line 1: | Line 1: | ||
− | <div class="echarts"><nowiki>{ | + | <div class="echarts" style="width: 240px; height: 240px"><nowiki>{ |
title: { | title: { | ||
text: '角色能力', | text: '角色能力', |
Revision as of 00:58, 7 January 2020
{
title: {
text: '角色能力',
subtext:''
},
tooltip: {
trigger: 'axis'
},
legend: {
left: 'center',
data: ['数据']
},
radar: [
{
indicator: [
{text: '输出', max: 100},
{text: '内容', max: 100},
{text: '可用性', max: 100},
{text: '功能', max: 100},
{text: '功能', max: 100},
{text: '功能', max: 100}
]
}
],
series: [
{
type: 'radar',
tooltip: {
trigger: 'item'
},
areaStyle: {},
data: [
{
value: [60, 73, 85, 40],
name: '数据'
}
]
}
]
}