0

enter image description here

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

1 Answers1

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

enter image description here