Chart.js/samples/polar-area.html

72 lines
2.0 KiB
HTML
Raw Normal View History

2014-06-29 19:36:04 +02:00
<!doctype html>
<html>
2015-05-27 06:02:41 +02:00
<head>
<title>Polar Area Chart</title>
<script src="../Chart.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
</head>
2014-06-29 19:36:04 +02:00
2015-05-27 06:02:41 +02:00
<body>
<div id="canvas-holder" style="width:100%">
<canvas id="chart-area" width="300" height="300" />
</div>
<button id="randomizeData">Randomize Data</button>
<script>
var randomScalingFactor = function() {
return Math.round(Math.random() * 100);
};
var randomColorFactor = function() {
return Math.round(Math.random() * 255);
};
2014-06-29 19:36:04 +02:00
2015-05-27 06:02:41 +02:00
var config = {
data: {
2015-06-03 22:45:40 +02:00
datasets: [{
data: [
randomScalingFactor(),
randomScalingFactor(),
randomScalingFactor(),
randomScalingFactor(),
randomScalingFactor(),
],
backgroundColor: [
"#F7464A",
"#46BFBD",
"#FDB45C",
"#949FB1",
"#4D5360",
],
labels: [
"Red",
"Green",
"Yellow",
"Grey",
"Dark Grey"
]
}],
2015-05-27 06:02:41 +02:00
},
options: {
responsive: true
}
};
2015-05-27 06:02:41 +02:00
window.onload = function() {
var ctx = document.getElementById("chart-area").getContext("2d");
window.myPolarArea = new Chart(ctx).PolarArea(config);
};
2014-06-29 19:36:04 +02:00
2015-05-27 06:02:41 +02:00
$('#randomizeData').click(function() {
2015-06-03 22:45:40 +02:00
$.each(config.data.datasets, function(i, piece) {
$.each(piece.data, function(j, value) {
config.data.datasets[i].data[j] = randomScalingFactor();
//config.data.datasets.backgroundColor[i] = 'rgba(' + randomColorFactor() + ',' + randomColorFactor() + ',' + randomColorFactor() + ',.7)';
});
2015-05-27 06:02:41 +02:00
});
window.myPolarArea.update();
});
</script>
</body>
2014-06-29 19:36:04 +02:00
</html>