Highcharts Point marker - highcharts

When you hover on any point in highcharts graphs. The point is highlighted(zoomed). Is there a way to remove this effect and show the points as it is (like without hover) and the tooltip be shown?

Yes:
plotOptions: {
series: {
states: {
hover: {
enabled: false
}
}
}
}
http://api.highcharts.com/highcharts#plotOptions.series.states.hover.enabled

Related

Highchart: Bubble heading is not showing if two bubbles intersect or comes near one another in Bubble chart

In Highcharts Bubblechart if i two bubbles comes near one another or intersect one another, the name on top of one bubble is not displaying.
Is there a way to display both the bubble names.
In this the notice the two bubbles in top right enter code herehttp://jsfiddle.net/htb38096/
You can enable the allowOverlap property for data labels:
plotOptions: {
series: {
dataLabels: {
allowOverlap: true,
...
}
}
}
Live demo: http://jsfiddle.net/BlackLabel/k23xLjmn/
API Reference: https://api.highcharts.com/highcharts/series.bubble.dataLabels.enabled
try this on dataLabels:
dataLabels: {
enabled: true,
useHTML: true,
style: { textShadow: 'none',fontSize: '10px',color:'black' },
formatter: function() {
return this.point.name;
},
}

Stop HighCharts change transparency of another series on hover of one series

By default , when i hover on one series , other series get some transparent.
How can i disable this behavior?
this hover: { enabled: false} not working.
You need to change the opacity property for inactive state:
plotOptions: {
series: {
states: {
inactive: {
opacity: 1
}
}
}
}
Live demo: http://jsfiddle.net/BlackLabel/7fmcp0da/
API Reference: https://api.highcharts.com/highcharts/plotOptions.series.states.inactive.opacity

In Highcharts, is it possible to enable all markers on hover?

I have a set of series with markers disabled, and I want to enable all the markers on serie hover, not individual point ans the doc states here: http://api.highcharts.com/highcharts/plotOptions.series.states.hover
The closest thing I had is this:
plotOptions: {
series: {
marker: {
enabled: false
},
states: {
hover: {
enabled: true,
marker: {
enabled: false
}
}
}
}
}
With this I hoped that the markers are all off, and when hovering all the markers are showed, as I thought that the series markers.enabled was set to true, but as the docs I shown above states, this is not what happens.
I would like to do this to show the user where he can mouseover to see the next/prev tooltip, as the markers are not equidistant.
Is possible to achieve this?
You can use series.events.mouseOver and series.events.mouseOut functions for updating your series, so you will show or hide your markers.
plotOptions: {
series: {
stickyTracking: false,
marker: {
enabled: false
},
events: {
mouseOver: function() {
this.update({
marker: {
enabled: true
}
});
},mouseOut: function() {
this.update({
marker: {
enabled: false
}
});
}
}
}
},
Here you can see an example how it can work: http://jsfiddle.net/hgbz7kg6/

How to change the marker style on hover in HighCharts

When I hover over a marker in a chart, how can I remove the larger opaque circle behind the marker.
Halo can be adjusted using options described in Highcharts API reference: http://api.highcharts.com/highcharts#plotOptions.line.states.hover.halo
Example:
plotOptions: {
series: {
states: {
hover: {
halo: {
size: 0
}
}
}
}
},
jsFiddle: http://jsfiddle.net/gujbp7qw/

Highcharts -- exporting, setting dataLabel options

I've using Highcharts 2.3.5. In the "exporting' object, under "chartOptions", I'm able to change some things when exporting, like the background color of the chart, but I haven't been able to enable the dataLabels nor change the marker size.
Here's an example, of what works and doesn't work. In this case, when exporting, I want to change the background color (which works) and make sure the data labels appear (which doesn't work) :
...
exporting : {
chartOptions : {
chart: { backgroundColor: '#ff0000'}, //this works
plotOptions: {
pie : {
dataLabels: {enabled: true} //this one doesn't work
}
}
}...
Am I missing something obvious?
j
$('#container1').highcharts({
exporting: {
chartOptions: { // specific options for the exported image
plotOptions: {
series: {
dataLabels: {
enabled: true
}
}
}
},
scale: 3,
fallbackToExportServer: false
},

Resources