-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
165 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
19 changes: 19 additions & 0 deletions
19
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/chart/Polar.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package com.github.koooooo7.echarts4j.option.chart; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.fasterxml.jackson.annotation.JsonProperty; | ||
import com.github.koooooo7.echarts4j.type.FuncStr; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class Polar { | ||
private String id; | ||
@JsonProperty("zlevel") | ||
private Integer zLevel; | ||
private Integer z; | ||
private FuncStr center; | ||
private Object radius; | ||
} |
39 changes: 39 additions & 0 deletions
39
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/chart/RadiusAxis.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
package com.github.koooooo7.echarts4j.option.chart; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.github.koooooo7.echarts4j.option.embedded.NameTextStyle; | ||
import com.github.koooooo7.echarts4j.option.embedded.NameTruncate; | ||
import com.github.koooooo7.echarts4j.type.FuncStr; | ||
import com.github.koooooo7.echarts4j.util.annotation.EmbedScope; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
import lombok.experimental.SuperBuilder; | ||
|
||
import java.util.List; | ||
|
||
@Data | ||
@SuperBuilder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class RadiusAxis { | ||
private String id; | ||
private Integer polarIndex; | ||
private String type; | ||
private String name; | ||
private String nameLocation; | ||
private List<?> data; | ||
private NameTextStyle nameTextStyle; | ||
private NameTruncate nameTruncate; | ||
private Boolean inverse; | ||
private Object boundaryGap; | ||
private FuncStr min; | ||
private FuncStr max; | ||
private Boolean scale; | ||
private Integer splitNumber; | ||
private Integer minInterval; | ||
private Integer maxInterval; | ||
private Integer interval; | ||
private Integer logBase; | ||
private Boolean silent; | ||
private Boolean triggerEvent; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 changes: 11 additions & 0 deletions
11
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/AreaStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class AreaStyle { | ||
} |
11 changes: 11 additions & 0 deletions
11
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/ItemStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class ItemStyle { | ||
} |
11 changes: 11 additions & 0 deletions
11
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/Label.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class Label { | ||
} |
11 changes: 11 additions & 0 deletions
11
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/LineStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class LineStyle { | ||
} |
16 changes: 16 additions & 0 deletions
16
...4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/NameTextStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.github.koooooo7.echarts4j.option.chart.RadiusAxis; | ||
import com.github.koooooo7.echarts4j.option.chart.XAxis; | ||
import com.github.koooooo7.echarts4j.option.chart.YAxis; | ||
import com.github.koooooo7.echarts4j.util.annotation.EmbedScope; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
@EmbedScope({XAxis.class, YAxis.class, RadiusAxis.class}) | ||
public class NameTextStyle { | ||
} |
16 changes: 16 additions & 0 deletions
16
...s4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/NameTruncate.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import com.github.koooooo7.echarts4j.option.chart.RadiusAxis; | ||
import com.github.koooooo7.echarts4j.option.chart.XAxis; | ||
import com.github.koooooo7.echarts4j.option.chart.YAxis; | ||
import com.github.koooooo7.echarts4j.util.annotation.EmbedScope; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
@EmbedScope({XAxis.class, YAxis.class, RadiusAxis.class}) | ||
public class NameTruncate { | ||
} |
15 changes: 15 additions & 0 deletions
15
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/embedded/TextStyle.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
package com.github.koooooo7.echarts4j.option.embedded; | ||
|
||
import com.fasterxml.jackson.annotation.JsonInclude; | ||
import lombok.Builder; | ||
import lombok.Data; | ||
|
||
@Data | ||
@Builder | ||
@JsonInclude(JsonInclude.Include.NON_NULL) | ||
public class TextStyle { | ||
private String color; | ||
private String fontStyle; | ||
private String fontWeight; | ||
private Integer fontSize; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 0 additions & 4 deletions
4
...4j-project/src/main/java/com/github/koooooo7/echarts4j/option/series/embed/AreaStyle.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
...4j-project/src/main/java/com/github/koooooo7/echarts4j/option/series/embed/ItemStyle.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
echarts4j-project/src/main/java/com/github/koooooo7/echarts4j/option/series/embed/Label.java
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
...4j-project/src/main/java/com/github/koooooo7/echarts4j/option/series/embed/LineStyle.java
This file was deleted.
Oops, something went wrong.