GWT Google Charts Tutorial
Selected Reading
- GWT Google Charts - Discussion
- GWT Google Charts - Resources
- GWT Google Charts - Quick Guide
- GWT Google Charts - TreeMap Chart
- GWT Google Charts - Table Chart
- GWT Google Charts - Stepped Area
- GWT Google Charts - Scatter Chart
- GWT Google Charts - Sankey Charts
- GWT Google Charts - Pie Charts
- GWT Google Charts - Organization
- GWT Google Charts - Maps
- GWT Google Charts - Line Charts
- GWT Google Charts - Histogram
- GWT Google Charts - Combination
- GWT Google Charts - Column Charts
- GWT Google Charts - Candlestick
- GWT Google Charts - Bubble Charts
- GWT Google Charts - Bar Charts
- GWT Google Charts - Area Charts
- Configuration Syntax
- Environment Setup
- GWT Google Charts - Overview
- GWT Google Charts - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
GWT Google Charts - Scatter Chart
GWT Google Charts - Scatter Chart
Following is an example of a Scatter Chart.
We have already seen the configurations used to draw a chart in
chapter. Now, let us see an example of a Scatter Chart.Configurations
We ve used ScatterChart class to show a Scatter chart.
ScatterChart chart = new ScatterChart();
Example
HelloWorld.java
package com.tutorialspoint.cpent; import com.google.gwt.core.cpent.EntryPoint; import com.google.gwt.user.cpent.ui.RootPanel; import com.googlecode.gwt.charts.cpent.ChartLoader; import com.googlecode.gwt.charts.cpent.ChartPackage; import com.googlecode.gwt.charts.cpent.ColumnType; import com.googlecode.gwt.charts.cpent.DataTable; import com.googlecode.gwt.charts.cpent.corechart.ScatterChart; import com.googlecode.gwt.charts.cpent.corechart.ScatterChartOptions; pubpc class HelloWorld implements EntryPoint { private ScatterChart chart; private void initiapze() { ChartLoader chartLoader = new ChartLoader(ChartPackage.CORECHART); chartLoader.loadApi(new Runnable() { pubpc void run() { // Create and attach the chart chart = new ScatterChart(); RootPanel.get().add(chart); draw(); } }); } private void draw() { // Prepare the data DataTable data = DataTable.create(); 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); ScatterChartOptions options = ScatterChartOptions.create(); options.setTitle("Age vs Weight"); options.setLegend(null); // Draw the chart chart.draw(data, options); chart.setWidth("400px"); chart.setHeight("400px"); } pubpc void onModuleLoad() { initiapze(); } }
Result
Verify the result.
Advertisements