I wonder why I cant display my result query using the kendoChart. when i tried this
series: [{
   type: "pie",
   data: [{
      category: "Available",
      value: 24
   }]
}],
It works!
but when i tried to put the result of my query (please see the picture below)
series: [{
   type: "pie",
   data: [{
      category: status,
      value: counts
   }]
}],
no record display
my current code:
<script>
  const createChart = async () =>{
     const { status, counts } = await getConditions();
     console.log(status, counts)
     $("#chart1").kendoChart({
            title: {
                text: "All Books"
            },
            legend: {
                position: "top"
            },
            seriesDefaults: {
                labels: {
                    template: "#= category # - #= kendo.format('{0:P}', percentage)#",
                    position: "outsideEnd",
                    visible: true,
                    background: "transparent"
                }
            },
          series: [{
                type: "pie",
                data: [{
                    category: status,
                    value: counts
                }]
            }],
            tooltip: {
                visible: true,
                template: "#= category # - #= kendo.format('{0:P}', percentage) #"
            }
        }); 
}
$(document).ready(()=>{
    createChart();
});
</script>
the results data from the console.log(status, counts)

