/
githubmirror
/
echarts
ОбзорДокументацияВойти
/
githubmirror
/
echarts
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
ДокументацияПоддержка
Политика конфиденциальностиПользовательское соглашениеПолитика использования «cookies»Согласие субъекта персональных данных
2026 ©
echarts/
.../runTest/actions/
..
__meta__.json

fixRegression: Fix #21586. (1). Remove some verbose and unnecessary code. (2). Remove the breaking change to `visualMap[type='continuous'].formatter: function () {}` - not necessary, and that breaking change can cause the existing lables display incorrectly when labels touch. (3). Switch to a more comprehensive implementation - adjust the positions of the two labels to avoid overlap. The previous approach (merging two labels) may occupy extra horizontal space and may unexpectedly cause overlap with other content. (4). Add visual test for `visualMap[type='continuous']`

2 месяца назад
allZero.json

test(visual): update fs-extra version

5 лет назад
appendData.json

test: fix some outdated recorded interaction

6 лет назад
appendData2.json

fix regression: Fix appendData broken by previous commits.

3 месяца назад
appendData3.json

fix regression: Fix appendData broken by previous commits.

3 месяца назад
area-large.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
area-stack.json

test(visual): fix replay of interactions.

7 лет назад
area2.json

test: upload part of action records files.

7 лет назад
aria-line-bar.json

test: upload part of action records files.

7 лет назад
aria-pie.json

refact: fix bugs caused by the refactor. export types

6 лет назад
axes.json

test: add alert if scroll changed during action recording

7 лет назад
axis-align-edge-cases.json

fix(alignTicks): Change alignTick strategy: (1) Previously some series data may be out of the calculated extent and can not be displayed. (2) Previously the precision is incorrect for small float number (fixed at 10 rather than based on the magnitude of the value). (3) Make the tick precision more acceptable when min/max of axis is fixed, and remove console warning, because whey can be specified when dataZoom dragging. (4) Clarify the related code for LogScale.

7 месяцев назад
axis-align-ticks.json

refactor(scale): For readability and maintainability (1) Migrate `calcNiceTicks` and `calcNiceExtent` from Scale class override member functions to plain functions, similar to `axisAlignTicks`. Previously it's hard to modify and error-prone. (2) Remove unnecessary override on Scale class hierarchy and limit override usage, which is difficult to understand and error-prone. (3) Simplify the inheritance - shift `LogScale` and `TimeScale` inheritance from `IntervalScale` to `Scale`. (4) Clarify the impl of `IntervalScale` - uniform the parameters setting entry for both "nice ticks" and "align ticks".

7 месяцев назад
axis-boundaryGap.json

test: upload part of action records files.

7 лет назад
axis-break-2.json

fix(test axis break): fix visual case (js error).

год назад
axis-break-3.json

(test) Fix axis break test cases.

год назад
axis-break-4.json

(test) Fix axis break test cases.

год назад
axis-break.json

(test) Fix axis break test cases.

год назад
axis-data-min-max.json

refactor&feature: (1) Uniform series data union logic; previous they are implemented in several inconsistent ways and error-prone. And also strict the extent calculation with uniformed utilities. (2) Refactor Scale - uniform the implementation of the numeric transformations (such as axis breaks, logarithm, ordinal related handling) with a decorator pattern and decouple them from Scale class hierarchy. This brings consistent handling for details and enables further extension. (3) Refactor Scale - decouple "axis nice" logic from Scale and make the "axis nice" and "axis align" implemented in the same code style. This removes override (hard to read and maintain), and uniforms the parameters of IntervalScale (previous its parameters can be generated by itself or outside, which is confusing), and reduce scale-type-specified handling (e.g., if (isLogScale) ...) in calculation. (4) Enable "value" axis and "log" axis to render "bar" and "pictorialBar" series without overflowing the axis. Previously only "time" axis enables that on only "bar" series. Introduce "SCALE_EXTENT_KIND_MAPPING" to cover this generalized behavior and use strict "clip" for bar series without extra margin (a previous compromise). And clarify `barGrid` code accordingly, which removes duplicated time-consuming calculation in "bandWidth" calculation. Close #19972. Close #17858. Close #12720. Close #13321. Close #20718. Close #20421. Close #20503.

