- GWT 谷歌图表教程
- GWT 谷歌图表 - 主页
- GWT 谷歌图表 - 概览
- 环境设置
- 配置语法
- GWT 谷歌图表 - 区域图表
- GWT 谷歌图表 - 柱状图
- GWT 谷歌图表 - 气泡图
- GWT 谷歌图表 - 蜡烛图
- GWT 谷歌图表 - 柱状图
- GWT 谷歌图表 - 组合
- GWT 谷歌图表 - 直方图
- GWT Google 图表 - 折线图
- GWT 谷歌图表 - 地图
- GWT 谷歌图表 - 组织
- GWT 谷歌图表 - 饼图
- GWT 谷歌图表 - 桑基图
- GWT 谷歌图表 - 散点图
- GWT 谷歌图表 - 阶梯区域
- GWT 谷歌图表 - 表格图表
- GWT 谷歌图表 - 树形图图表
- GWT 谷歌图表资源
- GWT 谷歌图表 - 快速指南
- GWT 谷歌图表 - 资源
- GWT 谷歌图表 - 讨论
直方图图表桶
以下是自定义桶大小、直方图图表示例。
我们在 Google 图表配置语法 章节中已经看到绘制图表所用的配置。现在,让我们看一个自定义桶大小的直方图图表示例。
配置
我们使用**bucketSize** 配置来更改直方图图表默认的桶大小。
options.setBucketSize(5);
示例
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" },
{"1", 80},{"2", 55},{"3", 68},{"4", 80},{"5", 54},
{"6", 70},{"7", 85},{"8", 78},{"9", 70},{"10", 58},
{"11", 90},{"12", 65},{"13", 88},{"14", 82},{"15", 65},
{"16", 86},{"17", 45},{"18", 62},{"19", 84},{"20", 75},
{"21", 82},{"22", 75},{"23", 58},{"24", 70},{"25", 85}
};
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
广告