Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Amcharts - Remove balloon

Tags:

amcharts

I've got a multi-axis chart with several lines in the graph.Currently as I move the mouse over the chart, several balloons appear at each point showing the values of the various lines at that point. At the same time, the legend at the bottom of the graph also displays values for these points. Is there a way I can disable the balloon text from appearing when I hover over the chart. The values appearing in the legend area is sufficient.

like image 788
usert4jju7 Avatar asked Jan 14 '16 07:01

usert4jju7


2 Answers

Just insert "showBalloon": false for each graph. Reference

like image 133
gerric Avatar answered Oct 07 '22 23:10

gerric


use baloon object in graph option to enable and disable amchart baloon.

     "graphs": [
{
"valueAxis": "item1",
  "balloon": {
    "enabled": false
  }

]
like image 27
Pandi_Snkl Avatar answered Oct 08 '22 01:10

Pandi_Snkl