6 месяцев назад
axis-dataset-null.json

fix(axis):null value item on category axis should be able to show tooltip

год назад
axis-extreme2.json

fix: (1) Fix time axis reach safeLimit when value scale is milisecond. (2) Fix regression - containShape should be word properly in single value case. And simply the code.

4 месяца назад
axis-filter-extent2.json

Fix and add test cases (introduced by preceding commits)

4 месяца назад
axis-interval.json

test: add test case for #11112

7 лет назад
axis-interval2.json

Fix category axis min/max ticks/labels show hide when interval > 0. Remove unnecessary code. Fix relevant TS.

5 месяцев назад
axis-lastLabel.json

fix: Fix min/max label show in category axis. Previously, axisLabel.showMinLabel/showMaxLabel did not control label and ticks on axis edges, but controls the filtered labels by axisLabel.interval settings. This impl did not align with the intent of that option.

5 месяцев назад
axis-layout-0.json

feat(grid layout): clarify code. tweak. add visual test case.

год назад
axis-minorTick.json

feat(axis): add minor ticks on polar. more test cases.

7 лет назад
axis-multiple.json

test: upload part of action records files.

7 лет назад
axis-style.json

test: upload part of action records files.

7 лет назад
axis.json

test: upload part of action records files.

7 лет назад
axisLabel.json

feat(axis): support tooltip for angleAxis label

год назад
axisPosition.json

test: upload part of action records files.

7 лет назад
bar-background.json

fix: bar background border radius. The original PR is #12331 fbe73ae This commit fixes: also update `r` when "update" rather than only in "add". Add more test cases.

6 лет назад
bar-datazoom-filtermode-none-time-axis.json

fix: (1) Fix: fix bar overflow issue on category axis with boundaryGap: false - use the newly added containShape handler. (2) Fix regression: Drop the previous containShape strategy on bar series, use a simple strategy for better compatibility. (3) Fix regression: Fix new added bar clip feature on single data item case. (4) Fix regression: Clarify code.

4 месяца назад
bar-label-rotation.json

test(visual): fix replay of interactions.

7 лет назад
bar-large.json

test(visual): fix replay of interactions.

7 лет назад
bar-overflow-plot2.json

fix: (1) Fix: fix bar overflow issue on category axis with boundaryGap: false - use the newly added containShape handler. (2) Fix regression: Drop the previous containShape strategy on bar series, use a simple strategy for better compatibility. (3) Fix regression: Fix new added bar clip feature on single data item case. (4) Fix regression: Clarify code.

4 месяца назад
bar-overflow-time-plot.json

test: upload part of action records files.

7 лет назад
bar-polar-animation.json

fix(polar): polar bar animation should start from r0 rather than 0

4 года назад
bar-polar-clockwise.json

test(polar): update test case

5 лет назад
bar-polar-multi-series-radial.json

Supplement tests and fix boxplot (broken by preceding commits)

4 месяца назад
bar-polar-multi-series.json

fix&feature: (1) feature: Add option boxplot.clip (2) feature: Enable boxplot and candlestick containShape for "value"/"time"/"log" axis, enable proper shadow axisPointer. (candlestick-case.html, boxplot-multi.html) (3) fix: Fix candlestick ends shapes can not be displayed on "value"/"time" axis. (candlestick-case.html) (4) fix: candlestick shape width is inappropriate when datazoom filterMode is 'none'/'empty'. (candlestick-case.html) (5) fix: In polar coordinate system, support "value"/"time" axis as angle/radius axis, enable propere bandWidth for bar series, enable proper shadow axisPointer. (bar-polar-multi-series-radial.html, bar-polar-multi-series.html)

5 месяцев назад
bar-polar-null-data-radial.json

test: upload part of action records files.

7 лет назад
bar-polar-stack.json

test: upload part of action records files.

7 лет назад
bar-race2.json

fix regression: (1) Revert the recent change to zlevelKey for backward compatibility. (2) Add guard to progressive block.

