pissang commented on a change in pull request #13282:
URL: 
https://github.com/apache/incubator-echarts/pull/13282#discussion_r503029886



##########
File path: src/component/tooltip/TooltipView.ts
##########
@@ -628,8 +628,9 @@ class TooltipView extends ComponentView {
             this._tooltipModel
         ]);
 
+        // fix 10537
         const tooltipTrigger = tooltipModel.get('trigger');
-        if (tooltipTrigger != null && tooltipTrigger !== 'item') {
+        if (!tooltipTrigger || tooltipTrigger === 'none') {
             return;
         }

Review comment:
       This change only makes tooltip trigger on the item even if it's 
configured as `axis`. It will break other series and can't get the expected 
result of radar. In radar, the expected result is to show all the values of one 
indicator if tooltip.trigger is `axis`




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