Migrating from earlier versions
Charts 9 comes with new chart types and brings back the API to style from Java.
Summary
Upgraded to HighCharts 8.1
Styling can be done either with CSS or Java API (default)
New chart types:
Java API for lazy drilldown
Migration guide
If you are migrating your project to platform V17, there might be different approaches related with which styling option you will pick.
Caution | Both CSS and Java styling cannot be used in the same project
While no error is thrown if different styling methods are used in the same project, only one method should be used across all charts, since having both could lead to unexpected results.
|
From a V8 or older project
Using Java API styling
Since V17 uses Java API for styling by default, there’s no needed to do any extra step.
Note | There might be small changes for APIs that no longer work between the Highcharts versions used for V8 and V17. |
Using CSS styling
If you want to convert your project to use CSS styling, enable it by setting styledMode
to true
:
Chart chart = new Chart();
Configuration conf = chart.getConfiguration();
conf.getChart().setStyledMode(true);
For more detailed instructions, please check the "CSS Styling guide"
From a V10+ project
Running Charts 9 in V14
While Charts 9 is released for V17, a project running V14 in npm mode could use the new Charts by overriding the version at the project’s POM file:
<dependency>
<groupId>com.vaadin</groupId>
<artifactId>vaadin-charts-flow</artifactId>
<version>9.0.0</version>
</dependency>
Note | Check the latest version on the Charts release page. |
Then, to start using it, check the From a V10+ project instructions presented on this page.
CA191212-B228-4F07-9F40-BC0C68F84FA0