How to remove legend from bottom of chart - amcharts

10,536

Solution 1

In amcharts the legends are added manually, In your case jut remove the lines which add legends to the chart.

For e.g., The legends are added as follows,

 var legend = new AmCharts.AmLegend();
 chart.addLegend(legend);

OR

AmCharts.makeChart("chartdiv",
    {
        "legend": {
                    "useGraphSettings": true
                  },
     }

Just remove the above lines from your code.

Solution 2

You can still keep your graphs settings (labels, balloons etc) but hide the legend:

AmCharts.makeChart("chart", {
    "legend": {
        "enabled": false
    },
}
Share:
10,536
anusreemn
Author by

anusreemn

Updated on August 01, 2022

Comments

  • anusreemn
    anusreemn over 1 year

    Can you please help me out to remove the legend (of y-axis data) from the below the line-chart. This is the icon that helps to remove the corresponding line from the line-chart.

    See inline imageTo remove the red-bordered section