Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Update config and correspondin class#96

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to ourterms of service andprivacy statement. We’ll occasionally send you account related emails.

Already on GitHub?Sign in to your account

Merged
icepear-jzx merged 3 commits intomasterfromconfig-update
May 5, 2025
Merged
Show file tree
Hide file tree
Changes fromall commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,12 +7,17 @@
"name":"dimension",
"types": ["String"]
},
{
"name":"order",
"types": ["String"]
},
{
"name":"value",
"types": ["Number","String","Date"]
}
],
"comments": [
"https://echarts.apache.org/examples/en/editor.html?c=data-transform-multiple-pie"
"https://echarts.apache.org/examples/en/editor.html?c=data-transform-multiple-pie",
"https://echarts.apache.org/examples/en/editor.html?c=data-transform-sort-bar"
]
}
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -17,11 +17,11 @@ public class DataTransformConfig implements DataTransformConfigOption, Serializa

private String dimension;

private String order;

@Setter(AccessLevel.NONE)
private Object value;

private String order;

public DataTransformConfig setValue(Number value) {
this.value = value;
return this;
Expand Down
View file
Open in desktop
Original file line numberDiff line numberDiff line change
Expand Up@@ -2,16 +2,17 @@

/**
* https://echarts.apache.org/examples/en/editor.html?c=data-transform-multiple-pie
* https://echarts.apache.org/examples/en/editor.html?c=data-transform-sort-bar
*/
public interface DataTransformConfigOption {

DataTransformConfigOption setDimension(String dimension);

DataTransformConfigOption setOrder(String order);

DataTransformConfigOption setValue(Number value);

DataTransformConfigOption setValue(Object value);

DataTransformConfigOption setValue(String value);

DataTransformConfigOption setOrder(String order);
}

[8]ページ先頭

©2009-2025 Movatter.jp