Gamehu opened a new issue #9191: 折线图的brush URL: https://github.com/apache/incubator-echarts/issues/9191 <!-- 为了方便我们能够复现和修复 bug,请遵从下面的规范描述您的问题。 --> ### One-line summary [问题简述] 目前还不能支持折线图brush组件,我看其他issue也有人提过,我想问下,有计划对折线支持brush么? ### Version & Environment [版本及环境] + ECharts version [ECharts 版本]:3.8.5 + Browser version [浏览器类型和版本]:69.0.3497.81 + OS Version [操作系统类型和版本]:windows10 ### Expected behaviour [期望结果] 支持折线图的brush ### ECharts option [ECharts配置项] <!-- Copy and paste your 'echarts option' here. --> <!-- [下方贴你的option,注意不要删掉下方 ```javascript 和 尾部的 ``` 字样。最好是我们能够直接运行的 option。如何得到能运行的 option 参见上方的 guidelines for contributing] --> ```javascript var xAxisData = []; var data1 = []; var data2 = []; var data3 = []; var data4 = []; for (var i = 0; i < 10; i++) { xAxisData.push('Class' + i); data1.push((Math.random() * 2).toFixed(2)); data2.push(-Math.random().toFixed(2)); data3.push((Math.random() * 5).toFixed(2)); data4.push((Math.random() + 0.3).toFixed(2)); } var itemStyle = { normal: { }, emphasis: { barBorderWidth: 1, shadowBlur: 10, shadowOffsetX: 0, shadowOffsetY: 0, shadowColor: 'rgba(0,0,0,0.5)' } }; option = { backgroundColor: '#eee', legend: { data: ['bar', 'bar2', 'bar3', 'bar4'], align: 'left', left: 10 }, brush: { toolbox: ['lineX', 'clear'], xAxisIndex: 0 }, tooltip: {}, xAxis: { data: xAxisData, name: 'X Axis', silent: false, axisLine: {onZero: true}, splitLine: {show: false}, splitArea: {show: false} }, yAxis: { }, grid: { left: 100 }, series: [ { name: 'bar', type: 'line', stack: 'one', itemStyle: itemStyle, data: data1 } ] }; myChart.on('brushSelected', renderBrushed); function renderBrushed(params) { var brushed = []; var brushComponent = params.batch[0]; for (var sIdx = 0; sIdx < brushComponent.selected.length; sIdx++) { var rawIndices = brushComponent.selected[sIdx].dataIndex; brushed.push('[Series ' + sIdx + '] ' + rawIndices.join(', ')); } myChart.setOption({ title: { backgroundColor: '#333', text: 'SELECTED DATA INDICES: \n' + brushed.join('\n'), bottom: 0, right: 0, width: 100, textStyle: { fontSize: 12, color: '#fff' } } }); } } ``` ### Other comments [其他信息] <!-- For example: Screenshot or Online demo --> <!-- [例如,截图或线上实例 (JSFiddle/JSBin/Codepen)] -->
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
