最新消息:Welcome to the puzzle paradise for programmers! Here, a well-designed puzzle awaits you. From code logic puzzles to algorithmic challenges, each level is closely centered on the programmer's expertise and skills. Whether you're a novice programmer or an experienced tech guru, you'll find your own challenges on this site. In the process of solving puzzles, you can not only exercise your thinking skills, but also deepen your understanding and application of programming knowledge. Come to start this puzzle journey full of wisdom and challenges, with many programmers to compete with each other and show your programming wisdom! Translated with DeepL.com (free version)

javascript - Show No data message when chart has no data - Stack Overflow

matteradmin5PV0评论

I am trying to show no data message when chart has no data. Is it correct?

  var ctx = document.getElementById('mycanvas').getContext('2d');
        var chart = new Chart(ctx, {
            type: 'doughnut',
            data: {
                labels: ["aa", "bb", "cc", "dd"],
                datasets: [{
                    label: "My First dataset",
                    backgroundColor: ['red', 'blue', 'green', 'yello'],
                    data: data.length ? data: [{ label: "No Data", value: 100 }],
                }]
            },
            options: {
                legend: {
                    position: 'right',
                    labels: {
                        boxWidth: 12
                    }
                },
                tooltips: { bodyFontSize: 12 }
            }
        });

I am not getting No data message when data length is 0.

I am trying to show no data message when chart has no data. Is it correct?

  var ctx = document.getElementById('mycanvas').getContext('2d');
        var chart = new Chart(ctx, {
            type: 'doughnut',
            data: {
                labels: ["aa", "bb", "cc", "dd"],
                datasets: [{
                    label: "My First dataset",
                    backgroundColor: ['red', 'blue', 'green', 'yello'],
                    data: data.length ? data: [{ label: "No Data", value: 100 }],
                }]
            },
            options: {
                legend: {
                    position: 'right',
                    labels: {
                        boxWidth: 12
                    }
                },
                tooltips: { bodyFontSize: 12 }
            }
        });

I am not getting No data message when data length is 0.

Share Improve this question edited Dec 11, 2017 at 12:01 Lizzy 2,1833 gold badges21 silver badges33 bronze badges asked Dec 11, 2017 at 9:58 krishkrish 1,1176 gold badges26 silver badges54 bronze badges 3
  • Your ternary seems to be false – Zooly Commented Dec 11, 2017 at 10:01
  • return data.length and check the result, if it return 0 try data.length <= 0 but i think this way goes nothing.. – Pedram Commented Dec 11, 2017 at 10:01
  • What I can advice to you is manage it in the view. Don't display chart at all if there isn't data. <canvas id="mycanvas" ng-if="data.length > 0"></canvas> & <span ng-if="data.length == 0">No data</span> – Zooly Commented Dec 11, 2017 at 10:03
Add a ment  | 

1 Answer 1

Reset to default 3

Easiest is to use conditional rendering.

Assuming you're using AngularJS (you referenced tag), you can use ngIf directive. If data array is empty, then don't display chart.

<canvas id="myChart" ng-if="data != 0"></canvas>
<span ng-if="data == 0">No data</span>

Else, you can solve it in your script, by checking before or after draw the data length. I remend you this snippet.

Other solution following your wish could be to adapt drawn data to received data.

    if($scope.requestedLeaveTypeCount.length > 0){
      data = {
        labels: ["EL", "AL", "PL", "CL"],
        datasets: [{
            label: "My First dataset",
            backgroundColor: ['#F0CB8C', '#A9D5D4', '#E8A3D7', '#CFA3FD'],
            data: $scope.requestedLeaveTypeCount,
        }]
      }
    } else {
      data = {
        labels: ["No data"],
        datasets: [{
          labels:'No data',
          backgroundColor: ['#D3D3D3'],
          data: [100]
        }]
      }
    }

https://plnkr.co/edit/QXljAeeM4Ul3Y47EPcbq?p=preview

Post a comment

comment list (0)

  1. No comments so far