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/07/16 02:30:33 UTC

[GitHub] [incubator-echarts] Famine-Life opened a new issue #12975: about /scatter-visualMap-piecewise

Famine-Life opened a new issue #12975:
URL: https://github.com/apache/incubator-echarts/issues/12975


   ### Version
   4.8.0
   
   ### Reproduction link
   [https://echarts.apache.org/examples/zh/editor.html?c=doc-example/scatter-visualMap-piecewise](https://echarts.apache.org/examples/zh/editor.html?c=doc-example/scatter-visualMap-piecewise)
   
   ### Steps to reproduce
   https://echarts.apache.org/examples/zh/editor.html?c=doc-example/scatter-visualMap-piecewise
   
   ### What is expected?
   鼠标悬浮到地图上的每一个点上的时候应该显示的是他们对应的值
   
   ### What is actually happening?
   实际上是他们地点的维度
   
   ---
   鼠标悬浮到地图上的每一个点上的时候应该显示的是他们对于的值,而不是他们的维度。
   
   <!-- This issue is generated by echarts-issue-helper. 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



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


[GitHub] [incubator-echarts] ZhouXiaoL commented on issue #12975: about /scatter-visualMap-piecewise

Posted by GitBox <gi...@apache.org>.
ZhouXiaoL commented on issue #12975:
URL: https://github.com/apache/incubator-echarts/issues/12975#issuecomment-659123076


   这个可以查找配置解决label.emphasis


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



---------------------------------------------------------------------
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 #12975: about /scatter-visualMap-piecewise

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


   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



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


[GitHub] [incubator-echarts] plainheart edited a comment on issue #12975: about /scatter-visualMap-piecewise

Posted by GitBox <gi...@apache.org>.
plainheart edited a comment on issue #12975:
URL: https://github.com/apache/incubator-echarts/issues/12975#issuecomment-659138003


   这个与先前的 #12370, #8973, #10023, #12475 应该属于同一类问题,曾经在 #11973 中讨论过修复方法,不过似乎还未有定论和修复计划,暂时可以通过以下2种方式规避:
   1) 使用 [`tooltip.formatter`](https://echarts.apache.org/zh/option.html#tooltip.formatter)
   2) 使用 [`series.encode`](https://echarts.apache.org/zh/option.html#series-scatter.encode),这个解决方案之前有提过PR,可以参考 ecomfe/echarts-examples#20 ecomfe/echarts-examples#17。
   ```js
   encode: {
     value: 2
   }
   ```
   或者
   ```js
   encode: {
     tooltip: [2]
   }
   ```


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



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


[GitHub] [incubator-echarts] plainheart commented on issue #12975: about /scatter-visualMap-piecewise

Posted by GitBox <gi...@apache.org>.
plainheart commented on issue #12975:
URL: https://github.com/apache/incubator-echarts/issues/12975#issuecomment-659138003


   这个与先前的 #12370, #8973, #10023, #12475 应该属于同一类问题,曾经在 #11973 中讨论过修复方法,不过似乎还未有定论和修复计划,暂时可以通过以下2种方式规避:
   1) 使用 [`tooltip.formatter`](https://echarts.apache.org/zh/option.html#tooltip.formatter)
   2) 使用 [`series.encode`](https://echarts.apache.org/zh/option.html#series-scatter.encode),这个解决方案之前有提过PR,可以参考 ecomfe/echarts-examples#20。
   ```js
   encode: {
     value: 2
   }
   ```
   或者
   ```js
   encode: {
     tooltip: [2]
   }
   ```


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



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


[GitHub] [incubator-echarts] Famine-Life closed issue #12975: about /scatter-visualMap-piecewise

Posted by GitBox <gi...@apache.org>.
Famine-Life closed issue #12975:
URL: https://github.com/apache/incubator-echarts/issues/12975


   


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



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


[GitHub] [incubator-echarts] Ovilia commented on issue #12975: about /scatter-visualMap-piecewise

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


   https://echarts.apache.org/zh/option.html#visualMap-continuous.dimension


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



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