List of usage examples for com.google.gwt.visualization.client.visualizations AreaChart AreaChart
public AreaChart()
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(); }