echarts
echarts copied to clipboard
Apache ECharts is a powerful, interactive charting and data visualization library for browser
### Version 5.4.3 ### Link to Minimal Reproduction https://github.com/itzdrli/example ### Steps to Reproduce Use the code from [Here](https://github.com/itzdrli/example). The code has written by following official [document](https://echarts.apache.org/handbook/en/how-to/cross-platform/server/#loading-of-images) ### Current Behavior Error:...
### What problem does this feature solve? Now that tailwind css is using oklch colors, it would be great to be able to pass them as the colors for ECHARTS....
### What problem does this feature solve? I am a developer serving the Brazilian market, where thousandSeparator is '.' , decimalSeparator is ',', now it is possible to use formatter...
### Version 5.4.3 ### Link to Minimal Reproduction https://codesandbox.io/p/devbox/beautiful-chebyshev-3lgfcx?workspaceId=ws_P5axcbk322QJHWwfpQvWGp ### Steps to Reproduce 1. create a treemap chart with a series option `leafDepth: 1` 2. dispatch a treemapRootToNode action with...
### Version 5.6 ### Link to Minimal Reproduction https://codesandbox.io/p/sandbox/basic-bar-forked-2jvf59?file=%2Findex.js%3A26%2C14 ### Steps to Reproduce option = { title: { text: "", show: false, }, tooltip: { trigger: "axis", }, legend: {...
### Version 5.4.2 ### Link to Minimal Reproduction https://codepen.io/ragava28/pen/dyQPZNb?editors=0010 ### Steps to Reproduce [https://codepen.io/ragava28/pen/dyQPZNb?editors=0010](url) 1. Click on zoom button from toolbox in any chart. 2. Which enables zoom in all...
### What problem does this feature solve? After setting `series-map.geoIndex`, style configurations such as series-map.map and `series-map.itemStyle` no longer take effect It feels like setting a wrong decision Because series...
### What problem does this feature solve? An "organogram" or "organizational chart", on the echarts "examples" page. [Examples](https://en.wikipedia.org/wiki/Organizational_chart). ### What does the proposed API look like? Unknown.
### What problem does this feature solve? 我在用ecahrt做室内巡航车的实时位置监控。车的运行路线地图我在后台生产geojson数据格式,在页面加载的时候,加载地图,绘制地图。然后通过一个定时任务,去获取车辆的位置信息,并讲车辆的位置信息在地图上做更新。 现在就是有这样一个问题,在地图缩放/平移后,因为获取到车辆的坐标信息并没有响应地图的缩放/平移, 所以在地图缩放/平移操作后,整个效果会造成卡顿,或者地图再自动平移。请教一下,这种问题有没有好的处理方案????  我的代码如下: function initChart() { var chartDom = document.getElementById('geoMap')! as HTMLDivElement; var myChart = echarts.init(chartDom); axios.get('./static/5f.json').then((res) => { echarts.registerMap('5f', res.data);...
### Version 4.6.0 ### Steps to reproduce Using series type ScatterGL to draw a scatter chart. Set tooltip for series like this: ``` tooltip: { trigger: "item", }, series: [{...