How to make tooltips always appear on any pie chart?

0
Hi, I am working on any pie chart, My requirement is to show instead of hovering over every slice and showing the information, the tooltip will always appear on any pie chart.  Any help would be appreciated. Thanks & Regards Shivani Dwivedi
asked
1 answers
0

Hi, Shivani

[ {
  "hoverinfo": "label+percent",
    "textinfo": "value",
  "type": "pie",
   "hole": 0.6,
  "sort": false,
  "values": ['1’,’2’]

}]

 

the textinfo: value will show the values always on the pie chart.

answered