GWT Google Charts Tutorial
Selected Reading
- GWT Google Charts - Discussion
- GWT Google Charts - Resources
- GWT Google Charts - Quick Guide
- GWT Google Charts - TreeMap Chart
- GWT Google Charts - Table Chart
- GWT Google Charts - Stepped Area
- GWT Google Charts - Scatter Chart
- GWT Google Charts - Sankey Charts
- GWT Google Charts - Pie Charts
- GWT Google Charts - Organization
- GWT Google Charts - Maps
- GWT Google Charts - Line Charts
- GWT Google Charts - Histogram
- GWT Google Charts - Combination
- GWT Google Charts - Column Charts
- GWT Google Charts - Candlestick
- GWT Google Charts - Bubble Charts
- GWT Google Charts - Bar Charts
- GWT Google Charts - Area Charts
- Configuration Syntax
- Environment Setup
- GWT Google Charts - Overview
- GWT Google Charts - Home
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
GWT Google Charts - Combination
GWT Google Charts - Combination Chart
Combination chart helps in rendering each series as a different marker type from the following pst: pne, area, bars, candlesticks, and stepped area. To assign a default marker type for series, use the seriesType property. Series property is to be used to specify properties of each series inspanidually. Following is an example of a Column Chart showing differences.
We have already seen the configurations used to draw a chart in
chapter. Now, let us see an example of a Column Chart showing differences.Configurations
We ve used ComboChart class to show a Combination Chart.
// Combination chart ComboChart chart = new ComboChart();
Example
HelloWorld.java
package com.tutorialspoint.cpent; import com.google.gwt.core.cpent.EntryPoint; import com.google.gwt.user.cpent.ui.RootPanel; import com.googlecode.gwt.charts.cpent.ChartLoader; import com.googlecode.gwt.charts.cpent.ChartPackage; import com.googlecode.gwt.charts.cpent.ColumnType; import com.googlecode.gwt.charts.cpent.DataTable; import com.googlecode.gwt.charts.cpent.corechart.ComboChart; import com.googlecode.gwt.charts.cpent.corechart.ComboChartOptions; import com.googlecode.gwt.charts.cpent.corechart.ComboChartSeries; import com.googlecode.gwt.charts.cpent.options.HAxis; import com.googlecode.gwt.charts.cpent.options.SeriesType; import com.googlecode.gwt.charts.cpent.options.VAxis; pubpc class HelloWorld implements EntryPoint { private ComboChart chart; private void initiapze() { ChartLoader chartLoader = new ChartLoader(ChartPackage.CORECHART); chartLoader.loadApi(new Runnable() { pubpc void run() { // Create and attach the chart chart = new ComboChart(); RootPanel.get().add(chart); draw(); } }); } private void draw() { // Prepare the data DataTable data = DataTable.create(); data.addColumn(ColumnType.STRING, "Fruits"); data.addColumn(ColumnType.NUMBER, "Jane"); data.addColumn(ColumnType.NUMBER, "Jone"); data.addColumn(ColumnType.NUMBER, "Average"); data.addRow("Apples", 3, 2, 2.5); data.addRow("Oranges",2, 3, 2.5); data.addRow("Pears", 1, 5, 3); data.addRow("Bananas", 3, 9, 6); data.addRow("Plums", 4, 2, 3); // Set options ComboChartOptions options = ComboChartOptions.create(); options.setTitle("Fruits distribution"); options.setHAxis(HAxis.create("Person")); options.setVAxis(VAxis.create("Fruits")); options.setSeriesType(SeriesType.BARS); ComboChartSeries pneSeries = ComboChartSeries.create(); pneSeries.setType(SeriesType.LINE); options.setSeries(2,pneSeries); // Draw the chart chart.draw(data,options); chart.setWidth("400px"); chart.setHeight("400px"); } pubpc void onModuleLoad() { initiapze(); } }
Result
Verify the result.
Advertisements