echarts
echarts copied to clipboard
Apache ECharts is a powerful, interactive charting and data visualization library for browser
### Version 5.5.0 ### Link to Minimal Reproduction https://echarts.apache.org/examples/en/editor.html ### Steps to Reproduce The chart options to reproduce the problem are: ``` option = { grid: [ { id: 'gridDataSx',...
### What problem does this feature solve? option = { xAxis: {}, yAxis: { scale: true }, series: [{ name: "1990", type: "effectScatter", data: [ [28604, 77, 17096869, "Australia", 1990],...
### What problem does this feature solve? 当前版本的echarts似乎并不支持SVG中的marker元素使用,在绘制某些特定图形时比较麻烦,如添加箭头等 ### What does the proposed API look like? 在renderItem 返回的path元素的style中,添加一个defs属性: {type:'path', shape:{d:'M0,0 h100'}, style:{ defs:[ { marker:{id:'arrow',markerHeight:10,markerWidth:10,refX:5,refY:5, type:'circle', shape:{cx:0,cy:0,r:5},style:{fill:'red',stroke:'black'}}}}
### What problem does this feature solve? In a formatter callback function, it is currently not possible to change the returned format depending on the axis' state, since it is...
### Version e.g. 5.3.2 ### Link to Minimal Reproduction https://codepen.io/chenwwsdo/pen/JjeqYZg ### Steps to Reproduce ` series: [{ type: 'scatter', coordinateSystem: 'geo', data: [{ name: '标注点', value: [116, 100] }], symbolSize:...
### Version 5.5.0 ### Link to Minimal Reproduction no ### Steps to Reproduce  ### Current Behavior textBorderColor不生效 ### Expected Behavior textBorderColor生效 ### Environment ```markdown - OS: - Browser: -...
### What problem does this feature solve? ## Feature description: At my organization, we recently started migrating our data visualizations to ECharts and our product has many features that depend...
### Version 5.5.0 ### Link to Minimal Reproduction https://jsfiddle.net/emL5csh3/1/ ### Steps to Reproduce 1. Create a Bar chart with a single data point. ### Current Behavior The column of the...
### What problem does this feature solve? I am using a set of scatter points that are connected head-to-tail to draw a closed curve and wish to implement zooming and...
### Version 5.2.2 ### Link to Minimal Reproduction https://raw.githubusercontent.com/qiuqiumon/EchartsLearning/main/fault3d.html ### Steps to Reproduce 在绘制曲面时,垂直方向的点连接起来的时候发生bug,垂直于X方向的点进行绘制的时候一旦超过5个点就绘制出现问题,如下例子是可以绘制的, data: [ [1.0,0.1,1.5],[1.0,0.5,1.5],[1.0,0.6,1.5],[1.0,0.8,1.5],[1.0,0.9,1.5], [1.0,0.1,2.0],[1.0,0.5,2.0],[1.0,0.6,2.0],[1.0,0.8,2.0],[1.0,0.9,2.0], ], 再多一个点就出现了bug例如: data: [ [1.0,0.1,1.5],[1.0,0.5,1.5],[1.0,0.6,1.5],[1.0,0.8,1.5],[1.0,0.9,1.5],[1.0,1.0,1.5], [1.0,0.1,2.0],[1.0,0.5,2.0],[1.0,0.6,2.0],[1.0,0.8,2.0],[1.0,0.9,2.0],[1.0,1.0,2.0] ], ### Current Behavior 在绘制曲面时,垂直方向的点连接起来的时候发生bug,垂直于X方向的点进行绘制的时候一旦超过5个点就绘制出现问题,如下例子是可以绘制的, data:...