4 месяца назад
bar-stack.json

fix regression: Fix NPE and simplify code.

4 месяца назад
bar-start.json

test: upload part of action records files.

7 лет назад
bar-startValue.json

fix: Fix and clarify the definition of axis.`startValue`.

4 месяца назад
bar-stream-large1.json

fix: Fix issues in regression test.

4 месяца назад
bar-width.json

fix(bar): fix bar width calculation with barMaxWidth constraint and barGap -100% #7356

7 лет назад
bar.json

test(visual): fix replay of interactions.

7 лет назад
bar2.json

test: fix test cases

2 года назад
bar3.json

test: upload part of action records files.

7 лет назад
bmap.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
boxplot-multi.json

test: upload part of action records files.

7 лет назад
boxplot.json

test: upload part of action records files.

7 лет назад
brush.json

test: fix some outdated recorded interaction

6 лет назад
brush2.json

test: upload part of action records files.

7 лет назад
brush3.json

fix: the cover of the brush component should be able to roam with the coordinate system when using updateTransform. fix #11754.

7 лет назад
calendar-converter.json

test: upload part of action records files.

7 лет назад
calendar-heatmap.json

test: upload part of action records files.

7 лет назад
calendar-month.json

test: fix some outdated recorded interaction

6 лет назад
candlestick-case.json

fix&feature: (1) feature: Add option boxplot.clip (2) feature: Enable boxplot and candlestick containShape for "value"/"time"/"log" axis, enable proper shadow axisPointer. (candlestick-case.html, boxplot-multi.html) (3) fix: Fix candlestick ends shapes can not be displayed on "value"/"time" axis. (candlestick-case.html) (4) fix: candlestick shape width is inappropriate when datazoom filterMode is 'none'/'empty'. (candlestick-case.html) (5) fix: In polar coordinate system, support "value"/"time" axis as angle/radius axis, enable propere bandWidth for bar series, enable proper shadow axisPointer. (bar-polar-multi-series-radial.html, bar-polar-multi-series.html)

5 месяцев назад
candlestick-empty.json

test: upload part of action records files.

7 лет назад
candlestick-large.json

test: upload part of action records files.

7 лет назад
candlestick-large2.json

test: upload part of action records files.

7 лет назад
candlestick-large3.json

fix regression: Fix NPE and simplify code.

4 месяца назад
candlestick.json

test regression: fix recent broken.

4 месяца назад
candlestickConnect.json

test: upload part of action records files.

7 лет назад
chord.json

test(chord): add test visual actions

год назад
clip.json

test: fix some outdated recorded interaction

6 лет назад
clip2.json

test: add two new test cases for scatter clip on Cartesian 2D coordinate system.

3 года назад
coarse-pointer.json

test: add coarse-pointer in test env

4 года назад
color-mix-aqi.json

test: fix some outdated recorded interaction

6 лет назад
connect-dynamic.json

test: fix some outdated recorded interaction

6 лет назад
connect-manually.json

test: optimize ui

7 лет назад
connect.json

test: fix some outdated recorded interaction

6 лет назад
connect2.json

test: fix some outdated recorded interaction

6 лет назад
css-transform.json

test: add more recorded test actions. tweak some tests

7 лет назад
custom-bmap-grid.json

fix(custom): remove incremental el when switched back to normal.

5 лет назад
custom-children-remove.json

test: add more recorded test actions. tweak some tests

7 лет назад
custom-hexbin.json

test: fix some outdated recorded interaction

6 лет назад
custom-large.json

fix(custom): remove incremental el when switched back to normal.

5 лет назад
custom-shape-morphing.json

refact: move transition helpers to animation module

5 лет назад
custom-update.json

test(custom): update test case for custom update

4 года назад
custom.json

fix(custom): fix potential NPE when applying leave transition.

4 года назад
dataSelect.json

test: add more recorded interactions.

6 лет назад
dataZoom-action.json

test(dataZoom): fix test case -- accidentally broken in v6. And add more case for dataZoom edge cases.

7 месяцев назад
dataZoom-action2.json

