I want to display a 'No data available' message in AmCharts 3

32 Views Asked by At

enter image description here

I want to display a 'No data available' message in AmCharts 3.

1

There are 1 best solutions below

0
wajiha siddiqui On
         if (FilteredData.length === 0) {
             cdChart.allLabels = [{
                 "text": '@Html.LocalizedString("NoRecordFound")',
                 "align": "middle",
                 "size": 12,
                 "y": "50%",
                 "x": "50%"
             }];
         }

enter image description here