无法读取未定义的属性'canvas'

Unf*_*hed 11 javascript jquery charts canvas undefined

我正在尝试使用chartjs制作饼图.我已经按照chartjs文档中的步骤操作了,我已经包含了chart.js和canvas元素.我添加了应该创建图表的脚本,作为chartjs文档中提供的示例.我收到以下错误:未捕获的TypeError:无法读取未定义的属性'canvas'是否anywhone知道如何解决此问题?我究竟做错了什么?Thanx提前!

这是代码:

<!DOCTYPE html>
<html>
    <head>
        <script type="text/javascript" src="<?php echo base_url(); ?>media/js/chart.js"></script>


<script type="text/javascript" src="<?php echo base_url(); ?>media/js/jquery.js"></script>

    </head>



    <canvas id="myChart" width="400" height="400"></canvas>
        <script  type="text/javascript">

        $(function() {
             options = {
                //Boolean - Show a backdrop to the scale label
                scaleShowLabelBackdrop: true,
                //String - The colour of the label backdrop
                scaleBackdropColor: "rgba(255,255,255,0.75)",
                // Boolean - Whether the scale should begin at zero
                scaleBeginAtZero: true,
                //Number - The backdrop padding above & below the label in pixels
                scaleBackdropPaddingY: 2,
                //Number - The backdrop padding to the side of the label in pixels
                scaleBackdropPaddingX: 2,
                //Boolean - Show line for each value in the scale
                scaleShowLine: true,
                //Boolean - Stroke a line around each segment in the chart
                segmentShowStroke: true,
                //String - The colour of the stroke on each segement.
                segmentStrokeColor: "#fff",
                //Number - The width of the stroke value in pixels
                segmentStrokeWidth: 2,
                //Number - Amount of animation steps
                animationSteps: 100,
                //String - Animation easing effect.
                animationEasing: "easeOutBounce",
                //Boolean - Whether to animate the rotation of the chart
                animateRotate: true,
                //Boolean - Whether to animate scaling the chart from the centre
                animateScale: false,
                //String - A legend template
                legendTemplate: "<ul class=\"<%=name.toLowerCase()%>-legend\"><% for (var i=0; i<segments.length; i++){%><li><span style=\"background-color:<%=segments[i].fillColor%>\"></span><%if(segments[i].label){%><%=segments[i].label%><%}%></li><%}%></ul>"

            };
             data = [
                {
                    value: 300,
                    color: "#F7464A",
                    highlight: "#FF5A5E",
                    label: "Red"
                },
                {
                    value: 50,
                    color: "#46BFBD",
                    highlight: "#5AD3D1",
                    label: "Green"
                },
                {
                    value: 100,
                    color: "#FDB45C",
                    highlight: "#FFC870",
                    label: "Yellow"
                }
            ];
             ctx = $("#myChart").get(0).getContext("2d");
             myNewChart = new Chart(ctx[0]).Pie(data, options);
        });
    </script>
</html>
Run Code Online (Sandbox Code Playgroud)

Spe*_*rek 24

问题出在这一行:

myNewChart = new Chart(ctx[0]).Pie(data, options);
Run Code Online (Sandbox Code Playgroud)

具体而言ctx[0].当你ctx在这里定义时:

ctx = $("#myChart").get(0).getContext("2d");
Run Code Online (Sandbox Code Playgroud)

ctx是一个名为的对象CanvasRenderingContext2D,它具有属性.当它不是时,你试图把它当作一个数组.ctx[0]因此undefined.所以解决方案实际上很简单,正如您所发现的那样.

更改ctx[0]ctx,你有你好看的动画饼图.

ctx = $("#myChart").get(0).getContext("2d");
myNewChart = new Chart(ctx).Pie(data, options);
Run Code Online (Sandbox Code Playgroud)

在这里小提琴

  • 混乱来自chartjs文档.饼图的示例使用新图表(ctx [0]).饼图(数据,选项); http://www.chartjs.org/docs/#doughnut-pie-chart (9认同)