You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@echarts.apache.org by GitBox <gi...@apache.org> on 2022/11/17 06:08:50 UTC

[GitHub] [echarts] koallamara opened a new issue, #17932: [Bug] wiggling animation in real-time time series charts using dataset-dimension (no 'name' property)

koallamara opened a new issue, #17932:
URL: https://github.com/apache/echarts/issues/17932

   ### Version
   
   5.1.2
   
   ### Link to Minimal Reproduction
   
   https://echarts.apache.org/examples/en/editor.html?c=dynamic-data2&code=GYVwdgxgLglg9mABAJwIZgCZwLYBFVSoAUAlIgN4BQiiYcA7ogLy0Cmj-UrRA1HYz0QJW-AJ4kA3NUQA3VABsQrZrIVLEggLIEAFgDo0mHKUQAqRACYAjIgC0iKwAYpNZKyghkSKjRphU2KwAXLQMelBwAMpQyDBgAOakADTSNLCBIQDa_Hrx7gBiIPLyAJqsqMjJofS57poIUDomglZJ1bVQnNwkALp6AFZwcUQA5AD0IyQpvqqKwYjajQZw4BhEcnMk0gC-UtuU8u6IGASoKpk9UodQ1Spg7IhdRFYAnC8A7G0vbQDMkgdHYRiFQWAAsZkQPwAbI5HBCnLCrkcNuoWIt9IYsNgTOYEc5KMA4MhEOsKogYCpnOTEAAeBywqkwHg8Mg-Y6nPQABxAAGcmpicJxiCR_vs4JzYAgVGyToQee4QmyaDyVsgIPNZagdtNELAoIdFaldawAB5QEIjXCifzYGAQR6nRAAMkQABUYIFEABBE0wHkjbXSCJweSwTmGmYxGDxPLIC2oX3-nU0BN-gAKQzAXDjFCNKbAHoI8DAIRiSiN-xo2x1Jp9fojvigok58xG6VYI2TiB5nPkMCgABk4vMlb4-QwQsAFPKK4GaKI6zyG2lm62UR2uwAjFaYCqiADiqHDiEyjjaIwRAFIRj0uz2-4Ph8uxzoJ4gp_IZzNK4hq9J5bErBLieRqjn4AStvkqAANbKEKnZ5rqq4Wn29wITMyqvvQkSiNg27yJO06sF2NAYB6rBgDyxbAZkiE0AARO29FtPR670YhPSzjQnG7JQlDylAACSWasMgGxEKAkCSkgJhsoSxKksSFIsIytKIAArBI5LMqyRqanofIwMAUCkC4vj6dyfJEAKeCnKQ_xVtI2CiAAwjoFRQAZ7gAPISsWRDitJoptHikhAA
   
   ### Steps to Reproduce
   
   Trying to [Dynamic Data + Time Axis Demo](https://echarts.apache.org/examples/en/editor.html?c=dynamic-data2) with dataset-dimension, but wiggling animation still there
   
   
   ### Current Behavior
   
   This situration is same as #12167, but I can't find how to set 'name' property when using **dataset-dimension.**
   Is there any way to setting 'name' property, or other feature to solve wiggling animation with dataset-dimension?
   
   
   
   ```json
   [
       {
       ...
           "name": "",
           "dataIndex": 71,
           "data": {
               "name": "Wed Dec 24 1997 00:00:00 GMT+0900 (한국 표준시)",
               "time": "1997/12/24",
               "value": 496
           },
           "value": {
               "name": "Wed Dec 24 1997 00:00:00 GMT+0900 (한국 표준시)",
               "time": "1997/12/24",
               "value": 496
           },
           "color": "#5470c6",
           "dimensionNames": [
               "time",
               "value"
           ],
           "encode": {
               "x": [
                   0
               ],
               "y": [
                   1
               ]
           },
           "$vars": [
               "seriesName",
               "name",
               "value"
           ],
           ...
       }
   ]
   ```
   
   
   ### Expected Behavior
   
   I really want to stop this wiggling animation. (It look emphasized when time line is really short-like 30 seconds-)
   
   ### Environment
   
   ```markdown
   - OS: 
   - Browser:
   - Framework:
   ```
   
   
   ### 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: commits-unsubscribe@echarts.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] Ovilia commented on issue #17932: [Bug] wiggling animation in real-time time series charts using dataset-dimension (no 'name' property)

Posted by GitBox <gi...@apache.org>.
Ovilia commented on issue #17932:
URL: https://github.com/apache/echarts/issues/17932#issuecomment-1319506906

   You can try to set `series.animationDurationUpdate` to be 0 to solve the wiggling animation.
   
   As for time axis label, please follow #17311. Sorry I'm quite busy lately and will finish the PR later.


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] koallamara commented on issue #17932: [Bug] wiggling animation in real-time time series charts using dataset-dimension (no 'name' property)

Posted by GitBox <gi...@apache.org>.
koallamara commented on issue #17932:
URL: https://github.com/apache/echarts/issues/17932#issuecomment-1319512943

   > You can try to set `series.animationDurationUpdate` to be 0 to solve the wiggling animation.
   > 
   > As for time axis label, please follow #17311. Sorry I'm quite busy lately and will finish the PR later.
   
   Thanks for your quick solution 👍  Everything are solved to nomal ;)


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org


[GitHub] [echarts] koallamara closed issue #17932: [Bug] wiggling animation in real-time time series charts using dataset-dimension (no 'name' property)

Posted by GitBox <gi...@apache.org>.
koallamara closed issue #17932: [Bug] wiggling animation in real-time time series charts using dataset-dimension (no 'name' property)
URL: https://github.com/apache/echarts/issues/17932


-- 
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: commits-unsubscribe@echarts.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@echarts.apache.org
For additional commands, e-mail: commits-help@echarts.apache.org