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

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

Introduction

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

Prototype

public AreaChart() 

Source Link

Usage

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

License:Apache License

public AggregatedEventTypeChart(LatencyDashboardChart.Resources resources, String title) {
    super(resources, title);
    rightChart = new RightPieChart(resources);
    chartPanel.addEast(rightChart, CHART_HEIGHT);
    leftChart = new AreaChart();
    chartPanel.add(leftChart);//from   w ww . j  av  a2s  .com
}

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

License:Apache License

public GwtLightweightMetricsChart(LatencyDashboardChart.Resources resources, String title) {
    super(resources, title);

    rightChart = new RightPieChart(resources);
    chartPanel.addEast(rightChart, CHART_HEIGHT);
    leftChart = new AreaChart();
    chartPanel.add(leftChart);/*from w  w  w.java 2  s.c om*/
    addLegend();
}