Fix(emphasis.focus): sankey have adjacency focus
diff --git a/en/option/partial/focus-blur-scope.md b/en/option/partial/focus-blur-scope.md
index 02c4e93..22eeddf 100644
--- a/en/option/partial/focus-blur-scope.md
+++ b/en/option/partial/focus-blur-scope.md
@@ -13,10 +13,11 @@
 + `'self'` Only focus (not fade out) the element of the currently highlighted data.
 + `'series'` Focus on all elements of the series which the currently highlighted data belongs to.
 
-{{ if: ${isGraph} }}
+{{ if: ${isGraph || isSankey} }}
 + `'adjacency'` Focus on the elements of adjacent nodes and edges in the graph.
+{{ /if }}
 
-{{ elif: ${isTree} }}
+{{ if: ${isTree} }}
 + `'ancestor'` Focus on all ancestor nodes.
 + `'descendant'` Focus on all descendants nodes.
 {{ /if }}
diff --git a/en/option/series/sankey.md b/en/option/series/sankey.md
index 3ff642c..0be81cc 100644
--- a/en/option/series/sankey.md
+++ b/en/option/series/sankey.md
@@ -202,6 +202,7 @@
 
 {{ use: partial-focus-blur-scope(
     isTree = true
+    isSankey = true
 ) }}
 
 {{ use: sankey-state(
diff --git a/zh/option/partial/focus-blur-scope.md b/zh/option/partial/focus-blur-scope.md
index 8d035d9..94e7db2 100644
--- a/zh/option/partial/focus-blur-scope.md
+++ b/zh/option/partial/focus-blur-scope.md
@@ -13,10 +13,11 @@
 + `'self'` 只聚焦(不淡出)当前高亮的数据的图形。
 + `'series'` 聚焦当前高亮的数据所在的系列的所有图形。
 
-{{ if: ${isGraph} }}
+{{ if: ${isGraph || isSankey} }}
 + `'adjacency'` 聚焦关系图中的邻接点和边的图形
+{{ /if }}
 
-{{ elif: ${isTree} }}
+{{ if: ${isTree} }}
 + `'ancestor'` 聚焦所有祖先节点
 + `'descendant'` 聚焦所有子孙节点
 {{ /if }}
diff --git a/zh/option/series/sankey.md b/zh/option/series/sankey.md
index 1adfddb..7765467 100644
--- a/zh/option/series/sankey.md
+++ b/zh/option/series/sankey.md
@@ -207,6 +207,7 @@
 
 {{ use: partial-focus-blur-scope(
     isTree = true
+    isSankey = true
 ) }}
 
 {{ use: sankey-state(