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 2020/03/06 15:14:46 UTC

[GitHub] [incubator-echarts] GrahamAllan31 opened a new issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

GrahamAllan31 opened a new issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly
URL: https://github.com/apache/incubator-echarts/issues/12247
 
 
   ### Version
   4.7.0-rc.1
   
   ### Reproduction link
   [http://jsfiddle.net/grahamallan31/m5vxefwL/4/](http://jsfiddle.net/grahamallan31/m5vxefwL/4/)
   
   ### Steps to reproduce
   One the attached jsfiddle select the dataZoom button and draw a zoom rectangle from Monday,550 to Sun 250
   Release the moue to zoom
   
   ### What is expected?
   The Tue to Wed data points and Wed to Thu data points are connected with a line the disappears outside the selected region
   See https://imgur.com/a/9DdYgqQ
   
   ### What is actually happening?
   The chart will zoom in the show the selected region omitting the value for Wed (zero) connecting Tue ti 
   
   ---
   Found while setting up a step chart which also shows the same behaviour
   
   <!-- 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:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [incubator-echarts] echarts-bot[bot] commented on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

Posted by GitBox <gi...@apache.org>.
echarts-bot[bot] commented on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly
URL: https://github.com/apache/incubator-echarts/issues/12247#issuecomment-595812934
 
 
   Hi! We've received your issue and please be patient to get responded. 🎉
   The average response time is expected to be within one day for weekdays.
   
   In the meanwhile, please make sure that **you have posted enough image to demo your request**. You may also check out the [API](http://echarts.apache.org/api.html) and [chart option](http://echarts.apache.org/option.html) to get the answer.
   
   If you don't get helped for a long time (over a week) or have an urgent question to ask, you may also send an email to dev@echarts.apache.org. Please attach the issue link if it's a technical questions.
   
   If you are interested in the project, you may also subscribe our [mail list](https://echarts.apache.org/en/maillist.html).
   
   Have a nice day! 🍵

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [echarts] github-actions[bot] commented on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #12247:
URL: https://github.com/apache/echarts/issues/12247#issuecomment-1060038841


   This issue has been automatically marked as stale because it did not have recent activity. It will be closed in 7 days if no further activity occurs. If you wish not to mark it as stale, please leave a comment in this issue.


-- 
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] [incubator-echarts] 100pah edited a comment on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

Posted by GitBox <gi...@apache.org>.
100pah edited a comment on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly
URL: https://github.com/apache/incubator-echarts/issues/12247#issuecomment-595893767
 
 
   That can be resolved by setting:
   ```js
   option = {
       toolbox: {
           feature: {
               dataZoom: {
                   filterMode: 'none'
               }
           }
       }
   };
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [incubator-echarts] 100pah commented on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

Posted by GitBox <gi...@apache.org>.
100pah commented on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly
URL: https://github.com/apache/incubator-echarts/issues/12247#issuecomment-595893767
 
 
   The can be resolved by:
   ```js
   option = {
       toolbox: {
           feature: {
               dataZoom: {
                   filterMode: 'none'
               }
           }
       }
   };
   ```

----------------------------------------------------------------
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:
users@infra.apache.org


With regards,
Apache Git Services

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


[GitHub] [echarts] github-actions[bot] commented on issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

Posted by GitBox <gi...@apache.org>.
github-actions[bot] commented on issue #12247:
URL: https://github.com/apache/echarts/issues/12247#issuecomment-1066181922


   This issue has been automatically closed because it did not have recent activity. If this remains to be a problem with the latest version of Apache ECharts, please open a new issue and link this to it. Thanks!


-- 
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] github-actions[bot] closed issue #12247: When zooming in on a chart using toolbox.feature.dataZoom if a point is outside the selected zoom rectangle the chart is not plotted correctly

Posted by GitBox <gi...@apache.org>.
github-actions[bot] closed issue #12247:
URL: https://github.com/apache/echarts/issues/12247


   


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