Highcharts Scatter with Regression Line Chart

In the previous chapters, we learned how to setup highcharts library and how to create a chart with required configurations using highcharts library in our webpage. Now, we will learn how to create a scatter with regression line chart using highcharts library with examples.

Highcharts Scatter with Regression Chart Example

Following is the example of creating a scatter with regression line chart by setting the required chart properties using highcharts library.

 

Live Preview

<html>

<head>

    <title>Highcharts Scatter with Regression Line Chart</title>

    <script src="https://code.jquery.com/jquery-3.4.1.min.js"></script>

    <script src="https://code.highcharts.com/highcharts.js"></script>

    <script src="https://code.highcharts.com/modules/exporting.js"></script>

    <script type="text/javascript">

        $(function() {

            Highcharts.chart('container', {

                xAxis: {

                    min: -0.5,

                    max: 5.5

                },

                yAxis: {

                    min: 0

                },

                title: {

                    text: 'Scatter plot with regression line'

                },

                series: [{

                    type: 'line',

                    name: 'Regression Line',

                    data: [

                        [0, 1.11],

                        [5, 4.51]

                    ],

                    marker: {

                        enabled: false

                    },

                    states: {

                        hover: {

                            lineWidth: 0

                        }

                    },

                    enableMouseTracking: false

                }, {

                    type: 'scatter',

                    name: 'Observations',

                    data: [1, 1.5, 2.8, 3.5, 3.9, 4.2],

                    marker: {

                        radius: 4

                    }

                }]

            });

        });

    </script>

</head>

<body>

    <div id="container" style="width: 100%; height: 400px;"> </div>

</body>

</html>

If you observe the above example, we created a scatter with regress line chart using highcharts library with required properties.

 

When we execute the above highcharts example, we will get the result like as shown below.

 

Highcharts Scatter with Regression Line Chart Example Result

 

This is how we can create a scatter with regression line chart using highcharts library with required properties.