fix: (1) Fix time axis reach safeLimit when value scale is milisecond. (2) Fix regression - containShape should be word properly in single value case. And simply the code.

4 месяца назад
dataZoom-axes.json

test: fix test cases

2 года назад
dataZoom-axis-type.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-clip.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-extreme.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-rainfall-connect.json

test: add apache license in the test files.

7 лет назад
dataZoom-rainfall-inside.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-rainfall.json

chore: upgrade zrender to latest nightly version

5 лет назад
dataZoom-scatter-category.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-scatter-hv-polar.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-scatter-hv.json

test: fix some outdated recorded interaction

6 лет назад
dataZoom-scroll.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
dataZoom-sync.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataZoom-toolbox.json

test: fix some outdated recorded interaction

6 лет назад
dataZoomHighPrecision.json

test: add more recorded test actions. tweak some tests

7 лет назад
dataset-case.json

**There are these issues existing before this commit:** (1). If no dimensions specified on dataset, series can not really share one storage instance. (Because the each series will create its own dimension name (like ['x', 'y', 'value'], ['x', 'value', 'y'], and the storage hash is based on those names. So the hash can not match). (2). Each time `setOption` update series (but not change `dataset`), new data stack dimensions (and corresponding chunks) will be keep added to the shared data storage, and then the chunks will be more and more. (3). When "unused dimension omit" happen, the index of SeriesData['dimensions'] and SeriesData['getDimension'] is not the dimensionIndex that users known. But there are someplace still use dimensionIndex to visit them. (especially in visualMap and other similar cases that user can input dimension index via option). (4). If user only specify type but no name in dimensions, their will be some bug when "unused dimension omit" happen. (Because unused dimensions will not auto-generate dimension name by `createDimensions` and so that it has no dimension name in storage, and can not be queried by dimension name). (5). If different series option specify its own `dimensions` but share one `dataset`, the `source` get by `sourceManager` is different `source` instances in each series. Those `source` instances contain different `dimensionDefine` but reference the same data. And then a data storage created by based on s

5 лет назад
decal.json

test: add more recorded interactions.

6 лет назад
drag-out.json

test: fix test cases

2 года назад
dynamic-splitNumber.json

test: add more recorded test actions. tweak some tests

7 лет назад
ec-event.json

test: add more recorded test actions. tweak some tests

7 лет назад
emphasis-disabled.json

feat(state): add emphasis.disabled

5 лет назад
emphasis-inherit.json

feat(pie):emphasis color inherit support

5 лет назад
emphasis-self.json

fix(emphasis): fix focus self not work when item emphasis by other component

3 года назад
funnel.json

test: add more recorded interactions.

6 лет назад
gauge-distance.json

support data[i].title/data[i].detail & add test

6 лет назад
gauge-group-title-detail.json

support data[i].title/data[i].detail & add test

6 лет назад
gauge-pointer.json

support data[i].title/data[i].detail & add test

6 лет назад
gauge-progress.json

support data[i].title/data[i].detail & add test

6 лет назад
gauge-simple.json

test(gauge): add visual test cases for gauge #10945

7 лет назад
gauge.json

support data[i].title/data[i].detail & add test

6 лет назад
geo-map-features.json

fix: map/geo label move when hover. fix #14796

5 лет назад
geo-map-roam.json

fix: (1) Fix geo roam (pan and zoom) causes visual artifacts -- geo coord sys and its content (e.g., scatter) should visually align during roaming animation and manual roam. (2) Refactor to uniform roaming impl (via RoamController and ViewCoordSys) and clarify `updateTransform` and related code. (3) Enable scatter and effectScatter clip in geo. (4) Fix aria: palette is modified to ec instance local rather than global, which is more reasonable. (5) Fix map series roaming bug: roam and then click legend hide the first series and then roam and then click legend to restore the first series, the map should not jump.

3 месяца назад
geo-map.json

fix(visualMap): fix the indicator doesn't show when hovering on map label.

4 года назад
geo-svg-demo.json

test: [geo svg] add visual test.

5 лет назад
geo-svg.json

test: [geo svg] add test case.

5 лет назад
geo-update.json

fix: (1) Fix geo roam (pan and zoom) causes visual artifacts -- geo coord sys and its content (e.g., scatter) should visually align during roaming animation and manual roam. (2) Refactor to uniform roaming impl (via RoamController and ViewCoordSys) and clarify `updateTransform` and related code. (3) Enable scatter and effectScatter clip in geo. (4) Fix aria: palette is modified to ec instance local rather than global, which is more reasonable. (5) Fix map series roaming bug: roam and then click legend hide the first series and then roam and then click legend to restore the first series, the map should not jump.

3 месяца назад
geoScatter.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
getOption.json

test: fix some outdated recorded interaction

6 лет назад
graph-case.json

fix(series): add non-null check for `seriesData.getLinkedData`.

2 года назад
graph-grid.json

test: add more recorded test actions. tweak some tests

7 лет назад
graph-simple.json

test: add more recorded test actions. tweak some tests

7 лет назад
graph-thumbnail.json

test(matrix): complete visual test for matrix.

год назад
graph.json

test: add more recorded test actions. tweak some tests

7 лет назад
graphic-animation-wave.json

test(graphic): add vrt recordings.

5 лет назад
graphic-animation.json

test(graphic): add vrt recordings.

5 лет назад
graphic-cases.json

fix(graphic): 1) fix some options may be unexpectedly reset when calling setOption. 2) fix group children can't be updated when calling setOption with no `type` option.

