Donut Chart

Overview

A donut chart is a circle diagram with an empty area in the middle. The chart displays data series As a circle with data points visualized as the slices of a circle. The length of each slice is determined by calculating their proportion to the entire circle. The color of circle slices is automatically determined, but you can also specify them. Each circle slice is displayed separately on the legend, providing information to the user about the chart’s data categories. Slices are automatically displayed in percentage (meaning what percentage of the entire circle they represent).

Customization

You can modify if the actual data values, a percentage or no labels should be displayed on the slice. Slice thickness is automatically calculated, but you can also modify it. As mentioned, the colors of the chart are automatically determined, but you can specify them.

Features

Lasso Brush Zoom Dot Tooltip Line Tooltip Simple Tooltip Custom Tooltip Click event
DonutChart error.svg error.svg error.svg Check error.svg error.svg Check Check

Example

Creating a simple Donut Chart
 
1
import com.jbstrap.ui.components.layout.Container;
2
3
@Public
4
public class CreateDonutChart extends BasePage {
5
6
    @Override
7
    public void build() {
8
        // Chart creation
9
        final ChartCanvas chartCanvas = new ChartCanvas();
10
        // DonutChart creation with dataDescriptor and category columnName
11
        final DonutChart donutChart = new DonutChart("firstChart", JBStrap.getDataDescriptor("dummyChartDD"), "category");
12
        // Series creation with data columnName
13
        final Series series =  new Series("First Donut chart", "data");
14
15
16
        // Add series to donutChart
17
        donutChart.setSeries(series);
18
        // Add donutChart to chartCanvas
19
        chartCanvas.addChart(donutChart);
20
21
22
        final Card comment = new Card().addComponent(new Paragraph("Creating a Chart Canvas and a simple Donut Chart on it."));
23
 
24
        final Container mapContainer = new Container().setHeight75().addStyleClass("mt-3").addComponent(chartCanvas);
25
        final Container commentContainer = new Container().setHeight25().addComponent(comment);
26
 
27
        addComponents(mapContainer, commentContainer);
28
29
    }
30
31
}

Related pages