echarts-bot[bot] commented on issue #16266:
URL: https://github.com/apache/echarts/issues/16266#issuecomment-999402415


   @xiaozhang199900 It seems you are not using English, I've helped translate 
the content automatically. To make your issue understood by more people and get 
helped, we'd like to suggest using English next time. 🤗
   <details><summary><b>TRANSLATED</b></summary><br>
   
   **TITLE**
   
   [Bug] The candlestick plot data is rendered incorrectly
   
   **BODY**
   
   ### 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
   
   When the data value is too small, the candlestick cannot be parsed, 
resulting in a straight line.
   
   ### Expected Behavior
   
   The K-line is displayed normally
   
   ### Environment
   
   ```markdown
   Operating system: windows 10
   Browser: Chrome 
   Framework vue2.0
   ```
   
   ### Any additional comments?
   
   _No response_
   </details>


-- 
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]

Reply via email to