4 года назад
graphic-draggable.json

feat(graphic): add draggable support on group elements.

7 лет назад
graphic-transition.json

test(graphic): add vrt recordings.

5 лет назад
heatmap-gap-bug.json

fix(heatmap): add 0.5px to avoid the gaps in Cartesian 2D coordinate system when dpr is not an integer.

5 лет назад
heatmap-map.json

test: add more recorded test actions. tweak some tests

7 лет назад
heatmap.json

test: fix test cases

2 года назад
homepage3.json

test: fix some outdated recorded interaction

6 лет назад
hover-layer.json

Fix category axis min/max ticks/labels show hide when interval > 0. Remove unnecessary code. Fix relevant TS.

5 месяцев назад
hoverFocus.json

feat: add new visual testcases for hoverFocus.html

5 лет назад
hoverFocus2.json

fix: [blur] make API trigger emphasis blur correct (should leave blur firstly for other series).

5 лет назад
hoverStyle.json

test: fix some outdated recorded interaction

6 лет назад
hoverStyle2.json

fix: fix #11547 and add test cases.

7 лет назад
label-animation.json

fix: when label animation is not finished, start a new label animation, the label should not jump the the last final value.

6 лет назад
label-layout.json

fix: [map labelLayout] fix hideOverlap work correct in map series.

5 лет назад
label-position.json

test: add more recorded test actions. tweak some tests

7 лет назад
largeLine-tooltip.json

test: add more recorded test actions. tweak some tests

7 лет назад
legend-action.json

fix(legend): fix legend item is selected but corresponding series may not show after dispatching `legendAllSelect` action.

2 года назад
legend-visualMapColor.json

test(legend): add more test case for legend using visualMap encoded color.

7 лет назад
legend.json

test: fix some outdated recorded interaction

6 лет назад
line-animation-update.json

fix(line): fix animation is not stopped when direct update points.

5 лет назад
line-animation.json

test: add more recorded test actions. tweak some tests

7 лет назад
line-boldWhenHover.json

test: add more recorded interactions.

6 лет назад
line-case.json

fix(line): set default z/zlevel for temporary symbol to avoid warnings.

4 года назад
line-crash.json

fix(line): fix memory explosion issue with gradient, shadow and animation. #12229

6 лет назад
line-endLabel.json

fix: when label animation is not finished, start a new label animation, the label should not jump the the last final value.

6 лет назад
line-sampling.json

fix(line): ensure the correct order of indices, add test case. close #14689

4 года назад
line-visual2.json

test(states): add interaction for gradient emphasis

5 лет назад
line.json

test: add action recording for test of bug #9718

7 лет назад
lines-bus.json

test(lines): add test case for clearing lines.

5 лет назад
lines-symbolSize-update.json

