score:1
You can add another scatter series with and modify it a bit to show connections and dataLabels.
series: [{
type: 'scatter',
data: [{
name: 'First',
x: 0,
y: 29.9,
dataLabels: {
enabled: false
}
}, {
name: 'Second',
x: 0.1,
y: 39.9,
dataLabels: {
formatter: function() {
return 'test label';
},
x: 20,
y: 0
},
marker: {
enabled: false,
radius: 0
}
}],
},
]
Options chart to set behavior, with enableMouseTracking: false
to turn off mouse tracking, lineWidth: 1
to draw line (connections to point) and showInLegend: false
for hide series in legend.
plotOptions: {
scatter: {
states: {
inactive: {
enabled: false
}
},
dataLabels: {
enabled: true,
allowOverlap: true,
crop: false,
overflow: 'allow',
align: 'center',
verticalAlign: 'bottom',
useHTML: true,
},
lineWidth: 1,
color: 'red',
enableMouseTracking: false,
showInLegend: false
},
}
live demo: http://jsfiddle.net/BlackLabel/hpds8f0x/2/
Source: stackoverflow.com
Related Articles
- How to draw line from Data label to Marker in Highchart Scatter Plot
- cannot draw second regression line in scatter plot on highchart
- How to display highchart series line marker symbol from tooltip formatter?
- Highcharts: Draw line from data markers to axis?
- Highcharts: Draw line from marker to axis?
- Plot Highchart multiple series line chart using JSON data
- Draw line before marker appear Highchart
- How to plot a highstock single line series graph from ajax data
- Highcharts Highstock How to Plot OHLC and Line Charts from One Set of Embedded CSV Data Using Series Map Tools?
- Highchart json from mysql data not able to show up in line graph
- How do I show multiple line from dynamic data using javascript in highchart
- Highchart Data from HTML table with line series
- How to render Gantt Highchart from data source
- Draw multiple series in Highchart from single JSON data container
- Highchart : Line Chart not Loading the data from Database on screen
- How to display basic line graph in Highchart for multiple categories' data from csv?
- Unable to draw Spline on secondary Y Axis (getting data from CSV file) using highchart
- Plot Highchart Gauge with JSON Data
- Can color of data label be different inside and outside of the bar in Highchart
- programatically fire a click event for a point on highchart scatter plot
- Highcharts scatter plot with lots of data points running really slow
- Highcharts shared tooltip for line series and scatter plot not working
- Add dynamic data to line chart from mysql database with highcharts
- Highcharts scatter plot with variable line width
- HighChart - Can draw line between Title and SubTitle
- Showing marker for separate values only in line chart in HIghchart
- Highchart does not load data from hidden input when using .val
- Highchart how to animate from the xaxis bottom line upward
- Highchart angular directive doesn't redraw from dynamic (ajax) data table
- HighChart : plot line click event for multiple chart
- JQuery UI tabs and multiple Highcharts
- Line chart is not showing and is considered as a part of the column data
- How to center chart title position dynamically inside pie chart in highcharts
- Highcharts, Mysql, and Codeigniter
- Plotting data using highcharts piechart in flask web application
- how to change grid alternate color in highcharts
- Not able to draw a Pie Chart with external csv file in HighCharts
- dynamically adding series to highcharts
- Plot dynamically added array elements using Highcharts.js
- How to hide Axes Crosshairs by onclick event in Highcharts
- HighCarts Tooltip position relative to mouse
- setData Series Highchart using Ajax and CodeIgniter
- Highcharts: How can I achiveve multiple rows on chart labels?
- Add a dropdown to Highcharts to change chart type with AngularJs
- Can't disable animation when using Highcharts in polar mode
- Create graphs similar to Pew Research site
- Use Highchart context menu provided in version v4.0.0
- Render Highcharts inside Webix
- How to set Chart Size in Android Using MPAAndroid
- Getting 'Cannot read property "length" from undefined' exception while rendering chart at JasperReports Server