Scatter Chart with Regression Line



Following is an example of a Scatter Chart with Regression Line.

We have already seen the configuration used to draw a chart in Highcharts Configuration Syntax chapter.

An example of a Scatter Chart with Regression Line is given below.

Configurations

Let us now see the additional configurations/steps taken.

series

Configure the chart type to be scatter based. series.type decides the series type for the chart. Here, the default value is "line".

chart.addSeries(chart.createSeries()  
   .setType(Type.SCATTER)  
);  

Example

HelloWorld.java

package com.tutorialspoint.client;

import org.moxieapps.gwt.highcharts.client.Chart;
import org.moxieapps.gwt.highcharts.client.Series;
import org.moxieapps.gwt.highcharts.client.plotOptions.LinePlotOptions;
import org.moxieapps.gwt.highcharts.client.plotOptions.Marker;

import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.user.client.ui.RootPanel;

public class HelloWorld implements EntryPoint {
   public void onModuleLoad() {
      final Chart chart = new Chart()  
         .setChartTitleText("Scatter plot with regression line");  

      chart.getXAxis()  
         .setMin(-0.5)  
         .setMax(5.5);  

      chart.getYAxis()  
         .setMin(0);  

      chart.addSeries(chart.createSeries()  
         .setName("Regression Line")  
         .setType(Series.Type.LINE)  
         .setPlotOptions(new LinePlotOptions()  
            .setMarker(new Marker()  
               .setEnabled(false)  
            )  
            .setHoverStateLineWidth(0)  
            .setEnableMouseTracking(false)  
         )  
         .setPoints(new Number[][]{  
            {0, 1.11}, {5, 4.51}  
         })  
      );  

      chart.addSeries(chart.createSeries()  
         .setName("Observations")  
         .setType(Series.Type.SCATTER)  
         .setPoints(new Number[] {  
            1, 1.5, 2.8, 3.5, 3.9, 4.2  
         })  
      );     
      RootPanel.get().add(chart);
   }
}

Result

Verify the result.

Scatter Chart with Regression Line
gwt_highcharts_combinations.htm
Advertisements