score:1
Accepted answer
You can use multiple scatter series with defined x and y values. Example:
Highcharts.chart('container', {
chart: {
type: 'scatter'
},
series: [{
data: [
[0.9, 40],
[1, 15],
[1.05, 25],
[1.1, 10],
[2.9, 35],
[3, 35],
[3.1, 35]
]
}, {
data: [
[1.9, 25],
[1.95, 10],
[2, 35],
[2.1, 35]
]
}],
...
});
Live demo: http://jsfiddle.net/BlackLabel/4eszoy30/
API Reference: https://api.highcharts.com/highcharts/series.scatter.data
Source: stackoverflow.com
Related Articles
- Looking for customized Scatter plot Graph in High chart
- Tooltip in chart with line- and scatter plot in highcharts 3.0.7
- Hight Chart Polar Scatter Plot values on chart and x-axis
- Can we create pie chart and scatter plot combined using highcharts.js?
- how to plot multiple time series in the same graph with customized x axis
- parsing JSON data to render high chart graph
- scatter chart high number of points
- Fixed plot height in scatter chart
- show one series data at a time in high chart column graph
- How to auto adjust Y axis plot lines in live high chart
- High chart column graph space issue
- Highcharts: Position scatter plot in a multi-series column chart
- How would I overlay a scatter plot on a mirrored bar chart in Highcharts?
- Highcharts: visualize graph arcs to 3D scatter chart
- How to draw following graph using Scatter Plot highchart?
- what is wrong in this data series that high chart does not plot it?
- Cannot plot scatter and columnrange graph with multiple y-axis
- Range Selector in Are Graph of High Chart
- How to show BAr graph rather than line graph in High Stoch Chart
- MACD + High chart Graph plotting issue
- how to get each key and value from object in javascript for high chart graph
- high chart graph doesnt start from the correct month
- Scatter chart plot on border if values are outside the bounderies
- High chart area range graph with different border color
- High charts bar chart label overlaps with the graph when labels are long
- High Chart inserting data from arrays into line graph
- High charts remove dots from the line graph
- Highcharts: Remove space between plot border and actual chart
- Highcharts scatter chart with a name per point
- Highstock/Highchart scatter points in combined graph
- Wkhtmltopdf + Highcart export issue
- Feeding highchart with x and y values from ajax
- Highcharts using JSON – Border and label colors
- threshold weirdness in latest highcharts version
- Highcharts fails on load "evaluating Y[fa].pointer"
- Highcharts width exceeds container div on first load
- Dynamic quadrant label positions with Highcharts
- React Use Function In Javascript Object
- highchart created using value from mysql, how to export it using phantomjs
- Gradle sync failed. Basic functionality will not work properly
- (Highcharts) button inside tooltip can't trigger
- Unable to Export HighCharts from IE
- Highcharts -> how to add vertical title to bar? how to make the symbol in the legend a rectangle?
- How to change height and tooltip width for JS library highcharts?
- How do you call a programmer-defined function in javascript in an android webview?
- How to add group secondary x-axis to highcharts
- Disable tooltip only for months and days in Highcharts
- highcharts - does not create with ajax
- highcharts JSON google earth
- Is it possible to completely hide a tooltip using pointFormatter?