score:1
https://jsfiddle.net/blaird/7j4a2rLo/1/
I turned the bottom marker hidden using the following CSS
#container .highcharts-markers.highcharts-tracker.highcharts-series-hover path:nth-child(2) {
visibility:hidden
}
If you want to hide the top marker, use nth-child(1)
I did have to turn off the halo effect to make this work, since the halo is done with one path for both markers. To turn off the halo use:
plotOptions: {
series: {
states: {
hover: {
halo: false
}
}
}
},
If you leave the halo on, it will be the first path in the .highcharts-series-hover <g>
, so you'll have to adjust your nth-child
.
Source: stackoverflow.com
Related Query
- Highcharts: show just 1 marker from an arearange type of series
- How do I hide a Highcharts series from the chart, but always show it in the tooltip?
- Highcharts - Remove first marker from Area chart in every series
- highcharts series type 'flags' do not show point out of series
- Getting numbers on Y-axis to show up as percentages with code from a Highcharts code generator tool?
- Highcharts displays series names but missing data points from json source
- Highcharts data from Google spreadsheet show line chart for one series
- HighCharts Hide Series Name from the Legend
- Proper way to remove all series data from a highcharts chart?
- How can I hide series from a HighCharts legend?
- How to display highchart series line marker symbol from tooltip formatter?
- How can I hide a series from initially being displayed in Highcharts
- highcharts - disable fading series on marker hover
- adding series to highcharts from JSON
- Changing Highcharts data series type dynamically
- Highlighting Highcharts series from a remote element
- Show specific series values in the stack label using highcharts
- Loading Highcharts series from XML using jQuery
- How can I delete all of the points from a highcharts series
- Increase different marker sizes when hovering series using highcharts
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- How to remove the halo/glow around a marker upon hovering a series in Highcharts
- Highcharts - remove points from series
- HighCharts area graph - show tooltip only on hover of marker
- highCharts flags - drop line from flag on series
- How to show 0 for incomplete Series in Highcharts
- Change chart type and redraw with multiple series in Highcharts
- Highcharts animate series on show
- Highcharts show the same yAxis start and end value with multiple data series
- How to obtain HighCharts series "id" from "series" elements?
More Query from same tag
- Highcharts - how to access category of multiple axis of the point from tooltip
- Highmaps won't display my GeoJSON lake layer
- Can't append label to highchart pie chart
- Highstock/Highcharts timestamp values
- HighCharts Heatmap with bubbles
- Highcharts: How to set dataGrouping
- Plot band not limited to xAxis, draws for the whole graph
- Highcharts legend js error
- How to hide a highchars when there is no data to show?
- Tick Interval for 5 days
- Adding multiple series to the spline chart using dotnet high charts in asp.net mvc3
- Remove [Object] label in highchart
- Is it possible to get a statechange of the zoom or other zoom-related parameters in order to dynamically set tickInterval in Highcharts?
- dynamically change label to show the y-axis min and max value
- High Chart to High Stock
- Wkhtmltopdf fails to printing SVG path (highchart)
- Highcharts 'Reset Zoom' after calling setExtremes
- Highcharts v7.1.2 width scaling issue when using css transform scale
- highchart's line chart with constant series not plotting when using linear gradient colour
- LINQ that groups data and returns series for chart
- High Charts Line Chart with missing data
- How to limit chart xAxis date range in HighCharts?
- How can I switch between JSON data sets in HighMaps using setData?
- Formatting Highcharts Series
- Fullscreen panel bootstrap with highcharts (100% height)
- Highcharts sankey diagram, series color
- HighCharts: Line series disappears on click of legend
- Can someone help me to provide space between the time stamps on x-axis
- Highcharts - Why is column so narrow on datetime axis?
- DotNet.Highcharts , Is there any way to use it in Winform application?