echartsグラフライブラリによる単純レーダー図の実現
4819 ワード
1.jsファイルのダウンロードhttp://echarts.baidu.com/download.html
2.コアコード
3.効果図
4.参考マニュアルhttp://echarts.baidu.com/echarts2/doc/doc.html
<script type='text/javascript' src="js/echarts.js" charset='utf-8'>script>
2.コアコード
<div id="sixStart" style="width:1323px; height:1300px;text-align: center;">div>
<script type="text/javascript">
var myChart = echarts.init(document.getElementById('sixStart'));
var option = {
title : {
},
tooltip : {
trigger: 'axis'
},
calculable : true,
polar : [
{
name: { show: true,textStyle:{fontSize:16,color:"#32cd32"}},
indicator : [
{text : ' ', max : 100},
{text : ' ', max : 100},
{text : ' ', max : 100},
{text : ' ', max : 100},
{text : ' ', max : 100},
{text : ' ', max : 100}
],center : ['50%','50%'],
radius : 500 // ,
}
],
series : [
{
name:'',
type: 'radar',// radar
itemStyle: {
normal: {
lineStyle: {
color :"#87cefa",
width : 2
},
areaStyle: {
color:"#87cefa",
type: 'default'
}
}
},
symbolSize :6,
data : [{
value:[100,80,80,80,80,80]
}]
}
]
};
$(function(){
myChart.setOption(option);
});
script>
3.効果図
4.参考マニュアルhttp://echarts.baidu.com/echarts2/doc/doc.html