xiaozhang199900 opened a new issue #16266:
URL: https://github.com/apache/echarts/issues/16266
### Version
5.2.2
### Link to Minimal Reproduction
_No response_
### Steps to Reproduce
import * as echarts from 'echarts';
var chartDom = document.getElementById('main');
var myChart = echarts.init(chartDom);
var option;
option = {
xAxis: {
data: ['2017-10-24', '2017-10-25', '2017-10-26', '2017-10-27']
},
yAxis: {},
series: [
{
type: 'candlestick',
data: [
['0.000000000012', '0.000000000034', '0.000000000010',
'0.000000000038']
]
}
]
};
option && myChart.setOption(option);
### Current Behavior
当数据值过小时K线无法解析,导致变为一条直线。
### Expected Behavior
K线正常展示
### Environment
```markdown
操作系统:windows10
浏览器:Chrome
框架vue2.0
```
### Any additional comments?
_No response_
--
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]