40 lines
944 B
HTML
40 lines
944 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<script type="text/javascript">
|
|
window.onload = function () {
|
|
var chart = new CanvasJS.Chart("chartContainer",
|
|
{
|
|
theme: "theme2",
|
|
title:{
|
|
text: "Gaming Consoles Sold in 2012"
|
|
},
|
|
data: [
|
|
{
|
|
type: "pie",
|
|
showInLegend: true,
|
|
toolTipContent: "{y} - #percent %",
|
|
yValueFormatString: "#0.#,,. Million",
|
|
legendText: "{indexLabel}",
|
|
dataPoints: [
|
|
{ y: 4181563, indexLabel: "PlayStation 3" },
|
|
{ y: 2175498, indexLabel: "Wii" },
|
|
{ y: 3125844, indexLabel: "Xbox 360" },
|
|
{ y: 1176121, indexLabel: "Nintendo DS"},
|
|
{ y: 1727161, indexLabel: "PSP" },
|
|
{ y: 4303364, indexLabel: "Nintendo 3DS"},
|
|
{ y: 1717786, indexLabel: "PS Vita"}
|
|
]
|
|
}
|
|
]
|
|
});
|
|
chart.render();
|
|
}
|
|
</script>
|
|
<script src="../../canvasjs.min.js"></script>
|
|
<title>CanvasJS Example</title>
|
|
</head>
|
|
<body>
|
|
<div id="chartContainer" style="height: 400px; width: 100%;"></div>
|
|
</body>
|
|
</html> |