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 2021/05/14 15:24:59 UTC

[GitHub] [echarts] Raphyyy opened a new issue #14952: Can't disable emphasis state in Echarts 5.x ?

Raphyyy opened a new issue #14952:
URL: https://github.com/apache/echarts/issues/14952


   ### Version
   5.1.1
   
   ### Reproduction link
   [https://jsfiddle.net/qcmgetan/](https://jsfiddle.net/qcmgetan/)
   
   ### Steps to reproduce
   Simply mouse over the serie.
   
   ### What is expected?
   Emphasis state should be disabled
   
   ### What is actually happening?
   Emphasis state is not disabled
   
   ---
   I can't manage by any way to prevent my series to go in emphasis state on mouse over, though `emphasis.focus: "none"` and `emphasis.scale: false` or even `serie.silent: true` are set. 
   
   lineStyle.width grows to 1px more and areaStyle.color also change. 
   The weird part is that if you set `serie.emphasis.lineStyle.width` to 1 it takes account of it and "fix" the problem, so it looks like emphasis is still enabled therefore `emphasis.scale` is set to `false`. I could go with that but I couldn't manage to find a way to set `serie.areaStyle.opacity` as identical. 
   
   I did not have this issue with Echarts 4.x
   
   <!-- 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



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


[GitHub] [echarts] plainheart commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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






-- 
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] [echarts] plainheart commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Do you mean you hope to keep the area color unchanged when hovering on the chart?
   If so, unfortunately, there is currently no option to configure it, you have to set a specific value for area style.
   For example,
   ```
   areaStyle: {
       color: '#5470c6'
       opacity: 0.1
   },
   emphasis: {
       areaStyle: {
           color: '#5470c6'
           opacity: 0.1
       }
   }
   ```
   
   **About color**
   
   By default, the emphasized color is calculated by
   ```js
   echarts.color.lift(normalColor, -0.1)
   ```
   If you want to get the emphasized color, you could use the above code.
   
   Related issue: #12369
   
   **About lineWidth**
   
   Since v5.0.0, the line width will be bolder by 1px in emphasis state than the normal state.
   This feature may be removed or changed in the future.
   For now, you will have to set `emphasis.lineStyle.width` to be identical to `lineStyle.width`.
   
   


-- 
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] [echarts] yufeng04 commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Maybe you should remove the configuration of 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] [echarts] pissang commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Disable emphasis state but keep the tooltip and mouse event can be useful. Similar issue https://github.com/apache/echarts/issues/11788


-- 
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] [echarts] Raphyyy commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   @plainheart I tried to set serie.areaStyle.color same as serie.emphasis.areaStyle.color but that is not fixing the issue. See https://jsfiddle.net/45scamx3/. (hover the right side of the chart)
   It looks like the hovered serie is put in front of others like said here : https://github.com/apache/echarts/issues/14698#issuecomment-821953456 and that is causing the issue with serie.areaStyle.opacity set to a value lower than 1. If series have not the same gap between data, the hovered serie change a lot and this flicking effect pops off.
   
   Any idea to work around this ?


-- 
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] [echarts] plainheart closed issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
plainheart closed issue #14952:
URL: https://github.com/apache/echarts/issues/14952


   


-- 
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] Raphyyy commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   > Do you mean you hope to keep the area color unchanged when hovering on the chart?
   Yes exactly. I think this behaviour should be avoided. Here it is on a classic line chart with temperature time-series : 
   ![azeaqdq](https://user-images.githubusercontent.com/13983107/118453662-c4364380-b6f7-11eb-9c13-6b42ce4c3b8d.gif)
   
   I set `emphasis.lineStyle.width` to 1 but like I said previously, setting emphasis.areaStyle.opacity to 0.1 do not makes it, as it updates the color like you said.
   
   Is there no way to fix this within the configuration ? 
   
   Ty for the help


-- 
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] [echarts] plainheart commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Overall, it would be better to revert the design about '[Design] Bolder lineWidth when hover.' #12931


-- 
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] [echarts] Raphyyy edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
Raphyyy edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842117188


   > Maybe you should remove the configuration of emphasis
   
   It does not fix it, either setting serie.emphasis to `null` or `undefined`
   
   > Do you mean you hope to keep the area color unchanged when hovering on the chart?
   
   Yes exactly. I think this behaviour should be avoided. Here it is on a classic line chart with temperature time-series : 
   ![azeaqdq](https://user-images.githubusercontent.com/13983107/118453662-c4364380-b6f7-11eb-9c13-6b42ce4c3b8d.gif)
   
   I set `emphasis.lineStyle.width` to 1 but like I said previously, setting `emphasis.areaStyle.opacity` to 0.1 do not makes it, as it updates the color like you said.
   
   Is there no way to fix this within the configuration ? 
   
   Ty for the help


-- 
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] [echarts] Muqeet1 commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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






