Skip to content

Commit

Permalink
update: readme and description
Browse files Browse the repository at this point in the history
  • Loading branch information
Koooooo-7 committed Jul 11, 2024
1 parent bd5e479 commit f2e5904
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ dependencies {
* Strong Extensibility.
* Live update support for displaying (see [echarts4j-chart-server](./echarts4j-chart-server/README.md)).
* Snapshot for image render (see [echarts4j-snapshot-playwright](./echarts4j-snapshot-playwright/README.md)).
* And more
* And more.

### 🎨 Showcase

Expand Down Expand Up @@ -228,11 +228,11 @@ the [JavaDoc](https://javadoc.jitpack.io/com/github/koooooo-7/echarts4j/echarts4
.build())
.yAxis(YAxis.builder().build())
.build()
.addSeries(ListChartSeriesOption.builder()
.addSeries(ListChartSeries.builder()
.name(seriesName)
.data(data1)
.build())
.addSeries(BarChartSeriesOption.builder()
.addSeries(BarChartSeries.builder()
.name(seriesName2)
.data(data2)
.build())
Expand Down Expand Up @@ -294,7 +294,7 @@ the [JavaDoc](https://javadoc.jitpack.io/com/github/koooooo-7/echarts4j/echarts4
.data(legendData)
.build())
.build()
.addSeries(PieChartSeriesOption.builder()
.addSeries(PieChartSeries.builder()
.name(seriesName)
.radius("55%")
.center(center)
Expand Down
6 changes: 3 additions & 3 deletions README_ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,11 +210,11 @@ dependencies {
.build())
.yAxis(YAxis.builder().build())
.build()
.addSeries(ListChartSeriesOption.builder()
.addSeries(ListChartSeries.builder()
.name(seriesName)
.data(data1)
.build())
.addSeries(BarChartSeriesOption.builder()
.addSeries(BarChartSeries.builder()
.name(seriesName2)
.data(data2)
.build())
Expand Down Expand Up @@ -276,7 +276,7 @@ dependencies {
.data(legendData)
.build())
.build()
.addSeries(PieChartSeriesOption.builder()
.addSeries(PieChartSeries.builder()
.name(seriesName)
.radius("55%")
.center(center)
Expand Down
1 change: 1 addition & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

version project.echarts4jVersion
description ':doughnut: An inevitable charts library for Java.'

allprojects {
group 'com.github.koooooo7.echarts4j'
Expand Down

0 comments on commit f2e5904

Please sign in to comment.