Gwt-googlecharts-bar-basic

提供:Dev Guides
移動先:案内検索

GWT Google Charts-基本的な棒グラフ

以下は、基本的な棒グラフの例です。

link:/gwt_googlecharts/gwt_googlecharts_configuration_syntax [Googleグラフの構成構文]の章で、グラフを描画するために使用される構成を見てきました。 次に、基本的な棒グラフの例を見てみましょう。

構成

*BarChart* クラスを使用して、棒グラフを表示しました。
//bar chart
BarChart chart = new BarChart();

*_HelloWorld.java_*
package com.finddevguides.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.BarChart;
import com.googlecode.gwt.charts.client.corechart.BarChartOptions;
import com.googlecode.gwt.charts.client.options.HAxis;
import com.googlecode.gwt.charts.client.options.VAxis;

public class HelloWorld implements EntryPoint {
   private BarChart chart;

   private void initialize() {
      ChartLoader chartLoader = new ChartLoader(ChartPackage.CORECHART);
      chartLoader.loadApi(new Runnable() {
         public void run() {
           //Create and attach the chart
            chart = new BarChart();
            RootPanel.get().add(chart);
            draw();
         }
      });
   }
   private void draw() {
     //Prepare the data
      DataTable data = DataTable.create();
      data.addColumn(ColumnType.STRING, "Year");
      data.addColumn(ColumnType.NUMBER, "Asia");
      data.addRow("2012", 900);
      data.addRow("2013", 1000);
      data.addRow("2014", 1170);
      data.addRow("2015", 1250);
      data.addRow("2016", 1530);

     //Set options
      BarChartOptions options = BarChartOptions.create();
      options.setTitle("Population (in millions)");
      options.setHAxis(HAxis.create("Year"));
      VAxis vAxis = VAxis.create();
      vAxis.setMinValue(0);

      options.setVAxis(vAxis);

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

結果

結果を確認します。

基本的な棒グラフ