Disable Plotpoint legend on hover in Highcharts - highcharts

Can someone tell me how to disable the legend which pops up when you hover over a plotpoint in Highcharts?
Thanks

You are talking about a tooltip: http://api.highcharts.com/highcharts#tooltip
You can set 'enabled':false

Related

Highcharts - Remove gap between tooltip border and content

How can I remove the gap between Highchart's custom tooltip (created from plotoptions > series > tooltip > pointFormatter and useHTML:true) and the html content, without affecting the tooltip arrow?
If I set the tooltip borderWidth to 0, it removes the arrow along with the tooltip border.
Please refer to the below picture to see the gap between the tooltip border and the actual content:
Got the answer! Simple..
tooltip : {
...
padding : 0
}

Highcharts markers on legend and hover ONLY

I need to show highchart markers only on hover state and in the legend at all times. I don't want it to show on normal state in the chart. I searched for this and found this post which did not work for me
Series markers disable on lines and enable on legend in Highchart
You can reset drawPoints function.
Highcharts.Series.prototype.drawPoints = function() { };
Example: http://jsfiddle.net/11pLzk9m/1/

Highcharts Percentage area graph splined?

Is it possible to make the lines in the HighCharts Percentage area graph with a spline?
Thanks in advance for any help.
You can just change the chart type from 'area' to 'areaspline' and rename the area property under plotOptions to areaspline - if that's what you mean?
http://jsfiddle.net/rNMmp/

HighStock how to set default invisible for all series

I want to set invisible for all series. Where and how can i set this option please. I found that posibility only in HighChart. Could you help me please?
I mean that legend will be disable and you can choose which series you want to display, thanks
You can use visible parameter visible:false http://api.highcharts.com/highstock#plotOptions.series.visible
http://jsfiddle.net/hNXXg/
or
http://jsfiddle.net/dusPn/

Show yaxis out the plot in highstock

I would like that both yAxis and their labels in charts located at http://contenidopremium.estrategiasdeinversion.com/modulos/indicadores/framework_indicadores.php?t=BBVA&k=msdgv8IUDfviuqweRH9snsdvu7wsaeuvc87awer43sdney where displayed out the plot (not overflow in chart) as you can see in this chart http://www.highcharts.com/demo/spline-symbols but I don't find the difference or the correct options. I think that the difference is that demo is highchart and mine is highstock but I'm not sure.
Could anybody help me?
Thank ins advance, txetxu.
Set yAxis.labels.align to right, and manipulate x/y values, see: http://jsfiddle.net/JJLBp/
You can alter the position of the legend using the 'align' and 'verticalAlign' options. Try something like this:
legend: {
enabled: true,
verticalAlign: 'bottom'
},
This works with highstock http://jsfiddle.net/PZzYR/.

Resources