Class SOChart

java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.littemplate.LitTemplate
All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier, com.vaadin.flow.component.DetachNotifier, com.vaadin.flow.component.HasElement, com.vaadin.flow.component.HasSize, com.vaadin.flow.component.HasStyle, com.vaadin.flow.internal.Template, Serializable

@NpmPackage(value="echarts", version="5.6.0") @Tag("so-chart") @JsModule("./so/chart/chart.js") public class SOChart extends LitComponentWithSize

Chart is a Vaadin Component so that you can add it to any layout component for displaying it. It is a LitComponent wrapper around the "echarts" library.

Chart is composed of one more chart Components and each chart Component may have zero or more ComponentParts. Examples of chart Components are (a) Chart, (b) RectangularCoordinate, (c) PolarCoordinate etc. An example of a ComponentPart is AngleAxis that is used by the PolarCoordinate.

Typical usage of the SOChart is to new it and add it to some layout for displaying it. Any Component that is added to the Chart will be displayed. For example, you can create a PieChart and add it to the SOChart using add(Component...).

     SOChart soChart = new SOChart();
     soChart.setSize("600px", "400px");
     CategoryData labels = new CategoryData("Banana", "Apple", "Orange", "Grapes");
     Data data = new Data(25, 40, 20, 30);
     soChart.add(new PieChart(labels, data));
     myLayout.add(soChart);
 
Author:
Syam
See Also: