my chart is this:
http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/3d-scatter-draggable/
i know that if i want to disable the tooltip effect in highcharts, i need to add to my code this:
tooltip: {
enabled: false
}
but i don't know how to disable it for only one point...
series: [{
name: 'Reading',
colorByPoint:
{ color: "#ff0000"},
data: [
// [X, Y, Z]
[1, 8, 1],
[1, 9, 2],
[1, 1, 5],
[2, 7, 2],
[2, 3, 4],
[4, 5, 7],
[4, 5, 8],
[7, 3, 3],
[7, 8, 5],
[10, 7, 10]
]},{ ------ draw a line on bottom frame
data: [[0,0,5],[10,0,5]
],
lineWidth: 1,
marker: {
enabled: false
},
color: 'rgba(0,0,0,0.51)'
}, ------ end draw
{ // ------ draw a point on (right edge) bottom frame
data: [[10.7,0,5]],
dataLabels: {
enabled: true,
crop: false,
overflow: false,
format: 3,
},
marker: {
enabled: false,
states:{
hover: {
enabled: false
}
}
}
}]
how can i to disable the tooltip for the point that i addded ?