Chartjs-When I added a funnel chart to chartjs all the charts are load compressed until resize page

0👍

The datalabels plugin fails on your funnel chart because it cant find an x axis and cant fix it since it doesnt understand the chart since its a custom chart. If you set display to false in the options for your funnel chart it will work.

 options: {
      responsive: true,
      title: {
        display: true,
        text: "chart title"
      },
      plugins: {datalabels: {display: false}}
    },

Live example: https://codepen.io/leelenaleee/pen/JjbNLpQ

Leave a comment