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 Articles
- 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
- Highcharts - How do I dynamically change Marker radius when zooming?
- 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
- Converted PHP code that built an array to JS and now highcharts doesn't work - what did I do wrong?
- 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
- Why does the smallest bubble size of this Highcharts jsFiddle example seem incorrect and how do I fix it?
- 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 : How to increase marker radius based on the value range in Y axis in Scatter Graph?
- highcharts does not seem to be rendering
- Highcharts with Public Google Spreadsheet does not work
- Changing background color for countries based on data
- How to properly import HighCharts with Backbone-boilerplate in an ECMAScript 2015 way?
- Highcharts yLow / yHigh not working
- Add new data to a Highchart pie chart dynamically
- HIGHCHART: HOW TO START TICK AT (0,0)
- Highcharts yaxis negative values error
- Highcharts Legend Custom HTML
- Highcharts server side rendering draw a mysterious semi circle donut shape
- Highchart is not getting populated using external json data
- Highchart Tool-tio show CSV data
- Benchmarking HighCharts, D3 and Canvas plotting
- Highcharts/highcharteR ignores point color when plotting 50+ series
- Highcharts acting weird in chrome 30.0.1599.69
- HighCharts JSONArray without quotes
- Update Highcharts tooltip with onchange
- Show total for whole group in Highcharts 'stacked & grouped column' layout
- highcharts not displaying graph
- X axis label as Category not showing correctly: Highcharts
- Show data of a month instead of 12 months
- Hichcharts - Custom legend css not getting displayed in Print Chart download functionality