41
Views
1
Comments
Scatter plot - Issue while displaying tooltip on pointer
Application Type
Reactive

Hi All, 

I created a scatter plot in my application by adding DataSeriesFormat as 

 tooltip: {        useHTML: true    },    dataLabels: {        enabled: true,        pointFormat: ''    },    cluster: {        enabled: true,        minimumClusterSize: 2,        allowOverlap: true}                                     
      and 


HighchartsJSON

"

    chart: {

        type: 'scatter',

        zoomType: 'xy'

    },

     tooltip: {clusterFormat: 'Clustered points: {point.clusterPointsAmount}'}"


I want to disable the tooltip when the pointer value is more than 1. Currently, it is showing the value of (x,y) in case of multiple values on the pointer. Incase of a single value over a pointer, the popup needs to be displayed. I want conditional show/hide of tooltip based on pointer intersecting value as it is 4 in the example attached. This may need some changes on AdvanceJSON or at some other place but I am unable to find a solution.


Your help is highly appreciated.


Regards,

Priyank Sahu







2020-09-15 13-07-23
Kilian Hekhuis
 
MVP

Hi Priyank,

You can create a customer tooltip via JSON/JavaScript. Check the HighCharts documentation.

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.