Site Notice

hello, world

Difference between revisions of "ECharts/radar"

From Project-EPB Commons
([InPageEdit] 没有编辑摘要)
([InPageEdit] 没有编辑摘要)
 
Line 1: Line 1:
<div class="echarts" style="width: 240px; height: 240px"><nowiki>{
+
{{Radar/character
    title: {
+
| 角色 = 东方龙
        text: '角色能力',
+
| 攻击 = 40
        subtext:''
+
| 防御 = 25
    },
+
| 隐蔽 = 90
    tooltip: {
+
| 速度 = 100
        trigger: 'axis'
+
| 压制 = 30
    },
+
}}
    legend: {
 
        left: 'center',
 
        data: ['数据']
 
    },
 
    radar: [
 
        {
 
            indicator: [
 
                {text: '攻击', max: 100},
 
                {text: '防御', max: 100},
 
                {text: '隐蔽', max: 100},
 
                {text: '速度', max: 100},
 
                {text: '范围', max: 100}
 
            ]
 
        }
 
    ],
 
    series: [
 
        {
 
            type: 'radar',
 
            tooltip: {
 
                trigger: 'item'
 
            },
 
            areaStyle: {},
 
            data: [
 
                {
 
                    value: [{{{攻击}}},{{{防御}}},{{{隐蔽}}},{{{速度}}},{{{范围}}}],
 
                    name: '数据'
 
                }
 
            ]
 
        }
 
    ]
 
}</nowiki></div>
 

Latest revision as of 01:09, 7 January 2020

{
  title: {
    text: '角色能力',
    subtext:'东方龙'
  },
  tooltip: {
    trigger: 'axis'
  },
  radar: [
    {
      indicator: [
        {text: '攻击', max: 100},
        {text: '防御', max: 100},
        {text: '隐蔽', max: 100},
        {text: '速度', max: 100},
        {text: '压制', max: 100}
      ],
      radius: 80
    }
  ],
  series: [
    {
      type: 'radar',
      tooltip: {
        trigger: 'item'
      },
      areaStyle: {},
      data: [
        {
          value: [40,25,90,100,30],
          name: '能力值'
        }
      ]
    }
  ]
}