GWT Google Charts - Basic Bubble Chart



Following is an example of a Basic Bubble Chart.

We have already seen the configurations used to draw a chart in Google Charts Configuration Syntax chapter. Now, let us see an example of a Bubble Chart.

Configurations

We've used BubbleChart class to show a basic Bubble Chart.

// bubble chart
BubbleChart chart = new BubbleChart();

Example

HelloWorld.java

package com.tutorialspoint.client;

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

import com.googlecode.gwt.charts.client.ChartLoader;
import com.googlecode.gwt.charts.client.ChartPackage;
import com.googlecode.gwt.charts.client.ColumnType;
import com.googlecode.gwt.charts.client.DataTable;
import com.googlecode.gwt.charts.client.corechart.BubbleChart;
import com.googlecode.gwt.charts.client.corechart.BubbleChartOptions;

public class HelloWorld implements EntryPoint {
   private BubbleChart chart;

   private void initialize() {
      ChartLoader chartLoader = new ChartLoader(ChartPackage.CORECHART);
      chartLoader.loadApi(new Runnable() {
         public void run() {
            // Create and attach the chart
            chart = new BubbleChart();
            RootPanel.get().add(chart);
            draw();
         }
      });
   }
   private void draw() {
      DataTable data = DataTable.create();
      data.addColumn(ColumnType.STRING, "Id");
      data.addColumn(ColumnType.NUMBER, "Age");
      data.addColumn(ColumnType.NUMBER, "Weight");
      
      data.addRow("", 8, 12);
      data.addRow("", 4, 5.5);
      data.addRow("", 11, 14);
      data.addRow("", 4, 5);
      data.addRow("", 3, 3.5);
      data.addRow("", 6.5, 7);

      BubbleChartOptions options = BubbleChartOptions.create();
      options.setTitle("Age vs Weight");

      // Draw the chart
      chart.draw(data,options);
      chart.setWidth("400px");
      chart.setHeight("400px");
   }
   public void onModuleLoad() {
      initialize();
   }
}

Result

Verify the result.

Basic Bubble Chart
gwt_googlecharts_bubble_charts.htm
Advertisements