Example usage for com.google.gwt.visualization.client.visualizations ColumnChart ColumnChart

List of usage examples for com.google.gwt.visualization.client.visualizations ColumnChart ColumnChart

Introduction

In this page you can find the example usage for com.google.gwt.visualization.client.visualizations ColumnChart ColumnChart.

Prototype

public ColumnChart() 

Source Link

Usage

From source file:com.google.speedtracer.latencydashboard.client.LoadEventChart.java

License:Apache License

public LoadEventChart(Resources resources, String titleText) {
    super(resources, titleText);
    rightChart = new RightPieChart(resources);
    chartPanel.addEast(rightChart, CHART_HEIGHT);
    leftChart = new ColumnChart();
    chartPanel.add(leftChart);/* w w  w.ja v a  2s  .  c  o m*/
    addLegend();
}