http://www.html5.jp/library/graph_radar.html
http://www.fusioncharts.com/explore/radar-spider-chart/
http://wbotelhos.com/raty
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!-- saved from url=(0081)http://www.html5.jp/library/sample/graph_radar/examples/sample_graph_radar_1.html -->
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="ja" lang="ja"><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="Content-Language" content="ja">
<meta http-equiv="Content-Style-Type" content="text/css">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>レーダーチャート サンプル 1 - jsライブラリ - HTML5.JP</title>
<link href="./レーダーチャート サンプル 2 - jsライブラリ - HTML5.JP_files/sample_graph_radar.css" type="text/css" rel="stylesheet">
<script type="text/javascript" src="./レーダーチャート サンプル 1 - jsライブラリ - HTML5.JP_files/rendering-mode.js"></script>
<!--[if IE]><script type="text/javascript" src="../html5jp/excanvas/excanvas.js"></script><![endif]-->
<script type="text/javascript" src="./レーダーチャート サンプル 1 - jsライブラリ - HTML5.JP_files/radar.js"></script>
<script type="text/javascript">
window.onload = function() {
var rc = new html5jp.graph.radar("sample");
if( ! rc ) { return; }
var items = [
["蓝丁网评价", 0, 5, 0, 2, 3.5, 0, 0],
["用户综合评价用户综合评价", 3, 4, 3.5, 4, 5, 4, 5]
];
var params = {
aCap: ["资本实力", "安全性", "信用", "真实透明性", "集中度", "服务", "收益率"],
aLinePositions: [,1,2,3,4,5]
}
rc.draw(items, params);
};
</script>
</head>
<body>
<div >
<canvas width="400" height="300" id="sample" style="margin: 0px;"></canvas>
</div>
</body></html>
<script type="text/javascript">
window.onload = function() {
var rc = new html5jp.graph.radar("sample");
if( ! rc ) { return; }
var items = [
["商品A", 5, 2, 4, 5, 3, 2, 4, 4],
["商品B", 3, 4, 3, 4, 5, 4, 5, 1]
];
var params = {
aCap: ["安さ", "性能", "服务", "人気", "信用", "寿命", "軽さ", "強さ"],
aMax: 6,
aMin: 0,
chartShape: "circle",
faceColors: ["green", "olive"],
aLinePositions: [0,1,2,3,4,5,6]
};
rc.draw(items, params);
};
</script>
</head>
<body>
<h1>レーダーチャート サンプル 2 - jsライブラリ - HTML5.JP</h1>
<div style="position: relative; padding: 0px; width: 400px; height: 300px;">
<canvas width="400" height="300" id="sample" style="margin: 0px;"></canvas>
</div>
<p>rendering mode : <span id="rendering-mode">Standards-compliance mode</span></p>
</body></html>