提交 edd23af9 编写于 作者: S sushuang

Fix z2 and cache on hover.

上级 679033d1
......@@ -376,15 +376,13 @@ function doSingleLeaveHover(el) {
// `setStyle` but not `extendFrom(stl, true)`.
el.setStyle(normalStl);
applyDefaultTextStyle(style);
el.__cachedNormalStl = null;
}
// `__cachedNormalZ2` will not be reset if calling `setElementHoverStyle`
// when `el` is on emphasis state. So here by comparing with 1, we try
// hard to make the bug case rare.
var normalZ2 = el.__cachedNormalZ2;
if (el.z2 - normalZ2 === Z2_LIFT_VALUE) {
if (normalZ2 != null && el.z2 - normalZ2 === Z2_LIFT_VALUE) {
el.z2 = normalZ2;
el.__cachedNormalZ2 = null;
}
}
}
......
......@@ -56,6 +56,7 @@ under the License.
<div id="mainb1"></div>
<div id="mainb2"></div>
<div id="mainb3"></div>
<div id="main0"></div>
<div id="main1"></div>
......@@ -84,7 +85,9 @@ under the License.
function genInfo(zrRefreshTimestamp) {
infoEl.innerHTML = [
useHoverLayer ? 'Using HoverLayer' : 'NOT using HoverLayer',
'<span style="color:yellow">'
+ (useHoverLayer ? 'Using HoverLayer' : 'NOT using HoverLayer')
+ '</span>',
'hoverLayerThreshold: ' + hoverLayerThreshold,
'zr refresh base layer at: <span style="color:yellow">' + (zrRefreshTimestamp || null) + '</span>'
].join('<br>');
......@@ -231,6 +234,37 @@ under the License.
<script>
require(['echarts'], function (echarts) {
var option = {
hoverLayerThreshold: hoverLayerThreshold,
xAxis: {
},
yAxis: {
},
series: [{
type: 'scatter',
symbolSize: 100,
data: [
{value: [0, 0], itemStyle: {color: 'blue'}},
{value: [0, 1], itemStyle: {color: 'red'}}
]
}]
};
var chart = testHelper.create(echarts, 'mainb3', {
title: [
'hover the blue symbol, the z2 can be top',
'unhover, **z2 should be back** to bottom'
],
option: option,
height: 200
});
});
</script>
<script>
require(['echarts'], function (echarts) {
var option = {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册