fix(lines): symbolSize should be updated #18350

3 года назад
logScale.json

fix(logScale): (1) Thoroughly resolve a long-standing issue of non-positive data on LogScale - exclude non-positive series data items when calculate dataExtent on LogScale. (2) Include `Infinite` into `connectNulls` handling on line series; the `Infinite` value may be generated by `log(0)` and previously the corresponding effect in unpredictable on line series (sometimes display as connected but sometimes not).

7 месяцев назад
map-contour.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
map-default.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
map-labels.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
map-parallel.json

test: add more recorded test actions. tweak some tests

7 лет назад
map-province.json

test: add more recorded test actions. tweak some tests

7 лет назад
map.json

fix: (1) Fix geo roam (pan and zoom) causes visual artifacts -- geo coord sys and its content (e.g., scatter) should visually align during roaming animation and manual roam. (2) Refactor to uniform roaming impl (via RoamController and ViewCoordSys) and clarify `updateTransform` and related code. (3) Enable scatter and effectScatter clip in geo. (4) Fix aria: palette is modified to ec instance local rather than global, which is more reasonable. (5) Fix map series roaming bug: roam and then click legend hide the first series and then roam and then click legend to restore the first series, the map should not jump.

3 месяца назад
mapWorld.json

test: fix some outdated recorded interaction

6 лет назад
markArea.json

fix regression: fix test cases.

4 месяца назад
marker-case.json

fix(markLine): fix markLine label shows wrong tooltip content.

4 года назад
matrix2.json

test(matrix): (1) Migrate (split) test case from `matrix2.html` to `matrix4.html`, as the previous is too long to visual test regression. (2) Fix test case for coordClamp.

год назад
matrix3.json

test(matrix): complete visual test for matrix.

год назад
matrix4.json

test(matrix): (1) Migrate (split) test case from `matrix2.html` to `matrix4.html`, as the previous is too long to visual test regression. (2) Fix test case for coordClamp.

год назад
matrix_application.json

test(visual): fix test cases, add marks

год назад
matrix_application2.json

test(matrix): Add visual test (partial, not complete)

год назад
media-dataZoom.json

test: add more recorded test actions. tweak some tests

7 лет назад
media-finance.json

test: add more recorded test actions. tweak some tests

7 лет назад
media-pie.json

test: add more recorded test actions. tweak some tests

7 лет назад
min-max-function.json

test: add more recorded test actions. tweak some tests

7 лет назад
parallel-aqi.json

test: add more recorded test actions. tweak some tests

7 лет назад
parallel-nutrients.json

test: add more recorded test actions. tweak some tests

7 лет назад
pictorial-repeat.json

test: add more recorded test actions. tweak some tests

7 лет назад
pie-action.json

test: add more recorded test actions. tweak some tests

7 лет назад
pie-alignTo.json

test(pie): update test cases

7 лет назад
pie-animation.json

test(pie): add test case for switching between NaN value

5 лет назад
pie-calculable.json

test: fix some outdated recorded interaction

6 лет назад
pie-cornerRadius.json

test: tweak actions.

5 лет назад
pie-endAngle.json

fix(pie): fix `endAngle` is not applied on the empty circle

2 года назад
pie-label-extreme.json

test: add more recorded interactions.

6 лет назад
pie-label.json

fix(pie): fix `labelLine` may not be hidden when `minShowLabelRadian` is specified, resolves #17013.

4 года назад
pie-percent.json

fix(pie): fix percent isn't updated when the legend is changed

4 года назад
pie.json

test(pie): add a test case to cover #18412

3 года назад
polar-rounded.json

test(visual): fix replay of interactions.

7 лет назад
polarLine.json

test: add more recorded test actions. tweak some tests

7 лет назад
polarScatter.json

test: add more recorded test actions. tweak some tests

7 лет назад
polyline-gon-event.json

test(line): add VRT test case

9 месяцев назад
radar.json

fix(radar): improve logic and add test cases of #21081

год назад
radar2.json

test: add more recorded test actions. tweak some tests

7 лет назад
radar3.json

