- GWT Google Charts 教程
- GWT Google Charts - 首頁
- GWT Google Charts - 概覽
- 環境設定
- 配置語法
- GWT Google Charts - 區域圖表
- GWT Google Charts - 條形圖表
- GWT Google Charts - 氣泡圖表
- GWT Google Charts - 蠟燭圖
- GWT Google Charts - 柱形圖表
- GWT Google Charts - 組合圖
- GWT Google Charts - 直方圖
- GWT Google Charts - 折線圖
- GWT Google Charts - 地圖
- GWT Google Charts - 組織
- GWT Google Charts - 餅狀圖
- GWT Google Charts - 桑基圖
- GWT Google Charts - 散點圖
- GWT Google Charts - 階梯狀區域圖
- GWT Google Charts - 表格圖
- GWT Google Charts - 樹狀圖
- GWT Google Charts 資源
- GWT Google Charts - 快速指南
- GWT Google Charts - 資源
- GWT Google Charts - 討論
帶有多個序列的直方圖圖表
以下是一個帶有多個序列的直方圖圖表的示例。
我們已經在“Google Charts 配置語法”章節中瞭解用於繪製圖表時使用的配置。現在,我們來看一個帶有多個序列的直方圖圖表示例。
示例
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.DataTable;
import com.googlecode.gwt.charts.client.corechart.Histogram;
import com.googlecode.gwt.charts.client.corechart.HistogramOptions;
import com.googlecode.gwt.charts.client.options.Legend;
import com.googlecode.gwt.charts.client.options.LegendPosition;
import com.googlecode.gwt.charts.client.util.ChartHelper;
public class HelloWorld implements EntryPoint {
private Histogram chart;
private void initialize() {
ChartLoader chartLoader = new ChartLoader(ChartPackage.CORECHART);
chartLoader.loadApi(new Runnable() {
public void run() {
// Create and attach the chart
chart = new Histogram();
RootPanel.get().add(chart);
draw();
}
});
}
private void draw() {
// Prepare the data
Object[][] data = new Object[][] { { "Student Roll No", "Height", "Weight" },
{"1", 80, 40},{"2", 55, 30},{"3", 68, 34},{"4", 80, 40},{"5", 54, 27},
{"6", 70, 35},{"7", 85, 42},{"8", 78, 40},{"9", 70, 35},{"10", 58, 28},
{"11", 90, 45},{"12", 65, 33},{"13", 88, 50},{"14", 82, 41},{"15", 65, 30},
{"16", 86, 43},{"17", 45, 30},{"18", 62, 30},{"19", 84, 42},{"20", 75, 40},
{"21", 82, 41},{"22", 75, 40},{"23", 58, 30},{"24", 70, 35},{"25", 85, 40}
};
DataTable dataTable = ChartHelper.arrayToDataTable(data);
// Set options
HistogramOptions options = HistogramOptions.create();
options.setTitle("Students height, in cm");
options.setLegend(Legend.create(LegendPosition.NONE));
options.setBucketSize(5);
// Draw the chart
chart.draw(dataTable,options);
chart.setWidth("400px");
chart.setHeight("400px");
}
public void onModuleLoad() {
initialize();
}
}
結果
驗證結果。
gwt_googlecharts_histogram_charts.htm
廣告