Skip to content
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev xxc script #5

Merged
merged 7 commits into from Dec 14, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -22,7 +22,7 @@ ECharts Java is a library for Java developers to use JavaScript visualization li
- [ ] [Large Scale Area Chart](https://echarts.apache.org/examples/en/editor.html?c=area-simple)
- [ ] ~~[Confidence Band](https://echarts.apache.org/examples/en/editor.html?c=confidence-band)~~
- [ ] [Rainfall vs Evaporation (Line)](https://echarts.apache.org/examples/en/editor.html?c=grid-multiple)
- [ ] [Beijing AQI](https://echarts.apache.org/examples/en/editor.html?c=line-aqi)
- [x] [Beijing AQI](https://echarts.apache.org/examples/en/editor.html?c=line-aqi)
- [ ] ~~[Multiple X Axes](https://echarts.apache.org/examples/en/editor.html?c=multiple-x-axis)~~
- [ ] [Rainfall](https://echarts.apache.org/examples/en/editor.html?c=area-rainfall)
- [ ] [Area Chart with Time Axis](https://echarts.apache.org/examples/en/editor.html?c=area-time-axis)
Expand Down Expand Up @@ -54,7 +54,7 @@ ECharts Java is a library for Java developers to use JavaScript visualization li
- [ ] [Bar Chart with Negative Value](https://echarts.apache.org/examples/en/editor.html?c=bar-negative2)
- [ ] [Radial Polar Bar Label Position](https://echarts.apache.org/examples/en/editor.html?c=bar-polar-label-radial)
- [ ] [Tangential Polar Bar Label Position](https://echarts.apache.org/examples/en/editor.html?c=bar-polar-label-tangential)
- [ ] [World Population](https://echarts.apache.org/examples/en/editor.html?c=bar-y-category)
- [x] [World Population](https://echarts.apache.org/examples/en/editor.html?c=bar-y-category)
- [ ] ~~[Clickable Column Chart with Gradient](https://echarts.apache.org/examples/en/editor.html?c=bar-gradient)~~
- [ ] ~~[Bar Label Rotation](https://echarts.apache.org/examples/en/editor.html?c=bar-label-rotation)~~
- [ ] [Stacked Column Chart](https://echarts.apache.org/examples/en/editor.html?c=bar-stack)
Expand Down
@@ -0,0 +1,7 @@
{
"name": "ContinousVisualMap",
"type": "class",
"implements": [
"ContinousVisualMapOption"
]
}
7 changes: 7 additions & 0 deletions scripts/config/org/icepear/echarts/component/data-zoom.json
@@ -0,0 +1,7 @@
{
"name": "DataZoom",
"type": "class",
"implements": [
"DataZoomOption"
]
}
@@ -0,0 +1,7 @@
{
"name": "PiecewiseVisualMap",
"type": "class",
"implements": [
"PiecewiseVisualMapOption"
]
}
@@ -0,0 +1,7 @@
{
"name": "VisualPiece",
"type": "class",
"implements": [
"VisualPieceOption"
]
}
@@ -0,0 +1,178 @@
{
"name": "DataZoomOption",
"type": "interface",
"extends": [
"ComponentOption"
],
"fields": [
{
"name": "mainType",
"types": [
"String"
]
},
{
"name": "orient",
"types": [
"LayoutOrient"
]
},
{
"name": "xAxisIndex",
"types": [
"Number",
"Number[]"
]
},
{
"name": "xAxisId",
"types": [
"String[]",
"String"
]
},
{
"name": "yAxisIndex",
"types": [
"Number",
"Number[]"
]
},
{
"name": "yAxisId",
"types": [
"String[]",
"String"
]
},
{
"name": "radiusAxisIndex",
"types": [
"Number",
"Number[]"
]
},
{
"name": "radiusAxisId",
"types": [
"String[]",
"String"
]
},
{
"name": "angleAxisIndex",
"types": [
"Number",
"Number[]"
]
},
{
"name": "angleAxisId",
"types": [
"String[]",
"String"
]
},
{
"name": "singleAxisIndex",
"types": [
"Number",
"Number[]"
]
},
{
"name": "singleAxisId",
"types": [
"String[]",
"String"
]
},
{
"name": "filterMode",
"types": [
"String"
]
},
{
"name": "throttle",
"types": [
"null",
"Number",
"undefined"
]
},
{
"name": "start",
"types": [
"Number"
]
},
{
"name": "end",
"types": [
"Number"
]
},
{
"name": "startValue",
"types": [
"String",
"Number",
"Date"
]
},
{
"name": "endValue",
"types": [
"String",
"Number",
"Date"
]
},
{
"name": "minSpan",
"types": [
"Number"
]
},
{
"name": "maxSpan",
"types": [
"Number"
]
},
{
"name": "minValueSpan",
"types": [
"Number"
]
},
{
"name": "maxValueSpan",
"types": [
"Number"
]
},
{
"name": "rangeMode",
"types": [
"String[]"
]
},
{
"name": "realtime",
"types": [
"Boolean"
]
},
{
"name": "textStyle",
"types": [
"LabelOption"
]
}
],
"comments": [
"https://github.com/apache/echarts/blob/4569dc1d8b712dafb80b16e31c4fed0118e3acbd/src/component/dataZoom/DataZoomModel.ts#L38"
]
}
@@ -0,0 +1,63 @@
{
"name": "ContinousVisualMapOption",
"type": "interface",
"extends": ["VisualMapOption"],
"fields": [
{
"name": "align",
"types": ["String"]
},
{
"name": "calculable",
"types": ["Boolean"]
},
{
"name": "range",
"types": ["Number[]"]
},
{
"name": "hoverLink",
"types": ["Boolean"]
},
{
"name": "hoverLinkDataSize",
"types": ["Number"]
},
{
"name": "hoverLinkOnHandle",
"types": ["Boolean"]
},
{
"name": "handleIcon",
"types": ["String"]
},
{
"name": "handleSize",
"types": ["String", "Number"]
},
{
"name": "handleStyle",
"types": ["ItemStyleOption"]
},
{
"name": "indicatorIcon",
"types": ["String"]
},
{
"name": "indicatorSize",
"types": ["String", "Number"]
},
{
"name": "indicatorStyle",
"types": ["ItemStyleOption"]
},
{
"name": "emphasis",
"types": ["Object"]
}
],
"comments": [
"https://github.com/apache/echarts/blob/790687df55a5dbe286e52cf182c0983938efd367/src/component/visualMap/ContinuousModel.ts#L36"
]
}

@@ -0,0 +1,96 @@
{
"name": "PiecewiseVisualMapOption",
"type": "interface",
"extends": [
"VisualMapOption"
],
"fields": [
{
"name": "align",
"types": [
"String"
]
},
{
"name": "minOpen",
"types": [
"Boolean"
]
},
{
"name": "maxOpen",
"types": [
"Boolean"
]
},
{
"name": "itemWidth",
"types": [
"Number"
]
},
{
"name": "itemHeight",
"types": [
"Number"
]
},
{
"name": "itemSymbol",
"types": [
"String"
]
},
{
"name": "pieces",
"types": [
"VisualPiece[]"
]
},
{
"name": "categories",
"types": [
"String[]"
]
},
{
"name": "splitNumber",
"types": [
"Number"
]
},
{
"name": "selected",
"types": [
"Dictionary"
]
},
{
"name": "selectedMode",
"types": [
"String"
]
},
{
"name": "showLabel",
"types": [
"Boolean"
]
},
{
"name": "itemGap",
"types": [
"Number"
]
},
{
"name": "hoverLink",
"types": [
"Boolean"
]
}
],
"comments": [
"https://github.com/apache/echarts/blob/0114414eed6d0f9d1bb951459517e21ae557989f/src/component/visualMap/PiecewiseModel.ts#L70"
]
}