Class SOChart
- 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
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 Component
s and each chart Component
may have zero or more
ComponentPart
s. Examples of chart Component
s 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:
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Add components to the chart.void
add
(ComponentGroup... componentGroups) Add component groups.protected void
addCustomEncoding
(ComponentPart componentPart, StringBuilder buffer) This method is invoked after rendering eachComponentPart
.protected void
addCustomEncoding
(Class<? extends ComponentPart> componentPartClass, StringBuilder buffer) This method is invoked after rendering eachComponentPart
type so that you can add more such components.void
addData
(AbstractDataProvider<?> data) Add data to the chart.void
clear()
Clear the chart.protected String
customizeDataJSON
(String json, AbstractDataProvider<?> data) This method is invoked just before the JSON string that is being constructed to send data to the client.protected String
customizeJSON
(String json) This method is invoked just before the JSON string that is being constructed in theupdate()
method is sent to the client.void
Legends will be shown by default.void
A tooltip will be shown by default.static Color
getDefaultColor
(int index) Get the default color used by the chart component.Get the list of default colors.Get the default legend.Get the default text style.Get the default tooltip.protected void
onAttach
(com.vaadin.flow.component.AttachEvent attachEvent) void
Remove components from the chart.void
remove
(ComponentGroup... componentGroups) Remove component groups.void
Remove all components from the chart.void
removeData
(AbstractDataProvider<?> data) Remove extra data added viaaddData(AbstractDataProvider)
.void
Set the dark theme.void
setDefaultBackground
(Color background) Set the default background color.void
setLanguage
(Language language) Set language.void
Switch on SVG rendering instead of canvas rendering.void
update()
Update the chart display with current set of components.void
update
(boolean skipData) This method is same asupdate()
but based on the parameter passed, no data may be passed to the client-side.void
updateData
(AbstractDataProvider<?>... data) Update the chart with modified data from the data provider.void
updateData
(HasData... dataOwners) Update the chart with modified data from the data providers of a given set of data owners.Methods inherited from class com.storedobject.helper.LitComponentWithSize
setHeight, setMaxHeight, setMaxWidth, setMinHeight, setMinWidth, setSize, setWidth
Methods inherited from class com.storedobject.helper.LitComponent
executeJS, onDetach
Methods inherited from class com.vaadin.flow.component.littemplate.LitTemplate
getChildren
Methods inherited from class com.vaadin.flow.component.Component
addListener, findAncestor, fireEvent, from, get, getElement, getEventBus, getId, getListeners, getLocale, getParent, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getTranslation, getUI, hasListener, isAttached, isTemplateMapped, isVisible, onEnabledStateChanged, removeFromParent, scrollIntoView, scrollIntoView, set, setElement, setId, setVisible
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface com.vaadin.flow.component.AttachNotifier
addAttachListener
Methods inherited from interface com.vaadin.flow.component.DetachNotifier
addDetachListener
Methods inherited from interface com.vaadin.flow.component.HasElement
getElement
Methods inherited from interface com.vaadin.flow.component.HasSize
getHeight, getHeightUnit, getMaxHeight, getMaxWidth, getMinHeight, getMinWidth, getWidth, getWidthUnit, setHeight, setHeightFull, setMaxHeight, setMaxWidth, setMinHeight, setMinWidth, setSizeFull, setSizeUndefined, setWidth, setWidthFull
Methods inherited from interface com.vaadin.flow.component.HasStyle
addClassName, addClassNames, getClassName, getClassNames, getStyle, hasClassName, removeClassName, removeClassNames, setClassName, setClassName
-
Constructor Details
-
SOChart
public SOChart()Constructor.
-
-
Method Details
-
onAttach
protected void onAttach(com.vaadin.flow.component.AttachEvent attachEvent) - Overrides:
onAttach
in classcom.vaadin.flow.component.Component
-
getDefaultColors
Get the list of default colors. A list is returned, and you may add any number of colors to that list. Those colors will be used sequentially and circularly. However, please note that if the list contains less than 11 colors, more colors will be added to it automatically from the following to make the count 11:
['#0000ff', '#c23531', '#2f4554', '#61a0a8', '#d48265', '#91c7ae', '#749f83', '#ca8622', '#bda29a', '#6e7074', '#546570', '#c4ccd3']- Returns:
- List of default colors.
-
setDefaultBackground
Set the default background color.- Parameters:
background
- Background color.
-
getDefaultTextStyle
Get the default text style. You may invoke this method and override default values if required. However, please note that setting padding, border (not text border) and alignment properties do not have any effect.- Returns:
- Default text style.
-
disableDefaultTooltip
public void disableDefaultTooltip()A tooltip will be shown by default. However, you can either disable it using this method or you can create your own customized tooltips and add it usingadd(Component...)
. -
getDefaultTooltip
Get the default tooltip. You can customize it.- Returns:
- THe default tooltip. Will return null if it was disabled via
disableDefaultTooltip()
.
-
disableDefaultLegend
public void disableDefaultLegend()Legends will be shown by default. However, you can either disable it using this method or you can create your own customized legends and add it usingadd(Component...)
. -
getDefaultLegend
Get the default legend. You can customize it.- Returns:
- THe default legend. Will return null if it was disabled via
disableDefaultLegend()
.
-
setDarkTheme
public void setDarkTheme()Set the dark theme. -
setSVGRendering
public void setSVGRendering()Switch on SVG rendering instead of canvas rendering. -
setLanguage
-
addData
-
removeData
Remove extra data added viaaddData(AbstractDataProvider)
.- Parameters:
data
- Data to remove.
-
add
Add component groups.- Parameters:
componentGroups
- Component groups to add.
-
remove
Remove component groups.- Parameters:
componentGroups
- Component groups to remove.
-
add
-
remove
-
removeAll
-
clear
public void clear()Clear the chart. This will remove the chart display. However, it can be rendered again by invokingupdate()
as long asremoveAll()
is not called. -
update
Update the chart display with current set of components.ComponentPart.validate()
method of each component will be invoked before updating the chart display. The chart display may be already there and only the changes and additions will be updated. If a completely new display is required,clear()
should be invoked before this. (Please note that an "update" will automatically happen when aSOChart
is added to its parent layout for the first time).Note: If this is not the first update, data changes will not be transmitted to the client. So, if you really want to update the whole data too, you should use the
update(boolean)
method with the parameter set tofalse
. However, it better to transmit data separately via one of the data update methods (updateData(AbstractDataProvider...)
andupdateData(HasData...)
) or use theDataChannel
for updating data once the first rendering was already done.- Throws:
ChartException
- When any of the component is not valid.Exception
- If the JSON customizer raises any exception.
-
update
This method is same as
update()
but based on the parameter passed, no data may be passed to the client-side. So, it is useful only if it is a partial update. Old set of data passed will be used for the display changes if parameter istrue
.Why this method is required? If the data set is huge, it will be accountable for the majority of the communication overhead, and it will be useful if we can update the display with other changes if no data is changed.
Even after eliminating the overhead of data, we can eliminate other components that are not changed via the method
remove(Component...)
.- Parameters:
skipData
- Skip data or not. This parameter will be ignored if this is the first-time update. However, any data that was never sent to the client will be sent anyway.- Throws:
ChartException
- When any of the component is not valid.Exception
- If the JSON customizer raises any exception.
-
addCustomEncoding
protected void addCustomEncoding(Class<? extends ComponentPart> componentPartClass, StringBuilder buffer) This method is invoked after rendering eachComponentPart
type so that you can add more such components.Note: Please note that if you are adding any custom code, it should merge properly to the already generated part in the buffer. You may use
customizeJSON(String)
to check the final outcome.Warning: If you add custom code vis this mechanism, it may not be compatible with the future releases because the functionality you add via this mechanism may be supported directly in the future releases.
- Parameters:
componentPartClass
- The component part class that is currently added. You may add more of these.buffer
- The buffer that contains the code that is already generated.
-
addCustomEncoding
This method is invoked after rendering eachComponentPart
. You can add custom code into the buffer that already contains the encoding for the part. Also, you can add at the root-level (not related to any particularComponentPart
). For this, this method is invoked with the component part parameter set to null.Note: Please note that if you are adding any custom code, it should merge properly to the already generated part in the buffer. You may use
customizeJSON(String)
to check the final outcome.Warning: If you add custom code vis this mechanism, it may not be compatible with the future releases because the functionality you add via this mechanism may be supported directly in the future releases.
- Parameters:
componentPart
- The component part to which custom code can be added. If this is null, then code added will go to the root-level.buffer
- The buffer that contains the code that is already generated.
-
customizeJSON
This method is invoked just before the JSON string that is being constructed in theupdate()
method is sent to the client. The returned value by this method will be sent to the "echarts" instance at the client-side. The default implementation just returns the same string. However, if someone wants to do some cutting-edge customization, this method can be used. This JSON string is used to construct the "option" parameter for the "echarts.setOption(option)" JavaScript method. -
customizeDataJSON
This method is invoked just before the JSON string that is being constructed to send data to the client. The returned value by this method will be sent to the "echarts" instance at the client-side. The default implementation just returns the same string. However, if someone wants to do some cutting-edge customization, this method can be used. -
updateData
Update the chart with modified data from the data provider.- Parameters:
data
- Data to be updated.- Throws:
Exception
- if custom error is raised bycustomizeDataJSON(String, AbstractDataProvider)
.
-
updateData
Update the chart with modified data from the data providers of a given set of data owners.- Parameters:
dataOwners
- Data owners whose data to be updated.- Throws:
Exception
- if custom error is raised bycustomizeDataJSON(String, AbstractDataProvider)
.
-
getDefaultColor
Get the default color used by the chart component.- Parameters:
index
- Index of the color.- Returns:
- Color.
-