ethannguyen276 opened a new issue #15240:
URL: https://github.com/apache/echarts/issues/15240


   ### Version
   5.1.1
   
   ### Steps to reproduce
   Create an option with time axis, specify full date-time template:
   ```
   option = {
       xAxis: {
           type: 'time',
           min: "2019-01-29T16:00:00 07:00",
           max: "2019-01-29T16:03:00 07:00",
           axisLabel: {
               rotate: 70,
               formatter: '{hh}:{mm}:{ss} {SSS}\n{dd}-{MM}-{yyyy}'
           }
       },
       yAxis: {
           type: 'value'
       },
       series: [{
           data: [150, 230, 224, 218, 135, 147, 260],
           type: 'line'
       }]
   };
   ```
   
   ### What is expected?
   The distances between ticks should be the same.
   
   ### What is actually happening?
   The milliseconds are not divided correctly between the ticks. Seem like 
Echarts uses 60 at maximum number of milliseconds (it should be 999)
   
   <!-- This issue is generated by echarts-issue-helper. DO NOT REMOVE -->
   <!-- This issue is in English. DO NOT REMOVE -->


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

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