How to display tooltips on jqplot pie chart

前端 未结 5 1621
暗喜
暗喜 2020-12-06 16:54

I have a jqplot pie chart with a legend and I would like to get the legend text to appear as a tooltip when the mouse hovers on the pies. I\'m not sure how to do that. Doe

5条回答
  •  眼角桃花
    2020-12-06 17:37

    I'm using the latest version of jqPlot and got the tooltips to work by just using the following inside "seriesDefaults" section:

    highlighter: {
      show: true,
      formatString:'%s', 
      tooltipLocation:'sw', 
      useAxesFormatters:false
    }
    

    The important part is "useAxesFormatters: false" since there are no axes in a pie chart. Feel free to change the "formatString" to whatever it is you want to, but for me, just "%s" shows the exact same string which shows up in the legends.

提交回复
热议问题