Site Notice

hello, world

Difference between revisions of "Template:Radar/character"

From Project-EPB Commons
(Created page with "<div class="echarts" style="width: 240px; height: 240px"><nowiki>{ title: { text: '角色能力', subtext:'' }, tooltip: { trigger: 'axis' }, legend: {...")
 
([InPageEdit] 没有编辑摘要)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
<div class="echarts" style="width: 240px; height: 240px"><nowiki>{
+
<div class="echarts" style="width: 240px; height: 240px">{{#tag:pre|{
 
   title: {
 
   title: {
 
     text: '角色能力',
 
     text: '角色能力',
     subtext:''
+
     subtext:'{{{角色}}}'
 
   },
 
   },
 
   tooltip: {
 
   tooltip: {
 
     trigger: 'axis'
 
     trigger: 'axis'
  },
 
  legend: {
 
    left: 'center',
 
    data: ['数据']
 
 
   },
 
   },
 
   radar: [
 
   radar: [
Line 18: Line 14:
 
         {text: '隐蔽', max: 100},
 
         {text: '隐蔽', max: 100},
 
         {text: '速度', max: 100},
 
         {text: '速度', max: 100},
         {text: '范围', max: 100}
+
         {text: '压制', max: 100}
       ]
+
       ],
 +
      radius: 80
 
     }
 
     }
 
   ],
 
   ],
Line 31: Line 28:
 
       data: [
 
       data: [
 
         {
 
         {
           value: [{{{攻击|0}}},{{{防御|0}}},{{{隐蔽|0}}},{{{速度|0}}},{{{范围|0}}}],
+
           value: [{{{攻击|0}}},{{{防御|0}}},{{{隐蔽|0}}},{{{速度|0}}},{{{压制|0}}}],
           name: '数据'
+
           name: '能力值'
 
         }
 
         }
 
       ]
 
       ]
 
     }
 
     }
 
   ]
 
   ]
}</nowiki></div>
+
}}}</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: [0,0,0,0,0],
          name: '能力值'
        }
      ]
    }
  ]
}