helgasoft commented on issue #21019: URL: https://github.com/apache/echarts/issues/21019#issuecomment-2949924882
agree, a valuable new feature to consider As a "poor man's" workaround you may try replacing brushes with styled [markAreas](https://echarts.apache.org/en/option.html#series-candlestick.markArea.itemStyle). Even though they work differently for candlestick and bar series. ``` markArea: { itemStyle: {color:'pink', opacity:0.7}, data: [ [{xAxis: '2016-05-12'}, {xAxis: '2016-05-19'}] ] } ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
