score:2
Accepted answer
In HighStock, unlike HighCharts, the default for marker is enabled: false, this is because the data tends to be very dense and markers wouldn't add much value to the data comprehension of the user.
You need to modify your code to:
plotOptions: {
series: {
marker: {
enabled: true,
radius: 90
}
}
},
for the markers to show up.
EDIT: I will leave the above up in case someone comes across this and needs it. What David really wants to know is whether the series symbol during hover can be changed. The code for that is:
plotOptions: {
series: {
marker: {
lineColor: null,
states: {
hover: {
fillColor: 'white',
radius: 10
}
}
}
}
}
Which is straight from the Highcharts API reference at http://api.highcharts.com/highcharts#plotOptions.scatter.marker.states.hover.radius
Source: stackoverflow.com
Related Query
- Highcharts: Marker radius does not seem to work
- Highcharts code with same set of code/data works in PHP but does not work in JSfiddle
- Highcharts does not work with wicked_pdf
- Highcharts reflow does not work on class selector
- Tooltip.followPointer does not work in highcharts 3
- Generating Highcharts from MySQL data with PHP does not work
- tooltip in highcharts does not work properly
- tool tip does not work correctly if text is more in highcharts
- Highcharts (highstocks) tooltip does not work on latest firefox 64.0 with useHTML=true
- Multiple axis does not work on Highcharts 4
- Highcharts - colorByPoint does not work
- Synchronized HighCharts does not work when charts have different width
- Highcharts heat map does not work with a wide range of data values (min: 0, max: 5,000,000)
- Navigator in highcharts graph does not work
- Highcharts with angularjs drilled down does not work
- HighCharts delayForDisplay attribute does not work
- How to modify the code so that Highcharts graph does not cover fixed navigation bar at the top of the page?
- Highcharts (highstock.js) exporting function does not work on Embedded Visualforce pages
- Highcharts export web war does not work on Weblogic server
- Highcharts Range Selector does not work with multiple series
- Overriding log2lin and lin2log for Highcharts does not appear to work
- Highcharts - Pinch zoom does not work on chart with multiple y axes
- Highcharts Caption when verticalAlign set to 'top' margin does not work
- Highcharts Date.UTC does not work properly for real data
- highcharts does not seem to be rendering
- Highcharts with Public Google Spreadsheet does not work
- Trying to use highcharts inside native script web-view. Does not work
- Highcharts live data update does not work
- Highcharts 3d scatter click does not work
- Highcharts area fillOpacity do not work when changing the color
More Query from same tag
- Highcharts missing bars when running through PhantomJS
- Symfony2 highcharts, change color
- How to make a highchart's Tree Map chart fill the entire page without overflowing
- Highchart: How to change y-axis title text inside angularjs controller?
- How can I ensure my Highcharts don't break my flexbox layout?
- Setting min and max for chart in Highcharts library error
- Xaxis Highcharts data loading issue
- Codeigniter highcharttable count how many data in a month
- JSON date format for Highstocks
- Highstock Range Selector Buttons to PDF Export Dropdown
- HighCharts + reveal.js chart size
- primefaces chart x axis
- How do I add secondary axis to highstock charts?
- line fading while hovering on synchronized chart in highchart
- Formatting the float numbers in Highcharts
- knockoutjs highcharts parse arrays of data to chart
- Simultaneous actions on action event on one graph
- Displaying labels near of each bar
- Highcharts - Add Series Name As X-Axis Label
- Get current visible chart data after scroll
- How to extract the data from highstock chart
- ColorAxis with HighChart not working as expected with different set of library
- How to Add Custom Data to Highchart.js Tooltip
- Highcharts chart width to dispay size dynamically
- Draw deadlock graph(using functions) and added ability for scaling
- Populate JSON object to highchart bar chart
- How to prevent a React onClick event from being consumed by child
- Passing data from $ajax call to highcharts
- How to zoom to specific point in Highmaps
- How do I set the margin to bottom of a chart in HighCharts to zero?