'How to make dot chart with HighchartJS

as of now Highchart has a lot of solutions for data visualization but i know it capable of drawing any chart to visualize the data.

I need make chart like this.

Thanks

enter image description here



Solution 1:[1]

You need to use scatter chart type:

  chart: {
    type: 'scatter'
  }

Live demo: http://jsfiddle.net/BlackLabel/zvga4koh/

API Reference: https://api.highcharts.com/highcharts/series.scatter

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 ppotaczek