fix(radar): fix regression bug brought by branch merging. (#15985)

4 года назад
radar4.json

test: add more recorded test actions. tweak some tests

7 лет назад
resize-animation.json

feat(animation): add animaiton configuration in resize

5 лет назад
rich-inherit-plain-label.json

fix(rich-inherit-plain): fix and add test case.

год назад
roseType-labeline.json

test(labelLine): add test for #19180

3 года назад
sankey-depth.json

test: add more recorded test actions. tweak some tests

7 лет назад
sankey-emphasis-lineStyle.json

fix(sankey): fix other state color is 'target/source/gradient'

3 года назад
sankey-jump.json

test: add more recorded test actions. tweak some tests

7 лет назад
sankey-level.json

test: add more recorded test actions. tweak some tests

7 лет назад
scale-extreme-number.json

fix(scale): Fix that extreme small numbers can not be displayed in Cartesian due to the inappropriate rounding precision. Close #16266

год назад
scatter-jitter.json

fix(scatter): fix jitter layout does not support progressive rendering and causes chart to stuck and potential NPE

8 месяцев назад
scatter-random-stream-fix-axis.json

test: tweak some recorded interactions. try to fix puppeteer may trigger mouseout issue. add run timestamp

7 лет назад
scatter-random-stream.json

Supplement tests and fix boxplot (broken by preceding commits)

4 месяца назад
scatter-single-axis.json

fix: Fix issues in regression test.

4 месяца назад
scatter-stream-large.json

fix: (1) Fix geo roam (pan and zoom) causes visual artifacts -- geo coord sys and its content (e.g., scatter) should visually align during roaming animation and manual roam. (2) Refactor to uniform roaming impl (via RoamController and ViewCoordSys) and clarify `updateTransform` and related code. (3) Enable scatter and effectScatter clip in geo. (4) Fix aria: palette is modified to ec instance local rather than global, which is more reasonable. (5) Fix map series roaming bug: roam and then click legend hide the first series and then roam and then click legend to restore the first series, the map should not jump.

3 месяца назад
scatter-weibo.json

fix regression: bandWidth and containShape should properly handle single item and empty.

4 месяца назад
scatterMatrix.json

test: add more recorded test actions. tweak some tests

7 лет назад
series-omitUnusedDimensions.json

test(series):mismatched dimension index when canOmitUnusedDimensions is true

2 года назад
setOption.json

test: tweak test case title and add VRT action.

4 года назад
splitLine.json

fix(splitLine): fix chart throws errors when `radiusAxis.splitLine` is enabled.

4 года назад
stackBar-dataZoom.json

test: fix test cases

2 года назад
stream-basic2.json

Supplement tests and fix boxplot (broken by preceding commits)

4 месяца назад
stream-basic3.json

Supplement tests and fix boxplot (broken by preceding commits)

4 месяца назад
stream-basic4.json

Supplement tests and fix boxplot (broken by preceding commits)

4 месяца назад
stream-basic5.json

test: Add test util for canvas layer debug.

4 месяца назад
sunburst-book.json

test: add more recorded test actions. tweak some tests

7 лет назад
sunburst-canvas.json

test: add more recorded test actions. tweak some tests

7 лет назад
sunburst-label-rotate.json

fix(sunburst): normalize label rotation when decompress from matrix

3 года назад
svg-ssr.json

fix(ssr): fix label doesn't show in line series when `ssr` is enabled.`

4 года назад
symbol.json

test: fix test cases

2 года назад
symbol2.json

test: add more recorded test actions. tweak some tests

7 лет назад
themeRiver.json

test: add more recorded test actions. tweak some tests

7 лет назад
timeScale.json

test: add more recorded test actions. tweak some tests

7 лет назад
timeScale2.json

test: add more recorded test actions. tweak some tests

7 лет назад
timeline-case.json

fix(timeline): fix chart can't work when axis line is not shown.

4 года назад
toolbox-custom.json

fix regression: Fix NPE and simplify code.

4 месяца назад
toolbox-stack-custom.json

fix(toolbox) add visual test action file for the solution

6 лет назад
toolbox-textStyle.json

test: add more recorded test actions. tweak some tests

7 лет назад
toolbox-title.json

test(toolbox): add test case for #10951

7 лет назад
toolbox-tooltip.json

test: add more recorded test actions. tweak some tests

7 лет назад
tooltip-appendToBody.json

feature: support `tooltip.appendToBody`. Fix #8049. Based on the PR ecomfe/zrender#559 .

7 лет назад
tooltip-axisPointer.json

test: tweak some recorded interactions. try to fix puppeteer may trigger mouseout issue. add run timestamp

7 лет назад
tooltip-axisPointer2.json

feat(axisPointer): add option to disable emphasis. close #18495

3 года назад
tooltip-cascade.json

test: add more recorded test actions. tweak some tests

7 лет назад
tooltip-component.json

fix: make component tooltip.formatter do not inherit the global tooltip.formatter, but has component specific default tooltip.formatter.

5 лет назад
tooltip-displayTransition.json

test(tooltip): add test case for `displayTransition` option

год назад
tooltip-domnode.json

fix(tooltip): fix tooltip arrow may cover the content when border is wide.

4 года назад
tooltip-event.json

test: add more recorded test actions. tweak some tests

7 лет назад
tooltip-link.json

test: add more recorded test actions. tweak some tests

7 лет назад
tooltip-refresh.json

fix(tooltip): Changing tooltip config doesn't refresh the displayed tooltip

8 месяцев назад
tooltip-rich.json

test: add more recorded test actions. tweak some tests

7 лет назад
tooltip-setOption.json

test: tweak some recorded interactions. try to fix puppeteer may trigger mouseout issue. add run timestamp

7 лет назад
tooltip-valueFormatter.json

test(valueFormatter): add recorded user interaction

5 лет назад
tooltip.json

test(tooltip): update test case for tooltip xss

2 года назад
tree-image.json

test: add more recorded test actions. tweak some tests

7 лет назад
tree-legend.json

test: add more recorded test actions. tweak some tests

7 лет назад
tree-polyline.json

fix(tree): fix tree unexpected expand (#16548)

4 года назад
tree-radial.json

fix(tree): radial tree with single root doesn't work

4 года назад
treemap-action.json

fix: Enable treemap emphasis label formatter. Fix #11854. And add test cases. Note: the implementation of "insert levelModel" is modified from "Tree.getModel" to "beforeLink nodeData.wrapMethod('getItemModel', ...)", because the former one miss the case of `data.getItemModel`, which is needed in label formatter fetcher.

6 лет назад
treemap-disk.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
treemap-disk2.json

fix: enable `dispatchAction` highlight downplay for treemap. fix #9816.

7 лет назад
treemap-obama.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
treemap-option.json

test: add more recorded test actions. tweak some tests

7 лет назад
treemap-option2.json

test: recorded zoom action in related test cases. (#11291)

7 лет назад
treemap-scaleLimit.json

test(treemap): record test visual action for #18304

2 года назад
universalTransition.json

test(ut): ad style transition test case

5 лет назад
universalTransition2.json

more precise when determine if using id as key in universal transition (#15303)

5 лет назад
universalTransition3.json

test(ut): fixed animiation update duration

5 лет назад
update.js

test(visual): sort actions meta data by keys

7 лет назад
visualMap-categories.json

test: add more recorded test actions. tweak some tests

7 лет назад
visualMap-continuous.json

fixRegression: Fix #21586. (1). Remove some verbose and unnecessary code. (2). Remove the breaking change to `visualMap[type='continuous'].formatter: function () {}` - not necessary, and that breaking change can cause the existing lables display incorrectly when labels touch. (3). Switch to a more comprehensive implementation - adjust the positions of the two labels to avoid overlap. The previous approach (merging two labels) may occupy extra horizontal space and may unexpectedly cause overlap with other content. (4). Add visual test for `visualMap[type='continuous']`

2 месяца назад
visualMap-multi-continuous.json

fix(visualMap): fix continuous visualMap mouseover event not register except first countinous visualMap (#19097)

3 года назад
visualMap-selectMode.json

fix(visualMap): tweak #20551 & add VRT test

2 года назад