- GWT Google 圖表教程
- GWT Google 圖表 - 首頁
- GWT Google 圖表 - 概覽
- 環境設定
- 配置語法
- GWT Google 圖表 - 區域圖表
- GWT Google 圖表 - 柱狀圖
- GWT Google 圖表 - 氣泡圖表
- GWT Google 圖表 - 蠟燭圖
- GWT Google 圖表 - 柱狀圖
- GWT Google 圖表 - 組合圖
- GWT Google 圖表 - 直方圖
- GWT Google 圖表 - 折線圖
- GWT Google 圖表 - 地圖
- GWT Google 圖表 - 組織結構圖
- GWT Google 圖表 - 餅圖
- GWT Google 圖表 - 桑基圖
- GWT Google 圖表 - 散點圖
- GWT Google 圖表 - 階梯形區域
- GWT Google 圖表 - 表格圖表
- GWT Google 圖表 - 樹狀圖圖表
- GWT Google 圖表資源
- GWT Google 圖表 - 快速指南
- GWT Google 圖表 - 資源
- GWT Google 圖表 - 討論
帶有資料標籤的氣泡圖表
以下是帶標籤氣泡圖的示例。
我們在 Google Charts 配置語法 一章中已經瞭解了用於繪製圖表中的配置。現在,讓我們看看一個帶資料標籤的氣泡圖表示例。
配置
我們使用 BubbleChart 類來顯示帶資料標籤的氣泡圖。
// bubble chart BubbleChart chart = new BubbleChart();
示例
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("Robert", 8, 12);
data.addRow("Mohan", 4, 8.5);
data.addRow("Ramesh", 11, 14);
data.addRow("Julie", 4, 5);
data.addRow("Sohan", 3, 3.5);
data.addRow("Karim", 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();
}
}
結果
驗證結果。
gwt_googlecharts_bubble_charts.htm
廣告