Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Uncaught TypeError: (intermediate value).Pie is not a function -Chart.js

I want to draw Pie chart using Chart.js 2.1.6

My code :

<script src="~/Plugin/Chart.js 2.1.6/dist/Chart.min.js"></script>

<canvas id="mychart"></canvas>

var 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"
        }
    ]

var ctx = $("#myChart").get(0).getContext("2d"); var myPieChart = new Chart(ctx).Pie(data);

But i get an Error:

Uncaught TypeError: (intermediate value).Pie is not a function.

like image 363
Black John Avatar asked Sep 24 '26 01:09

Black John


1 Answers

have you tried using the following code instead?

var myPieChart = new Chart(ctx,{
    type: 'pie',
    data: data,
    options: options
});
like image 117
Mina Jacob Avatar answered Sep 26 '26 15:09

Mina Jacob



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!