Zhongxiang Wang

Results 164 comments of Zhongxiang Wang

错乱指的是哪里?能在图中标出来吗?给的示例有点内容繁杂。

Hello @mourner, the first test case was done with @Falke-Design's help in #8794. I'm unfamiliar with the test tool, so I'm sorry I can't give some useful ideas on improving...

You may get such information via some internal APIs. Just FYI. **Grid** ```js // if there are multiple grids, use `getComponent('grid', gridIndex)` const gridRect = chart.getModel().getComponent('grid').coordinateSystem.getRect(); ``` **Axis** ```js //...

@RavalikaP It's similar to the above. ```js const legendModel = chart.getModel().getComponent('legend'); const legendView = chart.getViewOfComponentModel(legendModel); const legendRect = legendView.group.getBoundingRect(); const [x, y] = legendView.group.transformCoordToGlobal(legendRect.x, legendRect.y); const { width, height }...

是黑色还是透明?如果想要有背景色,可以指定下 `backgroundColor`。试了下最新版本没有问题,4.8 可以考虑手动设置一下背景色。

Just as I said before, you still can get the elements via internal APIs. ```js // get the series model const model = myChart.getModel().getSeriesByIndex(0); // `getSeriesByType`/`getSeriesByName` is available // get...

Looks like a possible enhancement of the accessibility. Perhaps, we can take it a try in the future.

I'm afraid there is no certain time or plan for now. But we will take it into account in next versions.

暂时可以使用 [echarts-offline-doc-cli](https://github.com/plainheart/echarts-offline-doc-cli) 工具来构建或下载离线版文档。