-- 
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] [echarts] Raphyyy edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
Raphyyy edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842311806


   @plainheart I tried to set serie.areaStyle.color same as serie.emphasis.areaStyle.color but that is not fixing the issue. See https://jsfiddle.net/45scamx3/.
   It looks like the hovered serie is put in front of others like said here : https://github.com/apache/echarts/issues/14698#issuecomment-821953456 and that is causing the issue with serie.areaStyle.opacity set to a value lower than 1. If series have not the same gap between data, the hovered serie change a lot and this flicking effect pops off.
   
   Any idea to work around this ?


-- 
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] [echarts] Raphyyy edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
Raphyyy edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842117188


   > Do you mean you hope to keep the area color unchanged when hovering on the chart?
   
   Yes exactly. I think this behaviour should be avoided. Here it is on a classic line chart with temperature time-series : 
   ![azeaqdq](https://user-images.githubusercontent.com/13983107/118453662-c4364380-b6f7-11eb-9c13-6b42ce4c3b8d.gif)
   
   I set `emphasis.lineStyle.width` to 1 but like I said previously, setting emphasis.areaStyle.opacity to 0.1 do not makes it, as it updates the color like you said.
   
   Is there no way to fix this within the configuration ? 
   
   Ty for the help


-- 
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] [echarts] plainheart commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   I think this would be another issue like #14698.


-- 
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] [echarts] Raphyyy commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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






-- 
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] [echarts] Sakkyoku-Sha commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
Sakkyoku-Sha commented on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-920571369


   +1
   
   On very large series this leads to some performance loss, ideally this functionality can be disabled altogether.


-- 
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] plainheart commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   @Raphyyy It seems to be possible if we specify the [`series.z`](https://echarts.apache.org/en/option.html#series-line.z) and [`tooltip.axisPointer.z`](https://echarts.apache.org/en/option.html#tooltip.axisPointer).
   ```js
   tooltip: {
       ...
       axisPointer: {
            z: 210
       }
   },
   series: [
       {
           ...
           z: 200
       },
       {
           ...
           z: 201
       },
       {
           ...
           z: 202
       },
       ....
   ]
   ```


-- 
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] [echarts] yufeng04 commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Maybe you should remove the configuration of 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] [echarts] Raphyyy edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
Raphyyy edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842131649


   Yes but can I do it if I do not have the hand on the `configuration.color` settings ?
   Also my series are dynamically generated, so I can't get programmatically the color before I use `echartsIntance.setOption` to create my series.


-- 
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] [echarts] plainheart commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   > I set emphasis.lineStyle.width to 1 but like I said previously, setting emphasis.areaStyle.opacity to 0.1 do not makes it, as it updates the color like you said.
   
   @Raphyyy That's not enough. You still need to set `emphasis.areaStyle.color` to be identical to `areaStyle.color`.
    


-- 
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] [echarts] Muqeet1 commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Having the same issue on version upgrade, chart with many data points became noticeably slower than before, already set the width of lines to be similar but can't disable the blur effect on hover which triggers some sort of paint job between mouseover events, (it was not there before). Hence tooltip have major lag and data loads slower.


-- 
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] [echarts] pissang edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
pissang edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842144478


   Disable emphasis state but keep the tooltip and mouse event can be a useful feature. Similar issue https://github.com/apache/echarts/issues/11788


-- 
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] [echarts] Muqeet1 commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Any estimate for this fix?


-- 
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] [echarts] pissang commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   Disable emphasis state but keep the tooltip and mouse event can be useful. Similar issue https://github.com/apache/echarts/issues/11788


-- 
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] [echarts] echarts-bot[bot] commented on issue #14952: Can't disable emphasis state in Echarts 5.x ?

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


   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 it contains **a minimum reproducible demo** and necessary **images** to illustrate. Otherwise, our committers will ask you to do so.
   
   *A minimum reproducible demo* should contain as little data and components as possible but can still illustrate your problem. This is the best way for us to reproduce it and solve the problem faster.
   
   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 question.
   
   If you are interested in the project, you may also subscribe our [mailing 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] [echarts] Raphyyy edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
Raphyyy edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842117188






-- 
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] [echarts] pissang edited a comment on issue #14952: Can't disable emphasis state in Echarts 5.x ?

Posted by GitBox <gi...@apache.org>.
pissang edited a comment on issue #14952:
URL: https://github.com/apache/echarts/issues/14952#issuecomment-842144478


   Disable emphasis state but keep the tooltip and mouse event can be a useful feature. Similar issue https://github.com/apache/echarts/issues/11788


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