demenvil
demenvil

Reputation: 1139

Can I make Amchart's tooltips (AmBalloon) always visible?

I am using AmChart library to display a chart and I would like the tooltips to be always visible. How to do it?

Upvotes: 0

Views: 1237

Answers (1)

Goran Stoyanov
Goran Stoyanov

Reputation: 2311

Nope, I don't think there's a way to do it with balloons, but you can use the labelText option.

Here's an example:

...
"graphs": [ {
    "showBalloon": false,
    "fillAlphas": 0.8,
    "lineAlpha": 0.2,
    "type": "column",
    "valueField": "visits",
    "labelText": "[[category]]:\n[[value]]"
  } ],
...

The complete code is in this fiddle.

Upvotes: 1

Related Questions