Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

canvas.getContext("2d") is undefined

Tags:

html

canvas

wpf

The below code opens fine in all browsers, but when I'm trying to run the code in WPF web browser control, it gives a Javascript error "canvas.getContext("2d") is undefined".

<html>
   <head>
      <title>Bar Chart</title>
      <script src="Chart.js" type="text/javascript"></script>  
      <script type="text/javascript">
       var canvas = null;
       var context = null;

       window.onload = function () {
        invokeService();
        canvas = document.getElementById("canvas");
        var context = canvas.getContext("2d");
        alert(context);
        var myLine = new Chart(document.getElementById("canvas").getContext("2d")).Bar(barChartData);
    };

    var barChartData;
    function invokeService() {
        alert("q");
        barChartData = {
            labels: ["January", "February", "March", "April", "May", "June", "July"],
            datasets: [
                       {
                           fillColor: "rgba(220,220,220,0.5)",
                           strokeColor: "rgba(220,220,220,1)",
                           data: [65, 59, 90, 81, 56, 55, 40]
                       },
                       {
                           fillColor: "rgba(151,187,205,0.5)",
                           strokeColor: "rgba(151,187,205,1)",
                           data: [28, 48, 40, 19, 96, 27, 100]
                       }
                 ]
        }
    }
    </script>  
 </head>
 <body>
     <canvas id="canvas" height="450" width="600"></canvas>
 </body>
</html>

Edit 1: chart.js can be download for here https://github.com/nnnick/Chart.js

like image 831
Varun Avatar asked Oct 22 '22 06:10

Varun


1 Answers

After one cup of coffee I have solved that issue by adding following line

<meta http-equiv="X-UA-Compatible" content="IE=9">
like image 137
Varun Avatar answered Oct 30 '22 04:10

Varun