顯示差異的條形圖



以下是顯示差異的條形圖示例。

我們在 Google Charts 配置語法 章節中已經看到用於繪製圖表所需的配置。現在,讓我們看一個顯示差異的條形圖示例。

配置

我們使用 BarChart 類來顯示顯示差異的條形圖。

// bar chart
BarChart chart = new BarChart();

示例

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.BarChart;

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() {
      DataTable current = DataTable.create();
      current.addColumn(ColumnType.STRING, "Name");
      current.addColumn(ColumnType.NUMBER, "Score");
      current.addRow("Jane", 900);
      current.addRow("Joe", 1000);
      current.addRow("Janet", 1170);
      current.addRow("Robert", 1250);
      current.addRow("Julie", 1530);    
      
      // Prepare the data
      DataTable older = DataTable.create();
      older.addColumn(ColumnType.STRING, "Name");
      older.addColumn(ColumnType.NUMBER, "Score");
      
      older.addRow("Jane", 400);
      older.addRow("Joe", 700);
      older.addRow("Janet", 970);
      older.addRow("Robert", 1000);
      older.addRow("Julie", 1100);    		

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

結果

驗證結果。

Bar Chart showing differences
gwt_googlecharts_bar_charts.htm
廣告
© . All rights reserved.