Skip to main content
Version: 6.5

Charts

Every Charba chart has got a common structure to define own configuration.

There 3 main sections:

  1. Type which represents the chart type. See Type and ChartType enumeration, with all available chart types out of the box. By controllers, you can create own charts and different types.
  2. Data which must be showed by the chart. See Data and the data section for details.
  3. Options which represents a set of options to configure the chart. See Options.

Usage

A Charba chart extends always AbstractChart which wraps a DOM DIV element and implements IsChart interface which is passed to callbacks, events handlers, plugins and all other customization items.

Programmatically, you could use a chart as following:

...
// example for a line chart
LineChart chart = new LineChart();
component.add(chart);
...
// example for Elemental2
Element element = chart.getChartElement().as();
DomGlobal.document.body.appendChild(element);

Usage by widget (only GWT artifact)

A Charba chart widget for GWT extends always AbstractChartWidget which is a GWT SimplePanel and implements IsChart interface which is passed to callbacks, events handlers, plugins and all other customization items.

The charts can be implemented leveraging on UIBinder feature of GWT or also programmatically.

Using as example a Line chart, here is an example how to include it in the a UIBinder file (be sure to have in the your classpath the charba-[version.release]-gwt.jar file):

<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
xmlns:g="urn:import:com.google.gwt.user.client.ui"
xmlns:c="urn:import:org.pepstock.charba.client.gwt.widgets">

<g:HTMLPanel width="100%">
....
<c:LineChartWidget ui:field="chart"/>
...
</g:HTMLPanel>
</ui:UiBinder>

Into GWT component related to UIbinder definition, we could reference it as following:

   ...
@UiField
LineChartWidget chart;
...

In the java constructor of widget, you can set all options and datasets definitions needed for your project.

Programmatically, you could implement a chart as following:

   ...
LineChartWidget chart = new LineChartWidget();
component.add(chart);
...

Data

The Data contains the datasets with data and configuration how data should be showed and the labels for each dataset and data.

// creates the chart    
BarChart chart = new BarChart();
// creates the dataset
BarDataset dataset = chart.newDataset();
// sets labels of the data
chart.getData().setLabels("January", "February", "March", "April");
// sets the dataset to the chart
chart.getData().setDatasets(dataset);

The following are the attributes that you can set:

NameDefaultsDescription
labelsString[] - LabelsThe labels to display.
datasetsDataset[]The datasets of the chart.