From 344751cad3f8dfe425e9121902172e10aabb246d Mon Sep 17 00:00:00 2001 From: chenrui <1950717904@qq.com> Date: Mon, 8 Apr 2024 18:02:24 +0800 Subject: [PATCH] =?UTF-8?q?=E6=89=A7=E6=B3=95=E7=9B=91=E7=9D=A3=E7=A0=81?= =?UTF-8?q?=E6=9F=A5=E8=AF=A2=EF=BC=8C=E4=BF=AE=E6=94=B9=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=9D=A1=E4=BB=B6=EF=BC=8C=E8=A1=A5=E5=85=85=E7=BB=9F=E8=AE=A1?= =?UTF-8?q?=E9=A1=B5=E9=9D=A2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../auth/framework/config/ShiroConfig.java | 1 - .../main/resources/static/css/login-new.css | 137 ++++++++++ .../src/main/resources/static/css/stat.css | 200 ++++++++++++++ .../main/resources/static/img/bg_login.jpg | Bin 0 -> 30277 bytes .../main/resources/static/img/icon_can.png | Bin 0 -> 4560 bytes .../main/resources/static/img/index/logo.png | Bin 0 -> 24488 bytes .../main/resources/static/img/login_pic.png | Bin 0 -> 100033 bytes .../src/main/resources/static/img/logo.png | Bin 9754 -> 24488 bytes .../main/resources/static/js/charts-analy.js | 257 ++++++++++++++++++ .../main/resources/static/js/echarts.min.js | 45 +++ .../src/main/resources/templates/index.html | 4 +- .../src/main/resources/templates/index_t.html | 2 +- .../src/main/resources/templates/login-1.html | 203 ++++++++++++++ .../src/main/resources/templates/login.html | 142 +++------- .../LawEnforcementWarningList.html | 138 ++++++++++ .../code/LawEnforcementWarningList/add.html | 65 +++++ .../code/LawEnforcementWarningList/edit.html | 67 +++++ .../project/code/analysis/analysis.html | 55 ++++ .../project/code/registration/detail.html | 132 +++++++++ .../code/registration/registration.html | 135 ++++----- .../code/ruleItemList/ruleItemList.html | 2 +- .../templates/project/code/ruleList/list.html | 12 +- .../project/code/statistical/statistical.html | 131 +++++++++ .../EnforcementRegistrationController.java | 15 +- .../EnterpriseLawEnforcementController.java | 13 + .../LawEnforcementWarningListController.java | 2 +- .../controller/StatisticalController.java | 32 +++ .../code/service/IAccessTokenService.java | 8 +- .../com/zdxt/code/service/SRZApiService.java | 10 + .../service/impl/AccessTokenServiceImpl.java | 39 ++- .../code/service/impl/SRZApiServiceImpl.java | 76 ++++++ .../mapper/EnforcementRegistrationMapper.xml | 11 +- .../LawEnforcementWarningListMapper.xml | 9 +- 33 files changed, 1732 insertions(+), 211 deletions(-) create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/login-new.css create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/stat.css create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/bg_login.jpg create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/icon_can.png create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/index/logo.png create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/login_pic.png create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/charts-analy.js create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/echarts.min.js create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/login-1.html create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/LawEnforcementWarningList/LawEnforcementWarningList.html create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/LawEnforcementWarningList/add.html create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/LawEnforcementWarningList/edit.html create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/analysis/analysis.html create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/registration/detail.html create mode 100644 lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/templates/project/code/statistical/statistical.html create mode 100644 lib/EmergencyService/zdxtLawEnforcementCodeService/src/main/java/com/zdxt/code/controller/StatisticalController.java create mode 100644 lib/EmergencyService/zdxtLawEnforcementCodeService/src/main/java/com/zdxt/code/service/impl/SRZApiServiceImpl.java diff --git a/lib/EmergencyService/zdxtEmergencyAuthService/src/main/java/com/zdxt/auth/framework/config/ShiroConfig.java b/lib/EmergencyService/zdxtEmergencyAuthService/src/main/java/com/zdxt/auth/framework/config/ShiroConfig.java index 6a2621a0..63e3bd50 100644 --- a/lib/EmergencyService/zdxtEmergencyAuthService/src/main/java/com/zdxt/auth/framework/config/ShiroConfig.java +++ b/lib/EmergencyService/zdxtEmergencyAuthService/src/main/java/com/zdxt/auth/framework/config/ShiroConfig.java @@ -303,7 +303,6 @@ public class ShiroConfig { filterChainDefinitionMap.put("/project/safety/js/**", "anon"); filterChainDefinitionMap.put("/project/safety/img/**", "anon"); - // 系统权限列表 // filterChainDefinitionMap.putAll(SpringUtils.getBean(IMenuService.class).selectPermsAll()); diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/login-new.css b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/login-new.css new file mode 100644 index 00000000..fc181b06 --- /dev/null +++ b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/login-new.css @@ -0,0 +1,137 @@ +@charset "UTF-8"; + +/* CSS Document */ + + + + +* { + margin: 0; + padding: 0; + font-family: 'Microsoft Yahei', Arial, Verdana, sans-serif; +} + +html { + width: 100%; + height: 100%; + overflow: hidden; +} + +body { + height: 100%; + width: 100%; + background: url(../img/bg_login.jpg) no-repeat #dde1e2 center -130px; + color: #4c4c4c; + font-size: 14px; +} + +.logsty { + position: absolute; + top: 5%; + left: 5%; + width: 35%; + height: 60px; + background: url(../img/logo.png) no-repeat; + background-size: 70%; +} + +.loginwrap { + position: absolute; + z-index: 9; + top: 50%; + left: 50%; + -webkit-transform: translate(-50%, -50%); + transform: translate(-50%, -50%); + width: 50%; + height: 50%; + padding: 3%; + background: #fff url(../img/login_pic.png) no-repeat left -10% top -10px; + background-size: auto 105%; + border-radius: 20px; + box-shadow: 0 0 15px rgba(0, 10, 51, .35); +} + +.loginbox { + position: absolute; + top: 10%; + right: 5%; + width: 35%; + letter-spacing: 2px; +} + +.loginbox h1 { + font-size: 24px; + font-weight: 550; + line-height: 3; + text-align: center; +} + +.inptit { + margin: 5% 0 2% 5%; + font-size: 16px; + color: #000; +} + +.loginbox input, .loginbtn { + color: #999999; + margin: 0 5%; + height: 40px; + line-height: 32px; + width: 90%; + padding: 0 3%; + border: 0 none; + box-sizing: border-box; +} + +.loginbox input.usersty, .loginbox input.pwsty, .loginbox input.checksty { + border-bottom: 1px solid #ddd; +} + +.loginbox input.checksty { + width: 16px; + margin-top: 16px; +} + +.remtxt { + display: inherit; + margin: -30px 0 0 42px; + color: #666666; +} + +.fortxt { + display: inline-block; + float: right; + margin: -20px 10px 0 0; + color: #2380fe; + text-decoration: none; +} + +.loginbtn { + margin: 20% auto 0; + background-color: #1367fe; + border-radius: 50px; + color: #fff; + font-size: 16px; + line-height: 40px; + text-align: center; + box-shadow: 0 0 10px rgba(19, 103, 254, .8); +} + +.loginbtn:hover { + opacity: 0.8; + cursor: pointer; +} + @media screen and (max-width: 1600px) { + +.loginwrap { + width: 60%; + background-position: left -12% top -10px; +} +} + @media screen and (max-width: 1024px) { + +.loginwrap { + width: 65%; + background-position: left -15% top -10px; +} +} diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/stat.css b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/stat.css new file mode 100644 index 00000000..168b2dec --- /dev/null +++ b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/css/stat.css @@ -0,0 +1,200 @@ + + +/* CSS Document */ + + +* { + margin: 0; + padding: 0; + font-family: 'Microsoft Yahei', Arial, Verdana, sans-serif; +} + +html { + width: 100%; + height: 100%; + overflow: hidden; +} + +body { + height: 100%; + width: 100%; + color: #4c4c4c; + font-size: 14px; +} + +.statwrap { + padding: 1.5% 1%; + width: 100%; + height: 100%; + box-sizing: border-box; +} + +.headtit { + height: 3rem; +} + +.seltime { + display: flex; + position: absolute; + top: 110px; + right: 1%; + align-items: center; +} + +.seltime > i { + display: inline-block; + margin: 0 5px 0 0; + width: 24px; + height: 24px; + background: url(../images/icon_can.png) no-repeat; + background-size: 100%; + opacity: .5; +} + +.seltime > span { + display: inline-block; + margin: 0 10px; +} + +.seltime > span > select { + display: inline-block; + margin: 0 8px 0 0; + padding: 6px; + background: #FFFFFF none; + border: 1px solid #e5e6e7; + border-radius: 6px; +} + +.statit { + display: flex; + margin: 1% 0; + width: 60%; +} + +.statit > span { + display: inline-block; + margin: 1% 2% 0 0; + min-width: 6%; + height: 2.25rem; + line-height: 1.75; + color: rgba(0,0,0,0.4); + font-size: 1.15rem; + font-weight: 600; + text-align: center; + white-space: nowrap; + cursor: pointer; +} + +.statit>span.actit { + background: url(../images/sel_tab.png) no-repeat center bottom; + border-bottom: 3px solid rgba(12, 94, 249,1); + color: rgb(12, 94, 249); +} + +.tab_item { + display: none; + position: relative; + margin: 2.0rem 0 0; + height: calc(100% - 9rem); + clear: both; +} + +.desktab { + margin: auto; + border: 1px solid #ddd; + border-bottom: 0; + border-right: 0; + table-layout: fixed; +} + +.desktab tr { + border-bottom: 1px solid #ddd; +} + +.desktab tr:last-child { + border-bottom: 0; +} + +.desktab td, .desktab th, .noborder td { + padding: 8px 20px; + height: 42px; + border: 1px solid #ddd; + border-top: 0; + border-left: 0; + color: #666; + line-height: 20px; + word-break: keep-all; + white-space: nowrap; + text-overflow: ellipsis; + text-align: center; + overflow: hidden; +} + +.trodd th { + height: 40px; + background: #eaebec; + color: #4c4c4c; +} + +.line-clamp { + height: 20px; + overflow: hidden; + white-space: nowrap; + -webkit-line-clamp: 1; + -webkit-box-orient: vertical; + text-align: left; + text-overflow: ellipsis; +} + +.listhead { + width: 100%; +} + +.listbody { + position: relative; + height: calc(100% - 60px); + overflow: hidden; +} + +.inner { + position: absolute; + left: 0; + top: 0; + right: -6px; + bottom: 0; + overflow-x: hidden; + overflow-y: scroll; +} + +.chartbox { + float: left; + margin: 2% 2%; + width: 45%; + height: 90%; +} + + + + + + + + + + + +/** 滚动条样式 **/ +::-webkit-scrollbar-track { + background-color: #F5F5F5; +} + +::-webkit-scrollbar { + width: 6px; + height: 10px; + background-color: #F5F5F5; +} + +::-webkit-scrollbar-thumb { + border-radius: 6px; + background-color: #999; +} diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/bg_login.jpg b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/bg_login.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c80f37619c7fc7e6b9a6daac0f34b739e60adfaf GIT binary patch literal 30277 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
V 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 QZp-8=50vH2yztfk0~HVD^#A|> literal 0 HcmV?d00001 diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/icon_can.png b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/icon_can.png new file mode 100644 index 0000000000000000000000000000000000000000..87f3ced37b7d919cb489c5be033b62cad4f35ddf GIT binary patch literal 4560 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 R(tpta^sXA{kglL{{{~2tZD{}i literal 0 HcmV?d00001 diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/index/logo.png b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/index/logo.png new file mode 100644 index 0000000000000000000000000000000000000000..8c128735423e2d84220b0a50422eb75bb4f3841d GIT binary patch literal 24488 zcmV)sK$yRYP)GkyT zb?NYbv`Jlkm1BH755!E7mv!aldQ{(k-2Kdt_C1MxdeX=F>Gkipp5o!(KOax|#iI}y zd<-tUHDJIwX>d6|2Rkq8dKf|>--h4kK^x$m+wai*gni2IexiJsQ+n(eYV00IpVa!m zQ1i$AKVSq*E*YaQCi(w`asC(a@Fen`$Bk=m{Ga=mj89%*{h@HL^JC)hz-pzkI%<%e z(vAPk23VIC5H+ler6w*fFS;*;Xh{2Ee{w@KzWT{h{p9n3m}q8!R0NiBgC5P|{M)v!*LB#!0836tvDE!8D9RIQ$exr8>5f!6=Dn8AKpZT6JfJ;xlCzJa7~@OjiX z8W0-FdIFi3Hh?+hLA{2lgS*5utX(AukKLo1J0Ih0*f8bY!~${A#dw|O{KNwT7Bu6D zRb%T?c);&i$@d;H9^ClOzXcD{ypeG={PK1G#KH-&MG23#I~@0)?J@c&Xphq$9!>L$ zuLpLFeXefRBskBz4;(xG_V}gA()c_P^zMO&MM5c9OcKdU-!^D3>Aq0{CVqVaylK zX=@Av_?$tyjr$jVQVV086$HXSa2^2et(3yR`|FY*#ACKv?M8YBW?FitMFOKt5FU1E zD(VtC8by~A0CrNU3)kbogFg4emU(Tm7loG6tp@GSKC~!VkSt@#!|2HHE(1E$T{(Hx zo@;>Mxd3;a`W!Ri3MPHT?Gc`HdDJ%oG>hZd(mf2rgph|>+14GQHDB!qw4Olbln4xB z-A02U(Zk#s^KtGx^;hR*oTG(1Q|hw=m@pv#L?)ZMf9^LLjW}Km$6){l0z!rt-sL%t zOTTjM)~}U1ee|2en5~3)lD75wavklT&8=xsVfDdd@ND&@<#{o%LOrNWvj#`TPF^@@ z?4m6p3bhWC(P%8J(x)Jb5#fIM zD@Dr$8Q@$J+BB*4^lGO@@p_Xd9s)HUDg&S{zTA(#1uQ%fki9WHMD5Ht>}hg23=U z$iOfj1DvDBZC%I@JTO3;H^oFpR-oT$_rZ6!q{WHg0p$h{0b;@{uYMeO2nw>)y}oUF z*@DmY`2sGm9PcrPLgt;@W({jX_u=o;7Y_(Ok-%DD^J3BDDT^n5$MR~^Y6&4B!L?xB z8JSsEXRbYHkc1IEWqtBgFKtC(fsg@XTZmV#l-~0R zff)CL-{~<)5E$N|gdt*?^DF34oJ6OS)6r5HCQPIZ9%Mi#;Z1}E4APL0prBH)F00jc zU(&qEqJzMIsews04+@M}d^l^6XJFxHuTNa30OQv`toU=zq+wY)oz_Cil`CBwGstyP zJM2Vg0L@roe$*!4P{ zL#x$@I8YrBN*MZb>f)7C*X-q9>(b(Ry51~7gZ*pSXFc_Lz0DxhO#~{B7!>Nnx3G3N zFJHOwd!1LrxC$%aYqG$4WBZKvEN0U)!bEC#ju#s1*;>OOq0Jhx-5j>iMAUlqeW@;U ziQ+}NJPPcYO{U7r$G%;q%dqbcf;Euy*TNucm=2cH(vpqC$?A}MkQJ1!^uYgOkxV|J z!fb}Xy3#VUQzVetr9szI5*{5$;{;X!u|opUp_w1F^k$*KZT}}xv$WN_ML$n%vTkWcr6e1WA)274AV(O%PNi4_v)T)f`^TZKB zMhCv@@0>!d*kCjo;y9(5&@T1YA-!YtAOz9SfnKGtM3RD1ZZefuJ=^Z3d0^8^MK<`m|SWm%oT zaWsUPG9DHyTm~~TPFO%Il`maKV8kW`vyY0bApGnFT35blH~DB~$PYZoR=23A2!(~= z?!A-?5}zX&F!+fF!q@CTkYWAcYfn5LiWf~ND*T*>JX5888n9NFBO}9~q01C4oKPdT zZD?Gt`guWMI4{&uo31x1G9nS*xv4kDWrI!uVGkjO8K);}c_JB8$SZ2M?XtfvroVEEZgF*%HMHR|pRaiBnn{j8VWU zqFCc}{t_a~a>55FNuA|2D#C&+U0wWr8VzxMpM+j zMWee2T8$M;c!CDybeHfL%mH~P%ckx9h3gki z{MfR_!tkAt;E;qXo4+5X6^W7IG>jn8GoBZHBKhM*3`^;o zcODqtdC1grgmDV}V^sPVFm3vC;pl6z57qzI|Cevxdm%hDB;Mh~R-v55cI4L!_wPP= zH3bNd9JC@W{`{?H+ckf#8LU&F&n!V$_!}}u+$YLXV-mDLEvL^DevE;QYIGg`vm~q< zrN3!tZI#k;8DO@z%pTDzxoi8TiVSXo_8cnJB@4*HIR6_&hWx~XLSWEnv_Ui;E^q#R zs7|X9nX@lE5KIUJCu*(NZzeCQ*kRB*$g={V?T5mHq`~qO9`phpw789Pmv1<{Xv^W- zzyixbOU~Fn?aB>!qiYws-lc1{UZE8%s(mmf$+UCMCoMFL*23js_;gx&R&a}FO2r96 zaOJ$L*Jg9-DOzFyedt&YF%R)Qqck=qF~AYjllmb2_A}i+{sra4rPzR?9kgxM$1R0^ zDg=gxuYI-|dtW5$Hb-1EYPip~It&2!9t8%*!vu=VLXd74j#p*4aBn_js1~8oA9$3^ zKwUE`~9;!ADg`&X@0c5Ky7A1;Sd`rBWxL(|^%y4VoS77uXNFZ)m3`TO+6 zZ57LxY5}bbJLi4cs==$GmB9|i!&tv|^|8hPwL*H#dUS3zAdvU>E*$e#otH-_qO?6| z53&o$eV){}Na1pHS>B80g6CLZkP3gfR;M#XM1+^jEh1uLqOfFt6 z2|@bnMw{QwUcOY&n5}|9hE10aZ0^%&HLTD9r%tbPV8OJ<$1@HSTCY;ET=j_X(9*Du zWz$9`7JBaWuOy&ZC1xN3tx;0ZpyrM1H=@6L`rPGBluJpZNufUqAxxM=CJ(iBsGV}a zI_H3{HRK-PMl64h^vvuuH|?6`pjD0e7g`wd9S;_Zr7(?$$cXR~xi$$~%twTuEnrUB zM~H_bq`s1gMT-?K7+)LKQKnR4;`QXurf)lbi7Y$>4_M*Sy!O9#&FJr5xO8pPf=!3g zDcY0AS?ZT;4Z@3K;X(y!=QW*OzkQc||BaU#<#oNz9O2VrFyn)?%nK%ysdB)8X4y=r ztcijLXuHkf%#!$0iZmCzG=5HvFvlwWBxN(DdDDBsy`c1X+@7uT;QJ$ynMR_u2ojE# zcQ@DRK^Z%EU;JBs`dmsBD>Cfc_q!b)IBDrgz!06DzBzSZOTOQ?>o{Ox5C{B=DT~%E zm^|V+6)VH9$Q4B`T57Oa$nc06W>&V%KqeRY8F5WN=e@-G`cYP9kc&U>Q#r5a)M~ZU znjT>ykg2P=NKAw_IToANmGusrw)!lPsO@0EB#WpG3WR-!ef6zC2NNM3goXsipIGzt zOG)kC`(6T?Q<@9r%i(V~63QxQJS{!*M$K*?{fLwi^~4ViHGKZ>Q|DJlhKHTD+3hBW z!)e5pjq;@vt641OP}kgBAN+Ir{9(y@!(t|n{kB+h#XejC*bj&)bj+J=<9l~+I|!Q^ zaXt#H5uP}CZcWoZW49vr$ap9)V6!J@(Cf2RXu&N>%)jxhx_rWeZrICB3*_~9I2|mV zRE`nwfF3a((2&o+U-13-!9_xXg9<`COc^t=fu;6ofmpdcIL?v{HkfI(zw&VbfQi zB-W4VLwgn@R_Z(VQmr4)`1$tj-5vVUa@oyPvUxweReynShe@ugkj*oP zH>+8#q9U*~v_{ua!Vea#(y*K%&6SgkFUB-%yTA)LscfoLmXicGY#DT@&}F(*HVwG~ zeR(z9bDW!1%}rpSgL%l_!*IfVIkmD`h8NZP*hMB{Al`UPOSbh4NbC>=y zR}w6;;Q|fH@x&6)_>Ir77Wt>dNN{v^_>Jvzs=+!10VMVL*T-y>7y@y2pTv;Ic#yZs)vQv!WL}Sl z)n?B`o~;`Bi3f6vi`}mWPTi@!Z0+nfdv+KMg=mb2?XyQ-Xw-YuN`i-ReLEJeSgv$a z`kO0%-7@c&{U>h&Aw|U7l>RM5O!S|!o}rXX^Gj`BXiwMk*U^)I4xP5@u+%<{z%$Z@ z^nbNKEYq>|3v~s7;V2P``ixs}Q0j~5=9v6J_bNt%Ap+KY;nKCkg0OG{5Bu1Kzu}~P zhQbBoLz_NVrz5O;X#bus3If9q7~3;`-J2}jSyG>}rSHMuKsct^$d##5-rdA78dha~ zvLr!)Eb7o|z+qP)e22>+%xsC@WCDf6EGP?V^;@O#M9>ojOf}p~E<2k3+;&OG+j9Q= zaY9Rh*}ROSiNydaj?)Q)9m`T}=+?1$=a)OTZZBv(PEiYD7;e?NEo1tBxe)K)W|pr0 zZGa$!MGKOqMF4`uZg-eV6factxq3C9hxKgReQ@jfi`OpebXq$$muaQI4E%lkZKspf zw`tbsg&0bz3R z3M0Z!@UCXIYViui1pD!`Z?#NoLgBQc@!9;q9Tja<)fbMHV&BU;X6Dqlas}hrN%y8 z0tuaYP8MFj=+hzYrM698bqY)n(*u^YajXa)UttdPI3^}GCbBf$u1zyXJTGVpHcXc| z*awd*i9(kA#W+sHnSAH|*%#j&gERAG4xh2+Wcjis7B;9;<7HUav(HrNJ^r1SE)Mzb zr*o~IEgRmdX`|QZ@16MP?1m9De?B4g32JdX%PSZLVI&NVJ)_wi3hTXk%+Z zw*f(iEdHXUz~N-Ith-A=1LlDU7*Jr~B+T2f8IyjW<=x$t?7z^$kcW6c&>c~rK%5&M zTJ{|D?f%o(Q-Px43lEScG9Nb{?%qo|)A;q#IBqKIqwiP$Q@Bw4{1z`ZcpKJLF{y0V zS)aUq;q}q8j$%A?>(t_P`g>>2U)s@k{DMEF1vN_r4+ywZL&sP(j*2Kw$|WSkm;UC1?nU4IYRN%qeuz?F1vg8%A|2Gc z6Dv3)V9ll({ZbnHz|<#@kvDz=mJkLFcf5^}Jj*rfjC3WTh zM~1scmKH0NPy}0%@PPFhJMRRLd~qaw*tDUqn(2BD{Pp*#2}^!IgyAmSbN~q-OE>R?Ji!l(2KJF!DuRulo8DKrf+|a z14j->ZBmOOm4z>K E< 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 LNkvXXu0mjfMbXfd literal 0 HcmV?d00001 diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/login_pic.png b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/login_pic.png new file mode 100644 index 0000000000000000000000000000000000000000..0a01655983d72ce2c2f2d211edfe6c5bbc1a7d0d GIT binary patch literal 100033 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%0Dlk4|u6=Ph=?+7-%% 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 Tk1dJG00000NkvXXu0mjf0+5N* literal 0 HcmV?d00001 diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/logo.png b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/img/logo.png index bd213005865306778b6f40d12e47a6fe77a903b4..8c128735423e2d84220b0a50422eb75bb4f3841d 100644 GIT binary patch literal 24488 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 E< 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 LNkvXXu0mjfMbXfd literal 9754 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 diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/charts-analy.js b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/charts-analy.js new file mode 100644 index 00000000..bea97597 --- /dev/null +++ b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/charts-analy.js @@ -0,0 +1,257 @@ +//*****************统计分析图表 + +var echartUtil = { + echartRingData: [ + { value: 1048, name: '生态环境检查' }, + { value: 735, name: '卫生健康检查' }, + { value: 580, name: '商务领域检查' }, + { value: 484, name: '财务领域检查' }, + { value: 300, name: '水务领域检查' } + ], + + /** + * 初始化echarts + * @param targetId + */ + initEchartRing:function (targetId) { + var myChart = echarts.init(document.getElementById(targetId)); + // 圆环图各环节的颜色 + var option = { + tooltip: { + trigger: 'item' + }, + series: [ + { + name: '统计图表', + type: 'pie', + radius: ['43%', '60%'], + avoidLabelOverlap: false, + itemStyle: { + borderRadius: 0, + borderColor: '#fff', + borderWidth: 1 + }, + emphasis: { + label: { + show: true, + fontSize: '14', + fontWeight: 'bold' + } + }, + data: echartUtil.echartRingData, + color: ['#0038bb','#0047eb','#1c60ff','#3f78ff','#6592ff','#8aadff'], + } + ] + }; + + // 使用刚指定的配置项和数据显示图表。 + myChart.setOption(option); + window.addEventListener("resize",function(){ + myChart.resize(); + }); + }, + + dataX: ['生态环境检查', '卫生健康检查', '商务领域检查', '财务领域检查', '水务领域检查'], + dataY: ['30', '20', '15', '25', '10'], + dataPercent: ['30', '20', '15', '25', '10'], + dataSum: new Array(echartUtil.dataX.length).fill(100) +} + +/*******1.检查类别***********/ + var dataX = ['生态环境检查', '卫生健康检查', '商务领域检查', '财务领域检查', '水务领域检查'] + var dataY = ['30', '20', '15', '25', '10']; + var dataPercent = ['30', '20', '15', '25', '10']; + var dataSum = new Array(dataX.length).fill(100); + var data = { + dataX: dataX, + dataY: dataY, + dataSum: dataSum, + dataPercent: dataPercent, + } + initSchedule(data); + + function initSchedule (dataAll) { + var _this = this; + var myChartLine = echarts.init(document.getElementById('echartLine')); + var myColor = ['#3C83FF'] + var option = { + grid: { //直角坐标系内绘图网格 + top: '10%', + bottom: '10%', + left: '35%', //grid 组件离容器左侧的距离, + //left的值可以是80这样具体像素值, + //也可以是'80%'这样相对于容器高度的百分比 + right: '15%', + //containLabel: true //gid区域是否包含坐标轴的刻度标签。为true的时候, + // left/right/top/bottom/width/height决定的是包括了坐标轴标签在内的 + //所有内容所形成的矩形的位置.常用于【防止标签溢出】的场景 + }, + xAxis: { //直角坐标系grid中的x轴, + //一般情况下单个grid组件最多只能放上下两个x轴, + //多于两个x轴需要通过配置offset属性防止同个位置多个x轴的重叠。 + type: 'value', //坐标轴类型,分别有: + //'value'-数值轴;'category'-类目轴; + //'time'-时间轴;'log'-对数轴 + splitLine: { + show: false + }, //坐标轴在 grid 区域中的分隔线 + axisLabel: { + show: false + }, //坐标轴刻度标签 + axisTick: { + show: false + }, //坐标轴刻度 + axisLine: { + show: false + }, //坐标轴轴线 + }, + yAxis: { + type: 'category', + axisTick: { + show: false + }, + axisLine: { + show: false + }, + axisLabel: { + color: 'rgba(0,0,0,.7)', + fontSize: 14, + formatter: function(data) { + var traceValue; + for (var i = 0; i < dataAll.dataX.length; i++) { + if (data === dataAll.dataX[i]) { + traceValue = dataAll.dataY[i] + break + } + } + var arr = [ + '{a|' + data + '}', + '{b|' + traceValue + '}', + '{c|件}' + ] + return arr.join('') + }, + textStyle: { + rich: { + a: { + fontSize: 14, + width: 100 + }, + b: { + fontSize: 14, + align: 'center', + color: '#3C83FF', + fontWeight: 600, + }, + c: { + padding: [0, 0, 0, 5], + fontSize: 14, + align: 'center', + } + } + }, + }, + data: dataAll.dataX //类目数据,在类目轴(type: 'category')中有效。 + //如果没有设置 type,但是设置了axis.data,则认为type 是 'category'。 + }, + series: [ //系列列表。每个系列通过 type 决定自己的图表类型 + { + name: '%', //系列名称 + type: 'bar', //柱状、条形图 + barWidth: 15, //柱条的宽度,默认自适应 + data: dataAll.dataPercent, //系列中数据内容数组 + label: { //图形上的文本标签 + show: true, + position: 'right', //标签的位置 + offset: [0, 40], //标签文字的偏移,此处表示向上偏移40 + //formatter: '{c}{a}',//标签内容格式器 {a}-系列名,{b}-数据名,{c}-数据值 + formatter: function(data) { + //.toFixed(0)去掉小数位,如果为2就是保留两位小数 + //let b = data.percent.toFixed(0) + "%"; + //subText = b; + return ''; + }, + color: 'rgba(0,0,0,.7)', //标签字体颜色 + fontSize: 26 //标签字号 + }, + itemStyle: { //图形样式 + normal: { //normal 图形在默认状态下的样式; + //emphasis图形在高亮状态下的样式 + barBorderRadius: 10, //柱条圆角半径,单位px. + //此处统一设置4个角的圆角大小; + //也可以分开设置[10,10,10,10]顺时针左上、右上、右下、左下 + color: function(params) { + var num = myColor.length; //得到myColor颜色数组的长度 + return myColor[params.dataIndex % num]; //返回颜色数组中的一个对应的颜色值 + }, + } + }, + zlevel: 1 //柱状图所有图形的 zlevel 值, + //zlevel 大的 Canvas 会放在 zlevel 小的 Canvas 的上面 + }, + { + name: '进度条背景', + type: 'bar', + label: { //图形上的文本标签 + show: true, + position: 'right', //标签的位置 + offset: [0, 0], //标签文字的偏移,此处表示向上偏移40 + //formatter: '{c}{a}',//标签内容格式器 {a}-系列名,{b}-数据名,{c}-数据值 + formatter: function(data) { + //.toFixed(0)去掉小数位,如果为2就是保留两位小数 + var traceValue; + for (var i = 0; i < dataAll.dataX.length; i++) { + if (data.name === dataAll.dataX[i]) { + traceValue = dataAll.dataPercent[i] + break + } + } + var arr = [ + '{a|' + traceValue + '}', + '{b|%}' + ] + return arr.join(''); + }, + textStyle: { + rich: { + a: { + fontSize: 14, + color: 'rgba(0,0,0,0.7)', + fontWeight: 560, + padding: [0, 0, 0, 15], + }, + b: { + fontSize: 14, + color: 'rgba(0,0,0,0.7)', + padding: [0, 0, 0, 3], + align: 'center', + }, + } + }, + }, + barGap: '-100%', //不同系列的柱间距离,为百分比。 + // 在同一坐标系上,此属性会被多个 'bar' 系列共享。 + // 此属性应设置于此坐标系中最后一个 'bar' 系列上才会生效, + //并且是对此坐标系中所有 'bar' 系列生效。 + barWidth: 15, + data: dataAll.dataSum, + + color: '#DEE0E3', //柱条颜色 + itemStyle: { + normal: { + barBorderRadius: 10 + } + } + }, + + ] + }; + myChartLine.setOption(option, true); +}; + + +// 使用刚指定的配置项和数据显示图表。 + myChart.setOption(option); + window.addEventListener("resize",function(){ + myChart.resize(); + }); \ No newline at end of file diff --git a/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/echarts.min.js b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/echarts.min.js new file mode 100644 index 00000000..b886fdea --- /dev/null +++ b/lib/EmergencyService/zdxtEmergencyBootStart/src/main/resources/static/js/echarts.min.js @@ -0,0 +1,45 @@ + +/* +* Licensed to the Apache Software Foundation (ASF) under one +* or more contributor license agreements. See the NOTICE file +* distributed with this work for additional information +* regarding copyright ownership. The ASF licenses this file +* to you under the Apache License, Version 2.0 (the +* "License"); you may not use this file except in compliance +* with the License. You may obtain a copy of the License at +* +* http://www.apache.org/licenses/LICENSE-2.0 +* +* Unless required by applicable law or agreed to in writing, +* software distributed under the License is distributed on an +* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +* KIND, either express or implied. See the License for the +* specific language governing permissions and limitations +* under the License. +*/ + +!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).echarts={})}(this,(function(t){"use strict"; +/*! ***************************************************************************** + Copyright (c) Microsoft Corporation. + + Permission to use, copy, modify, and/or distribute this software for any + purpose with or without fee is hereby granted. + + THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH + REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, + INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM + LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR + OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR + PERFORMANCE OF THIS SOFTWARE. + ***************************************************************************** */var e=function(t,n){return(e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])})(t,n)};function n(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function i(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(i.prototype=n.prototype,new i)}var i=function(){return(i=Object.assign||function(t){for(var e,n=1,i=arguments.length;n18);a&&(n.weChat=!0);e.canvasSupported=!!document.createElement("canvas").getContext,e.svgSupported="undefined"!=typeof SVGRect,e.touchEventsSupported="ontouchstart"in window&&!n.ie&&!n.edge,e.pointerEventsSupported="onpointerdown"in window&&(n.edge||n.ie&&+n.version>=11),e.domSupported="undefined"!=typeof document;var s=document.documentElement.style;e.transform3dSupported=(n.ie&&"transition"in s||n.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in s)&&!("OTransition"in s),e.transformSupported=e.transform3dSupported||n.ie&&+n.version>=9}(navigator.userAgent,a);var s={"[object Function]":!0,"[object RegExp]":!0,"[object Date]":!0,"[object Error]":!0,"[object CanvasGradient]":!0,"[object CanvasPattern]":!0,"[object Image]":!0,"[object Canvas]":!0},l={"[object Int8Array]":!0,"[object Uint8Array]":!0,"[object Uint8ClampedArray]":!0,"[object Int16Array]":!0,"[object Uint16Array]":!0,"[object Int32Array]":!0,"[object Uint32Array]":!0,"[object Float32Array]":!0,"[object Float64Array]":!0},u=Object.prototype.toString,h=Array.prototype,c=h.forEach,p=h.filter,d=h.slice,f=h.map,g=function(){}.constructor,y=g?g.prototype:null,v={};function m(t,e){v[t]=e}var _=2311;function x(){return _++}function b(){for(var t=[],e=0;e>1)%2;a.style.cssText=["position: absolute","visibility: hidden","padding: 0","margin: 0","border-width: 0","user-select: none","width:0","height:0",i[s]+":0",r[l]+":0",i[1-s]+":auto",r[1-l]+":auto",""].join("!important;"),t.appendChild(a),n.push(a)}return n}(e,o),o,r);if(s)return s(t,n,i),!0}return!1}function Yt(t){return"CANVAS"===t.nodeName.toUpperCase()}var Zt="undefined"!=typeof window&&!!window.addEventListener,jt=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,qt=[];function Kt(t,e,n,i){return n=n||{},i||!a.canvasSupported?$t(t,e,n):a.browser.firefox&&null!=e.layerX&&e.layerX!==e.offsetX?(n.zrX=e.layerX,n.zrY=e.layerY):null!=e.offsetX?(n.zrX=e.offsetX,n.zrY=e.offsetY):$t(t,e,n),n}function $t(t,e,n){if(a.domSupported&&t.getBoundingClientRect){var i=e.clientX,r=e.clientY;if(Yt(t)){var o=t.getBoundingClientRect();return n.zrX=i-o.left,void(n.zrY=r-o.top)}if(Xt(qt,t,i,r))return n.zrX=qt[0],void(n.zrY=qt[1])}n.zrX=n.zrY=0}function Jt(t){return t||window.event}function Qt(t,e,n){if(null!=(e=Jt(e)).zrX)return e;var i=e.type;if(i&&i.indexOf("touch")>=0){var r="touchend"!==i?e.targetTouches[0]:e.changedTouches[0];r&&Kt(t,r,e,n)}else{Kt(t,e,e,n);var o=function(t){var e=t.wheelDelta;if(e)return e;var n=t.deltaX,i=t.deltaY;if(null==n||null==i)return e;return 3*(0!==i?Math.abs(i):Math.abs(n))*(i>0?-1:i<0?1:n>0?-1:1)}(e);e.zrDelta=o?o/120:-(e.detail||0)/3}var a=e.button;return null==e.which&&void 0!==a&&jt.test(e.type)&&(e.which=1&a?1:2&a?3:4&a?2:0),e}function te(t,e,n,i){Zt?t.addEventListener(e,n,i):t.attachEvent("on"+e,n)}var ee=Zt?function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0}:function(t){t.returnValue=!1,t.cancelBubble=!0};function ne(t){return 2===t.which||3===t.which}var ie=function(){function t(){this._track=[]}return t.prototype.recognize=function(t,e,n){return this._doTrack(t,e,n),this._recognize(t)},t.prototype.clear=function(){return this._track.length=0,this},t.prototype._doTrack=function(t,e,n){var i=t.touches;if(i){for(var r={points:[],touches:[],target:e,event:t},o=0,a=i.length;o1&&r&&r.length>1){var a=re(r)/re(o);!isFinite(a)&&(a=1),e.pinchScale=a;var s=[((i=r)[0][0]+i[1][0])/2,(i[0][1]+i[1][1])/2];return e.pinchX=s[0],e.pinchY=s[1],{type:"pinch",target:t[0].target,event:e}}}}},ae="silent";function se(){ee(this.event)}var le=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.handler=null,e}return n(e,t),e.prototype.dispose=function(){},e.prototype.setCursor=function(){},e}(Gt),ue=function(t,e){this.x=t,this.y=e},he=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],ce=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o._hovered=new ue(0,0),o.storage=e,o.painter=n,o.painterRoot=r,i=i||new le,o.proxy=null,o.setHandlerProxy(i),o._draggingMgr=new Vt(o),o}return n(e,t),e.prototype.setHandlerProxy=function(t){this.proxy&&this.proxy.dispose(),t&&(P(he,(function(e){t.on&&t.on(e,this[e],this)}),this),t.handler=this),this.proxy=t},e.prototype.mousemove=function(t){var e=t.zrX,n=t.zrY,i=de(this,e,n),r=this._hovered,o=r.target;o&&!o.__zr&&(o=(r=this.findHover(r.x,r.y)).target);var a=this._hovered=i?new ue(e,n):this.findHover(e,n),s=a.target,l=this.proxy;l.setCursor&&l.setCursor(s?s.cursor:"default"),o&&s!==o&&this.dispatchToElement(r,"mouseout",t),this.dispatchToElement(a,"mousemove",t),s&&s!==o&&this.dispatchToElement(a,"mouseover",t)},e.prototype.mouseout=function(t){var e=t.zrEventControl;"only_globalout"!==e&&this.dispatchToElement(this._hovered,"mouseout",t),"no_globalout"!==e&&this.trigger("globalout",{type:"globalout",event:t})},e.prototype.resize=function(){this._hovered=new ue(0,0)},e.prototype.dispatch=function(t,e){var n=this[t];n&&n.call(this,e)},e.prototype.dispose=function(){this.proxy.dispose(),this.storage=null,this.proxy=null,this.painter=null},e.prototype.setCursorStyle=function(t){var e=this.proxy;e.setCursor&&e.setCursor(t)},e.prototype.dispatchToElement=function(t,e,n){var i=(t=t||{}).target;if(!i||!i.silent){for(var r="on"+e,o=function(t,e,n){return{type:t,event:n,target:e.target,topTarget:e.topTarget,cancelBubble:!1,offsetX:n.zrX,offsetY:n.zrY,gestureEvent:n.gestureEvent,pinchX:n.pinchX,pinchY:n.pinchY,pinchScale:n.pinchScale,wheelDelta:n.zrDelta,zrByTouch:n.zrByTouch,which:n.which,stop:se}}(e,t,n);i&&(i[r]&&(o.cancelBubble=!!i[r].call(i,o)),i.trigger(e,o),i=i.__hostTarget?i.__hostTarget:i.parent,!o.cancelBubble););o.cancelBubble||(this.trigger(e,o),this.painter&&this.painter.eachOtherLayer&&this.painter.eachOtherLayer((function(t){"function"==typeof t[r]&&t[r].call(t,o),t.trigger&&t.trigger(e,o)})))}},e.prototype.findHover=function(t,e,n){for(var i=this.storage.getDisplayList(),r=new ue(t,e),o=i.length-1;o>=0;o--){var a=void 0;if(i[o]!==n&&!i[o].ignore&&(a=pe(i[o],t,e))&&(!r.topTarget&&(r.topTarget=i[o]),a!==ae)){r.target=i[o];break}}return r},e.prototype.processGesture=function(t,e){this._gestureMgr||(this._gestureMgr=new ie);var n=this._gestureMgr;"start"===e&&n.clear();var i=n.recognize(t,this.findHover(t.zrX,t.zrY,null).target,this.proxy.dom);if("end"===e&&n.clear(),i){var r=i.type;t.gestureEvent=r;var o=new ue;o.target=i.target,this.dispatchToElement(o,r,i.event)}},e}(Gt);function pe(t,e,n){if(t[t.rectHover?"rectContain":"contain"](e,n)){for(var i=t,r=void 0,o=!1;i;){if(i.ignoreClip&&(o=!0),!o){var a=i.getClipPath();if(a&&!a.contain(e,n))return!1;i.silent&&(r=!0)}var s=i.__hostTarget;i=s||i.parent}return!r||ae}return!1}function de(t,e,n){var i=t.painter;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}P(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],(function(t){ce.prototype[t]=function(e){var n,i,r=e.zrX,o=e.zrY,a=de(this,r,o);if("mouseup"===t&&a||(i=(n=this.findHover(r,o)).target),"mousedown"===t)this._downEl=i,this._downPoint=[e.zrX,e.zrY],this._upEl=i;else if("mouseup"===t)this._upEl=i;else if("click"===t){if(this._downEl!==this._upEl||!this._downPoint||kt(this._downPoint,[e.zrX,e.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,t,e)}}));function fe(t,e,n,i){var r=e+1;if(r===n)return 1;if(i(t[r++],t[e])<0){for(;r=0;)r++;return r-e}function ge(t,e,n,i,r){for(i===e&&i++;i>>1])<0?l=o:s=o+1;var u=i-s;switch(u){case 3:t[s+3]=t[s+2];case 2:t[s+2]=t[s+1];case 1:t[s+1]=t[s];break;default:for(;u>0;)t[s+u]=t[s+u-1],u--}t[s]=a}}function ye(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])>0){for(s=i-r;l0;)a=l,(l=1+(l<<1))<=0&&(l=s);l>s&&(l=s),a+=r,l+=r}else{for(s=r+1;ls&&(l=s);var u=a;a=r-l,l=r-u}for(a++;a>>1);o(t,e[n+h])>0?a=h+1:l=h}return l}function ve(t,e,n,i,r,o){var a=0,s=0,l=1;if(o(t,e[n+r])<0){for(s=r+1;ls&&(l=s);var u=a;a=r-l,l=r-u}else{for(s=i-r;l=0;)a=l,(l=1+(l<<1))<=0&&(l=s);l>s&&(l=s),a+=r,l+=r}for(a++;a>>1);o(t,e[n+h])<0?l=h:a=h+1}return l}function me(t,e){var n,i,r=7,o=0;t.length;var a=[];function s(s){var l=n[s],u=i[s],h=n[s+1],c=i[s+1];i[s]=u+c,s===o-3&&(n[s+1]=n[s+2],i[s+1]=i[s+2]),o--;var p=ve(t[h],t,l,u,0,e);l+=p,0!==(u-=p)&&0!==(c=ye(t[l+u-1],t,h,c,c-1,e))&&(u<=c?function(n,i,o,s){var l=0;for(l=0;l=7||d>=7);if(f)break;g<0&&(g=0),g+=2}if((r=g)<1&&(r=1),1===i){for(l=0;l=0;l--)t[d+l]=t[p+l];return void(t[c]=a[h])}var f=r;for(;;){var g=0,y=0,v=!1;do{if(e(a[h],t[u])<0){if(t[c--]=t[u--],g++,y=0,0==--i){v=!0;break}}else if(t[c--]=a[h--],y++,g=0,1==--s){v=!0;break}}while((g|y)=0;l--)t[d+l]=t[p+l];if(0===i){v=!0;break}}if(t[c--]=a[h--],1==--s){v=!0;break}if(0!==(y=s-ye(t[u],a,0,s,s-1,e))){for(s-=y,d=(c-=y)+1,p=(h-=y)+1,l=0;l=7||y>=7);if(v)break;f<0&&(f=0),f+=2}(r=f)<1&&(r=1);if(1===s){for(d=(c-=i)+1,p=(u-=i)+1,l=i-1;l>=0;l--)t[d+l]=t[p+l];t[c]=a[h]}else{if(0===s)throw new Error;for(p=c-(s-1),l=0;l1;){var t=o-2;if(t>=1&&i[t-1]<=i[t]+i[t+1]||t>=2&&i[t-2]<=i[t]+i[t-1])i[t-1]i[t+1])break;s(t)}},forceMergeRuns:function(){for(;o>1;){var t=o-2;t>0&&i[t-1]=32;)e|=1&t,t>>=1;return t+e}(r);do{if((o=fe(t,n,i,e))s&&(l=s),ge(t,n,n+l,n+o,e),o=l}a.pushRun(n,o),a.mergeRuns(),r-=o,n+=o}while(0!==r);a.forceMergeRuns()}}}var xe=!1;function be(){xe||(xe=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function we(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}var Se=function(){function t(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=we}return t.prototype.traverse=function(t,e){for(var n=0;n0&&(u.__clipPaths=[]),isNaN(u.z)&&(be(),u.z=0),isNaN(u.z2)&&(be(),u.z2=0),isNaN(u.zlevel)&&(be(),u.zlevel=0),this._displayList[this._displayListLen++]=u}var h=t.getDecalElement&&t.getDecalElement();h&&this._updateAndAddDisplayable(h,e,n);var c=t.getTextGuideLine();c&&this._updateAndAddDisplayable(c,e,n);var p=t.getTextContent();p&&this._updateAndAddDisplayable(p,e,n)}},t.prototype.addRoot=function(t){t.__zr&&t.__zr.storage===this||this._roots.push(t)},t.prototype.delRoot=function(t){if(t instanceof Array)for(var e=0,n=t.length;e=0&&this._roots.splice(i,1)}},t.prototype.delAllRoots=function(){this._roots=[],this._displayList=[],this._displayListLen=0},t.prototype.getRoots=function(){return this._roots},t.prototype.dispose=function(){this._displayList=null,this._roots=null},t}(),Me="undefined"!=typeof window&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(t){return setTimeout(t,16)},Ie={linear:function(t){return t},quadraticIn:function(t){return t*t},quadraticOut:function(t){return t*(2-t)},quadraticInOut:function(t){return(t*=2)<1?.5*t*t:-.5*(--t*(t-2)-1)},cubicIn:function(t){return t*t*t},cubicOut:function(t){return--t*t*t+1},cubicInOut:function(t){return(t*=2)<1?.5*t*t*t:.5*((t-=2)*t*t+2)},quarticIn:function(t){return t*t*t*t},quarticOut:function(t){return 1- --t*t*t*t},quarticInOut:function(t){return(t*=2)<1?.5*t*t*t*t:-.5*((t-=2)*t*t*t-2)},quinticIn:function(t){return t*t*t*t*t},quinticOut:function(t){return--t*t*t*t*t+1},quinticInOut:function(t){return(t*=2)<1?.5*t*t*t*t*t:.5*((t-=2)*t*t*t*t+2)},sinusoidalIn:function(t){return 1-Math.cos(t*Math.PI/2)},sinusoidalOut:function(t){return Math.sin(t*Math.PI/2)},sinusoidalInOut:function(t){return.5*(1-Math.cos(Math.PI*t))},exponentialIn:function(t){return 0===t?0:Math.pow(1024,t-1)},exponentialOut:function(t){return 1===t?1:1-Math.pow(2,-10*t)},exponentialInOut:function(t){return 0===t?0:1===t?1:(t*=2)<1?.5*Math.pow(1024,t-1):.5*(2-Math.pow(2,-10*(t-1)))},circularIn:function(t){return 1-Math.sqrt(1-t*t)},circularOut:function(t){return Math.sqrt(1- --t*t)},circularInOut:function(t){return(t*=2)<1?-.5*(Math.sqrt(1-t*t)-1):.5*(Math.sqrt(1-(t-=2)*t)+1)},elasticIn:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),-n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4))},elasticOut:function(t){var e,n=.1;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),n*Math.pow(2,-10*t)*Math.sin((t-e)*(2*Math.PI)/.4)+1)},elasticInOut:function(t){var e,n=.1,i=.4;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=i*Math.asin(1/n)/(2*Math.PI),(t*=2)<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/i)*.5+1)},backIn:function(t){var e=1.70158;return t*t*((e+1)*t-e)},backOut:function(t){var e=1.70158;return--t*t*((e+1)*t+e)+1},backInOut:function(t){var e=2.5949095;return(t*=2)<1?t*t*((e+1)*t-e)*.5:.5*((t-=2)*t*((e+1)*t+e)+2)},bounceIn:function(t){return 1-Ie.bounceOut(1-t)},bounceOut:function(t){return t<1/2.75?7.5625*t*t:t<2/2.75?7.5625*(t-=1.5/2.75)*t+.75:t<2.5/2.75?7.5625*(t-=2.25/2.75)*t+.9375:7.5625*(t-=2.625/2.75)*t+.984375},bounceInOut:function(t){return t<.5?.5*Ie.bounceIn(2*t):.5*Ie.bounceOut(2*t-1)+.5}},Te=function(){function t(t){this._initialized=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=t.life||1e3,this._delay=t.delay||0,this.loop=null!=t.loop&&t.loop,this.gap=t.gap||0,this.easing=t.easing||"linear",this.onframe=t.onframe,this.ondestroy=t.ondestroy,this.onrestart=t.onrestart}return t.prototype.step=function(t,e){if(this._initialized||(this._startTime=t+this._delay,this._initialized=!0),!this._paused){var n=(t-this._startTime-this._pausedTime)/this._life;n<0&&(n=0),n=Math.min(n,1);var i=this.easing,r="string"==typeof i?Ie[i]:i,o="function"==typeof r?r(n):n;if(this.onframe&&this.onframe(o),1===n){if(!this.loop)return!0;this._restart(t),this.onrestart&&this.onrestart()}return!1}this._pausedTime+=e},t.prototype._restart=function(t){var e=(t-this._startTime-this._pausedTime)%this._life;this._startTime=t-e+this.gap,this._pausedTime=0},t.prototype.pause=function(){this._paused=!0},t.prototype.resume=function(){this._paused=!1},t}(),Ce=function(t){this.value=t},De=function(){function t(){this._len=0}return t.prototype.insert=function(t){var e=new Ce(t);return this.insertEntry(e),e},t.prototype.insertEntry=function(t){this.head?(this.tail.next=t,t.prev=this.tail,t.next=null,this.tail=t):this.head=this.tail=t,this._len++},t.prototype.remove=function(t){var e=t.prev,n=t.next;e?e.next=n:this.head=n,n?n.prev=e:this.tail=e,t.next=t.prev=null,this._len--},t.prototype.len=function(){return this._len},t.prototype.clear=function(){this.head=this.tail=null,this._len=0},t}(),Ae=function(){function t(t){this._list=new De,this._maxSize=10,this._map={},this._maxSize=t}return t.prototype.put=function(t,e){var n=this._list,i=this._map,r=null;if(null==i[t]){var o=n.len(),a=this._lastRemovedEntry;if(o>=this._maxSize&&o>0){var s=n.head;n.remove(s),delete i[s.key],r=s.value,this._lastRemovedEntry=s}a?a.value=e:a=new Ce(e),a.key=t,n.insertEntry(a),i[t]=a}return r},t.prototype.get=function(t){var e=this._map[t],n=this._list;if(null!=e)return e!==n.tail&&(n.remove(e),n.insertEntry(e)),e.value},t.prototype.clear=function(){this._list.clear(),this._map={}},t.prototype.len=function(){return this._list.len()},t}(),ke={transparent:[0,0,0,0],aliceblue:[240,248,255,1],antiquewhite:[250,235,215,1],aqua:[0,255,255,1],aquamarine:[127,255,212,1],azure:[240,255,255,1],beige:[245,245,220,1],bisque:[255,228,196,1],black:[0,0,0,1],blanchedalmond:[255,235,205,1],blue:[0,0,255,1],blueviolet:[138,43,226,1],brown:[165,42,42,1],burlywood:[222,184,135,1],cadetblue:[95,158,160,1],chartreuse:[127,255,0,1],chocolate:[210,105,30,1],coral:[255,127,80,1],cornflowerblue:[100,149,237,1],cornsilk:[255,248,220,1],crimson:[220,20,60,1],cyan:[0,255,255,1],darkblue:[0,0,139,1],darkcyan:[0,139,139,1],darkgoldenrod:[184,134,11,1],darkgray:[169,169,169,1],darkgreen:[0,100,0,1],darkgrey:[169,169,169,1],darkkhaki:[189,183,107,1],darkmagenta:[139,0,139,1],darkolivegreen:[85,107,47,1],darkorange:[255,140,0,1],darkorchid:[153,50,204,1],darkred:[139,0,0,1],darksalmon:[233,150,122,1],darkseagreen:[143,188,143,1],darkslateblue:[72,61,139,1],darkslategray:[47,79,79,1],darkslategrey:[47,79,79,1],darkturquoise:[0,206,209,1],darkviolet:[148,0,211,1],deeppink:[255,20,147,1],deepskyblue:[0,191,255,1],dimgray:[105,105,105,1],dimgrey:[105,105,105,1],dodgerblue:[30,144,255,1],firebrick:[178,34,34,1],floralwhite:[255,250,240,1],forestgreen:[34,139,34,1],fuchsia:[255,0,255,1],gainsboro:[220,220,220,1],ghostwhite:[248,248,255,1],gold:[255,215,0,1],goldenrod:[218,165,32,1],gray:[128,128,128,1],green:[0,128,0,1],greenyellow:[173,255,47,1],grey:[128,128,128,1],honeydew:[240,255,240,1],hotpink:[255,105,180,1],indianred:[205,92,92,1],indigo:[75,0,130,1],ivory:[255,255,240,1],khaki:[240,230,140,1],lavender:[230,230,250,1],lavenderblush:[255,240,245,1],lawngreen:[124,252,0,1],lemonchiffon:[255,250,205,1],lightblue:[173,216,230,1],lightcoral:[240,128,128,1],lightcyan:[224,255,255,1],lightgoldenrodyellow:[250,250,210,1],lightgray:[211,211,211,1],lightgreen:[144,238,144,1],lightgrey:[211,211,211,1],lightpink:[255,182,193,1],lightsalmon:[255,160,122,1],lightseagreen:[32,178,170,1],lightskyblue:[135,206,250,1],lightslategray:[119,136,153,1],lightslategrey:[119,136,153,1],lightsteelblue:[176,196,222,1],lightyellow:[255,255,224,1],lime:[0,255,0,1],limegreen:[50,205,50,1],linen:[250,240,230,1],magenta:[255,0,255,1],maroon:[128,0,0,1],mediumaquamarine:[102,205,170,1],mediumblue:[0,0,205,1],mediumorchid:[186,85,211,1],mediumpurple:[147,112,219,1],mediumseagreen:[60,179,113,1],mediumslateblue:[123,104,238,1],mediumspringgreen:[0,250,154,1],mediumturquoise:[72,209,204,1],mediumvioletred:[199,21,133,1],midnightblue:[25,25,112,1],mintcream:[245,255,250,1],mistyrose:[255,228,225,1],moccasin:[255,228,181,1],navajowhite:[255,222,173,1],navy:[0,0,128,1],oldlace:[253,245,230,1],olive:[128,128,0,1],olivedrab:[107,142,35,1],orange:[255,165,0,1],orangered:[255,69,0,1],orchid:[218,112,214,1],palegoldenrod:[238,232,170,1],palegreen:[152,251,152,1],paleturquoise:[175,238,238,1],palevioletred:[219,112,147,1],papayawhip:[255,239,213,1],peachpuff:[255,218,185,1],peru:[205,133,63,1],pink:[255,192,203,1],plum:[221,160,221,1],powderblue:[176,224,230,1],purple:[128,0,128,1],red:[255,0,0,1],rosybrown:[188,143,143,1],royalblue:[65,105,225,1],saddlebrown:[139,69,19,1],salmon:[250,128,114,1],sandybrown:[244,164,96,1],seagreen:[46,139,87,1],seashell:[255,245,238,1],sienna:[160,82,45,1],silver:[192,192,192,1],skyblue:[135,206,235,1],slateblue:[106,90,205,1],slategray:[112,128,144,1],slategrey:[112,128,144,1],snow:[255,250,250,1],springgreen:[0,255,127,1],steelblue:[70,130,180,1],tan:[210,180,140,1],teal:[0,128,128,1],thistle:[216,191,216,1],tomato:[255,99,71,1],turquoise:[64,224,208,1],violet:[238,130,238,1],wheat:[245,222,179,1],white:[255,255,255,1],whitesmoke:[245,245,245,1],yellow:[255,255,0,1],yellowgreen:[154,205,50,1]};function Le(t){return(t=Math.round(t))<0?0:t>255?255:t}function Pe(t){return t<0?0:t>1?1:t}function Oe(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?Le(parseFloat(e)/100*255):Le(parseInt(e,10))}function Re(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?Pe(parseFloat(e)/100):Pe(parseFloat(e))}function Ne(t,e,n){return n<0?n+=1:n>1&&(n-=1),6*n<1?t+(e-t)*n*6:2*n<1?e:3*n<2?t+(e-t)*(2/3-n)*6:t}function ze(t,e,n){return t+(e-t)*n}function Ee(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function Be(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}var Ve=new Ae(20),Ge=null;function Fe(t,e){Ge&&Be(Ge,e),Ge=Ve.put(t,Ge||e.slice())}function He(t,e){if(t){e=e||[];var n=Ve.get(t);if(n)return Be(e,n);var i=(t+="").replace(/ /g,"").toLowerCase();if(i in ke)return Be(e,ke[i]),Fe(t,e),e;var r,o=i.length;if("#"===i.charAt(0))return 4===o||5===o?(r=parseInt(i.slice(1,4),16))>=0&&r<=4095?(Ee(e,(3840&r)>>4|(3840&r)>>8,240&r|(240&r)>>4,15&r|(15&r)<<4,5===o?parseInt(i.slice(4),16)/15:1),Fe(t,e),e):void Ee(e,0,0,0,1):7===o||9===o?(r=parseInt(i.slice(1,7),16))>=0&&r<=16777215?(Ee(e,(16711680&r)>>16,(65280&r)>>8,255&r,9===o?parseInt(i.slice(7),16)/255:1),Fe(t,e),e):void Ee(e,0,0,0,1):void 0;var a=i.indexOf("("),s=i.indexOf(")");if(-1!==a&&s+1===o){var l=i.substr(0,a),u=i.substr(a+1,s-(a+1)).split(","),h=1;switch(l){case"rgba":if(4!==u.length)return 3===u.length?Ee(e,+u[0],+u[1],+u[2],1):Ee(e,0,0,0,1);h=Re(u.pop());case"rgb":return 3!==u.length?void Ee(e,0,0,0,1):(Ee(e,Oe(u[0]),Oe(u[1]),Oe(u[2]),h),Fe(t,e),e);case"hsla":return 4!==u.length?void Ee(e,0,0,0,1):(u[3]=Re(u[3]),We(u,e),Fe(t,e),e);case"hsl":return 3!==u.length?void Ee(e,0,0,0,1):(We(u,e),Fe(t,e),e);default:return}}Ee(e,0,0,0,1)}}function We(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=Re(t[1]),r=Re(t[2]),o=r<=.5?r*(i+1):r+i-r*i,a=2*r-o;return Ee(e=e||[],Le(255*Ne(a,o,n+1/3)),Le(255*Ne(a,o,n)),Le(255*Ne(a,o,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function Ue(t,e){var n=He(t);if(n){for(var i=0;i<3;i++)n[i]=e<0?n[i]*(1-e)|0:(255-n[i])*e+n[i]|0,n[i]>255?n[i]=255:n[i]<0&&(n[i]=0);return Je(n,4===n.length?"rgba":"rgb")}}function Xe(t){var e=He(t);if(e)return((1<<24)+(e[0]<<16)+(e[1]<<8)+ +e[2]).toString(16).slice(1)}function Ye(t,e,n){if(e&&e.length&&t>=0&&t<=1){n=n||[];var i=t*(e.length-1),r=Math.floor(i),o=Math.ceil(i),a=e[r],s=e[o],l=i-r;return n[0]=Le(ze(a[0],s[0],l)),n[1]=Le(ze(a[1],s[1],l)),n[2]=Le(ze(a[2],s[2],l)),n[3]=Pe(ze(a[3],s[3],l)),n}}var Ze=Ye;function je(t,e,n){if(e&&e.length&&t>=0&&t<=1){var i=t*(e.length-1),r=Math.floor(i),o=Math.ceil(i),a=He(e[r]),s=He(e[o]),l=i-r,u=Je([Le(ze(a[0],s[0],l)),Le(ze(a[1],s[1],l)),Le(ze(a[2],s[2],l)),Pe(ze(a[3],s[3],l))],"rgba");return n?{color:u,leftIndex:r,rightIndex:o,value:i}:u}}var qe=je;function Ke(t,e,n,i){var r=He(t);if(t)return r=function(t){if(t){var e,n,i=t[0]/255,r=t[1]/255,o=t[2]/255,a=Math.min(i,r,o),s=Math.max(i,r,o),l=s-a,u=(s+a)/2;if(0===l)e=0,n=0;else{n=u<.5?l/(s+a):l/(2-s-a);var h=((s-i)/6+l/2)/l,c=((s-r)/6+l/2)/l,p=((s-o)/6+l/2)/l;i===s?e=p-c:r===s?e=1/3+h-p:o===s&&(e=2/3+c-h),e<0&&(e+=1),e>1&&(e-=1)}var d=[360*e,n,u];return null!=t[3]&&d.push(t[3]),d}}(r),null!=e&&(r[0]=function(t){return(t=Math.round(t))<0?0:t>360?360:t}(e)),null!=n&&(r[1]=Re(n)),null!=i&&(r[2]=Re(i)),Je(We(r),"rgba")}function $e(t,e){var n=He(t);if(n&&null!=e)return n[3]=Pe(e),Je(n,"rgba")}function Je(t,e){if(t&&t.length){var n=t[0]+","+t[1]+","+t[2];return"rgba"!==e&&"hsva"!==e&&"hsla"!==e||(n+=","+t[3]),e+"("+n+")"}}function Qe(t,e){var n=He(t);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*e:0}var tn=Object.freeze({__proto__:null,parse:He,lift:Ue,toHex:Xe,fastLerp:Ye,fastMapToColor:Ze,lerp:je,mapToColor:qe,modifyHSL:Ke,modifyAlpha:$e,stringify:Je,lum:Qe,random:function(){return"rgb("+Math.round(255*Math.random())+","+Math.round(255*Math.random())+","+Math.round(255*Math.random())+")"}}),en=Array.prototype.slice;function nn(t,e,n){return(e-t)*n+t}function rn(t,e,n,i){for(var r=e.length,o=0;oa)i.length=a;else for(var s=o;s=2&&this.interpolable&&this.maxTime>0},t.prototype.getAdditiveTrack=function(){return this._additiveTrack},t.prototype.addKeyframe=function(t,e){t>=this.maxTime?this.maxTime=t:this._needsSort=!0;var n=this.keyframes,i=n.length;if(this.interpolable)if(L(e)){var r=function(t){return L(t&&t[0])?2:1}(e);if(i>0&&this.arrDim!==r)return void(this.interpolable=!1);if(1===r&&"number"!=typeof e[0]||2===r&&"number"!=typeof e[0][0])return void(this.interpolable=!1);if(i>0){var o=n[i-1];this._isAllValueEqual&&(1===r&&ln(e,o.value)||(this._isAllValueEqual=!1))}this.arrDim=r}else{if(this.arrDim>0)return void(this.interpolable=!1);if("string"==typeof e){var a=He(e);a?(e=a,this.isValueColor=!0):this.interpolable=!1}else if("number"!=typeof e||isNaN(e))return void(this.interpolable=!1);if(this._isAllValueEqual&&i>0){o=n[i-1];(this.isValueColor&&!ln(o.value,e)||o.value!==e)&&(this._isAllValueEqual=!1)}}var s={time:t,value:e,percent:0};return this.keyframes.push(s),s},t.prototype.prepare=function(t){var e=this.keyframes;this._needsSort&&e.sort((function(t,e){return t.time-e.time}));for(var n=this.arrDim,i=e.length,r=e[i-1],o=0;o0&&o!==i-1&&sn(e[o].value,r.value,n);if(t&&this.needsAnimate()&&t.needsAnimate()&&n===t.arrDim&&this.isValueColor===t.isValueColor&&!t._finished){this._additiveTrack=t;var a=e[0].value;for(o=0;o=0&&!(o[n].percent<=e);n--);n=Math.min(n,a-2)}else{for(n=this._lastFrame;ne);n++);n=Math.min(n-1,a-2)}var h=o[n+1],c=o[n];if(c&&h){this._lastFrame=n,this._lastFramePercent=e;var p=h.percent-c.percent;if(0!==p){var d=(e-c.percent)/p,f=i?this._additiveValue:u?gn:t[s];if((l>0||u)&&!f&&(f=this._additiveValue=[]),this.useSpline){var g=o[n][r],y=o[0===n?n:n-1][r],v=o[n>a-2?a-1:n+1][r],m=o[n>a-3?a-1:n+2][r];if(l>0)1===l?hn(f,y,g,v,m,d,d*d,d*d*d):function(t,e,n,i,r,o,a,s){for(var l=e.length,u=e[0].length,h=0;h0)1===l?rn(f,c[r],h[r],d):function(t,e,n,i){for(var r=e.length,o=r&&e[0].length,a=0;a.5?e:t}(c[r],h[r],d),i?this._additiveValue=_:t[s]=_}i&&this._addToTarget(t)}}}},t.prototype._addToTarget=function(t){var e=this.arrDim,n=this.propName,i=this._additiveValue;0===e?this.isValueColor?(He(t[n],gn),on(gn,gn,i,1),t[n]=pn(gn)):t[n]=t[n]+i:1===e?on(t[n],t[n],i,1):2===e&&an(t[n],t[n],i,1)},t}(),vn=function(){function t(t,e,n){this._tracks={},this._trackKeys=[],this._delay=0,this._maxTime=0,this._paused=!1,this._started=0,this._clip=null,this._target=t,this._loop=e,e&&n?b("Can' use additive animation on looped animation."):this._additiveAnimators=n}return t.prototype.getTarget=function(){return this._target},t.prototype.changeTarget=function(t){this._target=t},t.prototype.when=function(t,e){return this.whenWithKeys(t,e,E(e))},t.prototype.whenWithKeys=function(t,e,n){for(var i=this._tracks,r=0;r0)){this._started=1;for(var n=this,i=[],r=0;r1){var a=o.pop();r.addKeyframe(a.time,t[i]),r.prepare(r.getAdditiveTrack())}}}},t}(),mn=function(t){function e(e){var n=t.call(this)||this;return n._running=!1,n._time=0,n._pausedTime=0,n._pauseStart=0,n._paused=!1,e=e||{},n.stage=e.stage||{},n.onframe=e.onframe||function(){},n}return n(e,t),e.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._clipsHead?(this._clipsTail.next=t,t.prev=this._clipsTail,t.next=null,this._clipsTail=t):this._clipsHead=this._clipsTail=t,t.animation=this},e.prototype.addAnimator=function(t){t.animation=this;var e=t.getClip();e&&this.addClip(e)},e.prototype.removeClip=function(t){if(t.animation){var e=t.prev,n=t.next;e?e.next=n:this._clipsHead=n,n?n.prev=e:this._clipsTail=e,t.next=t.prev=t.animation=null}},e.prototype.removeAnimator=function(t){var e=t.getClip();e&&this.removeClip(e),t.animation=null},e.prototype.update=function(t){for(var e=(new Date).getTime()-this._pausedTime,n=e-this._time,i=this._clipsHead;i;){var r=i.next;i.step(e,n)?(i.ondestroy&&i.ondestroy(),this.removeClip(i),i=r):i=r}this._time=e,t||(this.onframe(n),this.trigger("frame",n),this.stage.update&&this.stage.update())},e.prototype._startLoop=function(){var t=this;this._running=!0,Me((function e(){t._running&&(Me(e),!t._paused&&t.update())}))},e.prototype.start=function(){this._running||(this._time=(new Date).getTime(),this._pausedTime=0,this._startLoop())},e.prototype.stop=function(){this._running=!1},e.prototype.pause=function(){this._paused||(this._pauseStart=(new Date).getTime(),this._paused=!0)},e.prototype.resume=function(){this._paused&&(this._pausedTime+=(new Date).getTime()-this._pauseStart,this._paused=!1)},e.prototype.clear=function(){for(var t=this._clipsHead;t;){var e=t.next;t.prev=t.next=t.animation=null,t=e}this._clipsHead=this._clipsTail=null},e.prototype.isFinished=function(){return null==this._clipsHead},e.prototype.animate=function(t,e){e=e||{},this.start();var n=new vn(t,e.loop);return this.addAnimator(n),n},e}(Gt),_n=a.domSupported,xn=(fn={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},{mouse:dn=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],touch:["touchstart","touchend","touchmove"],pointer:O(dn,(function(t){var e=t.replace("mouse","pointer");return fn.hasOwnProperty(e)?e:t}))}),bn=["mousemove","mouseup"],wn=["pointermove","pointerup"],Sn=!1;function Mn(t){var e=t.pointerType;return"pen"===e||"touch"===e}function In(t){t&&(t.zrByTouch=!0)}function Tn(t,e){for(var n=e,i=!1;n&&9!==n.nodeType&&!(i=n.domBelongToZr||n!==e&&n===t.painterRoot);)n=n.parentNode;return i}var Cn=function(t,e){this.stopPropagation=ft,this.stopImmediatePropagation=ft,this.preventDefault=ft,this.type=e.type,this.target=this.currentTarget=t.dom,this.pointerType=e.pointerType,this.clientX=e.clientX,this.clientY=e.clientY},Dn={mousedown:function(t){t=Qt(this.dom,t),this.__mayPointerCapture=[t.zrX,t.zrY],this.trigger("mousedown",t)},mousemove:function(t){t=Qt(this.dom,t);var e=this.__mayPointerCapture;!e||t.zrX===e[0]&&t.zrY===e[1]||this.__togglePointerCapture(!0),this.trigger("mousemove",t)},mouseup:function(t){t=Qt(this.dom,t),this.__togglePointerCapture(!1),this.trigger("mouseup",t)},mouseout:function(t){Tn(this,(t=Qt(this.dom,t)).toElement||t.relatedTarget)||(this.__pointerCapturing&&(t.zrEventControl="no_globalout"),this.trigger("mouseout",t))},wheel:function(t){Sn=!0,t=Qt(this.dom,t),this.trigger("mousewheel",t)},mousewheel:function(t){Sn||(t=Qt(this.dom,t),this.trigger("mousewheel",t))},touchstart:function(t){In(t=Qt(this.dom,t)),this.__lastTouchMoment=new Date,this.handler.processGesture(t,"start"),Dn.mousemove.call(this,t),Dn.mousedown.call(this,t)},touchmove:function(t){In(t=Qt(this.dom,t)),this.handler.processGesture(t,"change"),Dn.mousemove.call(this,t)},touchend:function(t){In(t=Qt(this.dom,t)),this.handler.processGesture(t,"end"),Dn.mouseup.call(this,t),+new Date-+this.__lastTouchMoment<300&&Dn.click.call(this,t)},pointerdown:function(t){Dn.mousedown.call(this,t)},pointermove:function(t){Mn(t)||Dn.mousemove.call(this,t)},pointerup:function(t){Dn.mouseup.call(this,t)},pointerout:function(t){Mn(t)||Dn.mouseout.call(this,t)}};P(["click","dblclick","contextmenu"],(function(t){Dn[t]=function(e){e=Qt(this.dom,e),this.trigger(t,e)}}));var An={pointermove:function(t){Mn(t)||An.mousemove.call(this,t)},pointerup:function(t){An.mouseup.call(this,t)},mousemove:function(t){this.trigger("mousemove",t)},mouseup:function(t){var e=this.__pointerCapturing;this.__togglePointerCapture(!1),this.trigger("mouseup",t),e&&(t.zrEventControl="only_globalout",this.trigger("mouseout",t))}};function kn(t,e){var n=e.domHandlers;a.pointerEventsSupported?P(xn.pointer,(function(i){Pn(e,i,(function(e){n[i].call(t,e)}))})):(a.touchEventsSupported&&P(xn.touch,(function(i){Pn(e,i,(function(r){n[i].call(t,r),function(t){t.touching=!0,null!=t.touchTimer&&(clearTimeout(t.touchTimer),t.touchTimer=null),t.touchTimer=setTimeout((function(){t.touching=!1,t.touchTimer=null}),700)}(e)}))})),P(xn.mouse,(function(i){Pn(e,i,(function(r){r=Jt(r),e.touching||n[i].call(t,r)}))})))}function Ln(t,e){function n(n){Pn(e,n,(function(i){i=Jt(i),Tn(t,i.target)||(i=function(t,e){return Qt(t.dom,new Cn(t,e),!0)}(t,i),e.domHandlers[n].call(t,i))}),{capture:!0})}a.pointerEventsSupported?P(wn,n):a.touchEventsSupported||P(bn,n)}function Pn(t,e,n,i){t.mounted[e]=n,t.listenerOpts[e]=i,te(t.domTarget,e,n,i)}function On(t){var e,n,i,r,o=t.mounted;for(var a in o)o.hasOwnProperty(a)&&(e=t.domTarget,n=a,i=o[a],r=t.listenerOpts[a],Zt?e.removeEventListener(n,i,r):e.detachEvent("on"+n,i));t.mounted={}}var Rn=function(t,e){this.mounted={},this.listenerOpts={},this.touching=!1,this.domTarget=t,this.domHandlers=e},Nn=function(t){function e(e,n){var i=t.call(this)||this;return i.__pointerCapturing=!1,i.dom=e,i.painterRoot=n,i._localHandlerScope=new Rn(e,Dn),_n&&(i._globalHandlerScope=new Rn(document,An)),kn(i,i._localHandlerScope),i}return n(e,t),e.prototype.dispose=function(){On(this._localHandlerScope),_n&&On(this._globalHandlerScope)},e.prototype.setCursor=function(t){this.dom.style&&(this.dom.style.cursor=t||"default")},e.prototype.__togglePointerCapture=function(t){if(this.__mayPointerCapture=null,_n&&+this.__pointerCapturing^+t){this.__pointerCapturing=t;var e=this._globalHandlerScope;t?Ln(this,e):On(e)}},e}(Gt),zn=1;"undefined"!=typeof window&&(zn=Math.max(window.devicePixelRatio||window.screen&&window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var En=zn,Bn="#333",Vn="#ccc";function Gn(){return[1,0,0,1,0,0]}function Fn(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function Hn(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4],t[5]=e[5],t}function Wn(t,e,n){var i=e[0]*n[0]+e[2]*n[1],r=e[1]*n[0]+e[3]*n[1],o=e[0]*n[2]+e[2]*n[3],a=e[1]*n[2]+e[3]*n[3],s=e[0]*n[4]+e[2]*n[5]+e[4],l=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=i,t[1]=r,t[2]=o,t[3]=a,t[4]=s,t[5]=l,t}function Un(t,e,n){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t[4]=e[4]+n[0],t[5]=e[5]+n[1],t}function Xn(t,e,n){var i=e[0],r=e[2],o=e[4],a=e[1],s=e[3],l=e[5],u=Math.sin(n),h=Math.cos(n);return t[0]=i*h+a*u,t[1]=-i*u+a*h,t[2]=r*h+s*u,t[3]=-r*u+h*s,t[4]=h*o+u*l,t[5]=h*l-u*o,t}function Yn(t,e,n){var i=n[0],r=n[1];return t[0]=e[0]*i,t[1]=e[1]*r,t[2]=e[2]*i,t[3]=e[3]*r,t[4]=e[4]*i,t[5]=e[5]*r,t}function Zn(t,e){var n=e[0],i=e[2],r=e[4],o=e[1],a=e[3],s=e[5],l=n*a-o*i;return l?(l=1/l,t[0]=a*l,t[1]=-o*l,t[2]=-i*l,t[3]=n*l,t[4]=(i*s-a*r)*l,t[5]=(o*r-n*s)*l,t):null}function jn(t){var e=[1,0,0,1,0,0];return Hn(e,t),e}var qn=Object.freeze({__proto__:null,create:Gn,identity:Fn,copy:Hn,mul:Wn,translate:Un,rotate:Xn,scale:Yn,invert:Zn,clone:jn}),Kn=Fn,$n=5e-5;function Jn(t){return t>$n||t<-5e-5}var Qn,ti,ei=[],ni=[],ii=[1,0,0,1,0,0],ri=Math.abs,oi=function(){function t(){}return t.prototype.getLocalTransform=function(e){return t.getLocalTransform(this,e)},t.prototype.setPosition=function(t){this.x=t[0],this.y=t[1]},t.prototype.setScale=function(t){this.scaleX=t[0],this.scaleY=t[1]},t.prototype.setSkew=function(t){this.skewX=t[0],this.skewY=t[1]},t.prototype.setOrigin=function(t){this.originX=t[0],this.originY=t[1]},t.prototype.needLocalTransform=function(){return Jn(this.rotation)||Jn(this.x)||Jn(this.y)||Jn(this.scaleX-1)||Jn(this.scaleY-1)},t.prototype.updateTransform=function(){var t=this.parent&&this.parent.transform,e=this.needLocalTransform(),n=this.transform;e||t?(n=n||[1,0,0,1,0,0],e?this.getLocalTransform(n):Kn(n),t&&(e?Wn(n,t,n):Hn(n,t)),this.transform=n,this._resolveGlobalScaleRatio(n)):n&&Kn(n)},t.prototype._resolveGlobalScaleRatio=function(t){var e=this.globalScaleRatio;if(null!=e&&1!==e){this.getGlobalScale(ei);var n=ei[0]<0?-1:1,i=ei[1]<0?-1:1,r=((ei[0]-n)*e+n)/ei[0]||0,o=((ei[1]-i)*e+i)/ei[1]||0;t[0]*=r,t[1]*=r,t[2]*=o,t[3]*=o}this.invTransform=this.invTransform||[1,0,0,1,0,0],Zn(this.invTransform,t)},t.prototype.getComputedTransform=function(){for(var t=this,e=[];t;)e.push(t),t=t.parent;for(;t=e.pop();)t.updateTransform();return this.transform},t.prototype.setLocalTransform=function(t){if(t){var e=t[0]*t[0]+t[1]*t[1],n=t[2]*t[2]+t[3]*t[3],i=Math.atan2(t[1],t[0]),r=Math.PI/2+i-Math.atan2(t[3],t[2]);n=Math.sqrt(n)*Math.cos(r),e=Math.sqrt(e),this.skewX=r,this.skewY=0,this.rotation=-i,this.x=+t[4],this.y=+t[5],this.scaleX=e,this.scaleY=n,this.originX=0,this.originY=0}},t.prototype.decomposeTransform=function(){if(this.transform){var t=this.parent,e=this.transform;t&&t.transform&&(Wn(ni,t.invTransform,e),e=ni);var n=this.originX,i=this.originY;(n||i)&&(ii[4]=n,ii[5]=i,Wn(ni,e,ii),ni[4]-=n,ni[5]-=i,e=ni),this.setLocalTransform(e)}},t.prototype.getGlobalScale=function(t){var e=this.transform;return t=t||[],e?(t[0]=Math.sqrt(e[0]*e[0]+e[1]*e[1]),t[1]=Math.sqrt(e[2]*e[2]+e[3]*e[3]),e[0]<0&&(t[0]=-t[0]),e[3]<0&&(t[1]=-t[1]),t):(t[0]=1,t[1]=1,t)},t.prototype.transformCoordToLocal=function(t,e){var n=[t,e],i=this.invTransform;return i&&Rt(n,n,i),n},t.prototype.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&Rt(n,n,i),n},t.prototype.getLineScale=function(){var t=this.transform;return t&&ri(t[0]-1)>1e-10&&ri(t[3]-1)>1e-10?Math.sqrt(ri(t[0]*t[3]-t[2]*t[1])):1},t.prototype.copyTransform=function(t){for(var e=0;ef&&(f=_,gf&&(f=x,v=n.x&&t<=n.x+n.width&&e>=n.y&&e<=n.y+n.height},t.prototype.clone=function(){return new t(this.x,this.y,this.width,this.height)},t.prototype.copy=function(e){t.copy(this,e)},t.prototype.plain=function(){return{x:this.x,y:this.y,width:this.width,height:this.height}},t.prototype.isFinite=function(){return isFinite(this.x)&&isFinite(this.y)&&isFinite(this.width)&&isFinite(this.height)},t.prototype.isZero=function(){return 0===this.width||0===this.height},t.create=function(e){return new t(e.x,e.y,e.width,e.height)},t.copy=function(t,e){t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height},t.applyTransform=function(e,n,i){if(i){if(i[1]<1e-5&&i[1]>-1e-5&&i[2]<1e-5&&i[2]>-1e-5){var r=i[0],o=i[3],a=i[4],s=i[5];return e.x=n.x*r+a,e.y=n.y*o+s,e.width=n.width*r,e.height=n.height*o,e.width<0&&(e.x+=e.width,e.width=-e.width),void(e.height<0&&(e.y+=e.height,e.height=-e.height))}hi.x=pi.x=n.x,hi.y=di.y=n.y,ci.x=di.x=n.x+n.width,ci.y=pi.y=n.y+n.height,hi.transform(i),di.transform(i),ci.transform(i),pi.transform(i),e.x=li(hi.x,ci.x,pi.x,di.x),e.y=li(hi.y,ci.y,pi.y,di.y);var l=ui(hi.x,ci.x,pi.x,di.x),u=ui(hi.y,ci.y,pi.y,di.y);e.width=l-e.x,e.height=u-e.y}else e!==n&&t.copy(e,n)},t}(),vi={},mi="12px sans-serif";var _i={measureText:function(t,e){return Qn||(Qn=C().getContext("2d")),ti!==e&&(ti=Qn.font=e||mi),Qn.measureText(t)}};function xi(t,e){var n=vi[e=e||mi];n||(n=vi[e]=new Ae(500));var i=n.get(t);return null==i&&(i=_i.measureText(t,e).width,n.put(t,i)),i}function bi(t,e,n,i){var r=xi(t,e),o=Ii(e),a=Si(0,r,n),s=Mi(0,o,i);return new yi(a,s,r,o)}function wi(t,e,n,i){var r=((t||"")+"").split("\n");if(1===r.length)return bi(r[0],e,n,i);for(var o=new yi(0,0,0,0),a=0;a=0?parseFloat(t)/100*e:parseFloat(t):t}function Ci(t,e,n){var i=e.position||"inside",r=null!=e.distance?e.distance:5,o=n.height,a=n.width,s=o/2,l=n.x,u=n.y,h="left",c="top";if(i instanceof Array)l+=Ti(i[0],n.width),u+=Ti(i[1],n.height),h=null,c=null;else switch(i){case"left":l-=r,u+=s,h="right",c="middle";break;case"right":l+=r+a,u+=s,c="middle";break;case"top":l+=a/2,u-=r,h="center",c="bottom";break;case"bottom":l+=a/2,u+=o+r,h="center";break;case"inside":l+=a/2,u+=s,h="center",c="middle";break;case"insideLeft":l+=r,u+=s,c="middle";break;case"insideRight":l+=a-r,u+=s,h="right",c="middle";break;case"insideTop":l+=a/2,u+=r,h="center";break;case"insideBottom":l+=a/2,u+=o-r,h="center",c="bottom";break;case"insideTopLeft":l+=r,u+=r;break;case"insideTopRight":l+=a-r,u+=r,h="right";break;case"insideBottomLeft":l+=r,u+=o-r,c="bottom";break;case"insideBottomRight":l+=a-r,u+=o-r,h="right",c="bottom"}return(t=t||{}).x=l,t.y=u,t.align=h,t.verticalAlign=c,t}var Di="__zr_normal__",Ai=["x","y","scaleX","scaleY","originX","originY","rotation","ignore"],ki={x:!0,y:!0,scaleX:!0,scaleY:!0,originX:!0,originY:!0,rotation:!0,ignore:!1},Li={},Pi=new yi(0,0,0,0),Oi=function(){function t(t){this.id=x(),this.animators=[],this.currentStates=[],this.states={},this._init(t)}return t.prototype._init=function(t){this.attr(t)},t.prototype.drift=function(t,e,n){switch(this.draggable){case"horizontal":e=0;break;case"vertical":t=0}var i=this.transform;i||(i=this.transform=[1,0,0,1,0,0]),i[4]+=t,i[5]+=e,this.decomposeTransform(),this.markRedraw()},t.prototype.beforeUpdate=function(){},t.prototype.afterUpdate=function(){},t.prototype.update=function(){this.updateTransform(),this.__dirty&&this.updateInnerText()},t.prototype.updateInnerText=function(t){var e=this._textContent;if(e&&(!e.ignore||t)){this.textConfig||(this.textConfig={});var n=this.textConfig,i=n.local,r=e.innerTransformable,o=void 0,a=void 0,s=!1;r.parent=i?this:null;var l=!1;if(r.copyTransform(e),null!=n.position){var u=Pi;n.layoutRect?u.copy(n.layoutRect):u.copy(this.getBoundingRect()),i||u.applyTransform(this.transform),this.calculateTextPosition?this.calculateTextPosition(Li,n,u):Ci(Li,n,u),r.x=Li.x,r.y=Li.y,o=Li.align,a=Li.verticalAlign;var h=n.origin;if(h&&null!=n.rotation){var c=void 0,p=void 0;"center"===h?(c=.5*u.width,p=.5*u.height):(c=Ti(h[0],u.width),p=Ti(h[1],u.height)),l=!0,r.originX=-r.x+c+(i?0:u.x),r.originY=-r.y+p+(i?0:u.y)}}null!=n.rotation&&(r.rotation=n.rotation);var d=n.offset;d&&(r.x+=d[0],r.y+=d[1],l||(r.originX=-d[0],r.originY=-d[1]));var f=null==n.inside?"string"==typeof n.position&&n.position.indexOf("inside")>=0:n.inside,g=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={}),y=void 0,v=void 0,m=void 0;f&&this.canBeInsideText()?(y=n.insideFill,v=n.insideStroke,null!=y&&"auto"!==y||(y=this.getInsideTextFill()),null!=v&&"auto"!==v||(v=this.getInsideTextStroke(y),m=!0)):(y=n.outsideFill,v=n.outsideStroke,null!=y&&"auto"!==y||(y=this.getOutsideFill()),null!=v&&"auto"!==v||(v=this.getOutsideStroke(y),m=!0)),(y=y||"#000")===g.fill&&v===g.stroke&&m===g.autoStroke&&o===g.align&&a===g.verticalAlign||(s=!0,g.fill=y,g.stroke=v,g.autoStroke=m,g.align=o,g.verticalAlign=a,e.setDefaultTextStyle(g)),e.__dirty|=1,s&&e.dirtyStyle(!0)}},t.prototype.canBeInsideText=function(){return!0},t.prototype.getInsideTextFill=function(){return"#fff"},t.prototype.getInsideTextStroke=function(t){return"#000"},t.prototype.getOutsideFill=function(){return this.__zr&&this.__zr.isDarkMode()?Vn:Bn},t.prototype.getOutsideStroke=function(t){var e=this.__zr&&this.__zr.getBackgroundColor(),n="string"==typeof e&&He(e);n||(n=[255,255,255,1]);for(var i=n[3],r=this.__zr.isDarkMode(),o=0;o<3;o++)n[o]=n[o]*i+(r?0:255)*(1-i);return n[3]=1,Je(n,"rgba")},t.prototype.traverse=function(t,e){},t.prototype.attrKV=function(t,e){"textConfig"===t?this.setTextConfig(e):"textContent"===t?this.setTextContent(e):"clipPath"===t?this.setClipPath(e):"extra"===t?(this.extra=this.extra||{},I(this.extra,e)):this[t]=e},t.prototype.hide=function(){this.ignore=!0,this.markRedraw()},t.prototype.show=function(){this.ignore=!1,this.markRedraw()},t.prototype.attr=function(t,e){if("string"==typeof t)this.attrKV(t,e);else if(X(t))for(var n=E(t),i=0;i0},t.prototype.getState=function(t){return this.states[t]},t.prototype.ensureState=function(t){var e=this.states;return e[t]||(e[t]={}),e[t]},t.prototype.clearStates=function(t){this.useState(Di,!1,t)},t.prototype.useState=function(t,e,n,i){var r=t===Di;if(this.hasState()||!r){var o=this.currentStates,a=this.stateTransition;if(!(D(o,t)>=0)||!e&&1!==o.length){var s;if(this.stateProxy&&!r&&(s=this.stateProxy(t)),s||(s=this.states&&this.states[t]),s||r){r||this.saveCurrentToNormalState(s);var l=!!(s&&s.hoverLayer||i);l&&this._toggleHoverLayerFlag(!0),this._applyStateObj(t,s,this._normalState,e,!n&&!this.__inHover&&a&&a.duration>0,a);var u=this._textContent,h=this._textGuide;return u&&u.useState(t,e,n,l),h&&h.useState(t,e,n,l),r?(this.currentStates=[],this._normalState={}):e?this.currentStates.push(t):this.currentStates=[t],this._updateAnimationTargets(),this.markRedraw(),!l&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2),s}b("State "+t+" not exists.")}}},t.prototype.useStates=function(t,e,n){if(t.length){var i=[],r=this.currentStates,o=t.length,a=o===r.length;if(a)for(var s=0;s0,d);var f=this._textContent,g=this._textGuide;f&&f.useStates(t,e,c),g&&g.useStates(t,e,c),this._updateAnimationTargets(),this.currentStates=t.slice(),this.markRedraw(),!c&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2)}else this.clearStates()},t.prototype._updateAnimationTargets=function(){for(var t=0;t=0){var n=this.currentStates.slice();n.splice(e,1),this.useStates(n)}},t.prototype.replaceState=function(t,e,n){var i=this.currentStates.slice(),r=D(i,t),o=D(i,e)>=0;r>=0?o?i.splice(r,1):i[r]=e:n&&!o&&i.push(e),this.useStates(i)},t.prototype.toggleState=function(t,e){e?this.useState(t,!0):this.removeState(t)},t.prototype._mergeStates=function(t){for(var e,n={},i=0;i=0&&e.splice(n,1)})),this.animators.push(t),n&&n.animation.addAnimator(t),n&&n.wakeUp()},t.prototype.updateDuringAnimation=function(t){this.markRedraw()},t.prototype.stopAnimation=function(t,e){for(var n=this.animators,i=n.length,r=[],o=0;o8)&&(r("position","_legacyPos","x","y"),r("scale","_legacyScale","scaleX","scaleY"),r("origin","_legacyOrigin","originX","originY"))}(),t}();function Ri(t,e,n,i,r){var o=[];Ei(t,"",t,e,n=n||{},i,o,r);var a=o.length,s=!1,l=n.done,u=n.aborted,h=function(){s=!0,--a<=0&&(s?l&&l():u&&u())},c=function(){--a<=0&&(s?l&&l():u&&u())};a||l&&l(),o.length>0&&n.during&&o[0].during((function(t,e){n.during(e)}));for(var p=0;p0||r.force&&!a.length){for(var m=t.animators,_=[],x=0;x=0&&(n.splice(i,0,t),this._doAdd(t))}return this},e.prototype.replace=function(t,e){var n=D(this._children,t);return n>=0&&this.replaceAt(e,n),this},e.prototype.replaceAt=function(t,e){var n=this._children,i=n[e];if(t&&t!==this&&t.parent!==this&&t!==i){n[e]=t,i.parent=null;var r=this.__zr;r&&i.removeSelfFromZr(r),this._doAdd(t)}return this},e.prototype._doAdd=function(t){t.parent&&t.parent.remove(t),t.parent=this;var e=this.__zr;e&&e!==t.__zr&&t.addSelfToZr(e),e&&e.refresh()},e.prototype.remove=function(t){var e=this.__zr,n=this._children,i=D(n,t);return i<0||(n.splice(i,1),t.parent=null,e&&t.removeSelfFromZr(e),e&&e.refresh()),this},e.prototype.removeAll=function(){for(var t=this._children,e=this.__zr,n=0;n0&&(this._stillFrameAccum++,this._stillFrameAccum>this._sleepAfterStill&&this.animation.stop())},t.prototype.setSleepAfterStill=function(t){this._sleepAfterStill=t},t.prototype.wakeUp=function(){this.animation.start(),this._stillFrameAccum=0},t.prototype.addHover=function(t){},t.prototype.removeHover=function(t){},t.prototype.clearHover=function(){},t.prototype.refreshHover=function(){this._needsRefreshHover=!0},t.prototype.refreshHoverImmediately=function(){this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover()},t.prototype.resize=function(t){t=t||{},this.painter.resize(t.width,t.height),this.handler.resize()},t.prototype.clearAnimation=function(){this.animation.clear()},t.prototype.getWidth=function(){return this.painter.getWidth()},t.prototype.getHeight=function(){return this.painter.getHeight()},t.prototype.pathToImage=function(t,e){if(this.painter.pathToImage)return this.painter.pathToImage(t,e)},t.prototype.setCursorStyle=function(t){this.handler.setCursorStyle(t)},t.prototype.findHover=function(t,e){return this.handler.findHover(t,e)},t.prototype.on=function(t,e,n){return this.handler.on(t,e,n),this},t.prototype.off=function(t,e){this.handler.off(t,e)},t.prototype.trigger=function(t,e){this.handler.trigger(t,e)},t.prototype.clear=function(){for(var t=this.storage.getRoots(),e=0;e0){if(t<=r)return a;if(t>=o)return s}else{if(t>=r)return a;if(t<=o)return s}else{if(t===r)return a;if(t===o)return s}return(t-r)/l*u+a}function ji(t,e){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return"string"==typeof t?(n=t,n.replace(/^\s+|\s+$/g,"")).match(/%$/)?parseFloat(t)/100*e:parseFloat(t):null==t?NaN:+t;var n}function qi(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function Ki(t){return t.sort((function(t,e){return t-e})),t}function $i(t){if(t=+t,isNaN(t))return 0;if(t>1e-14)for(var e=1,n=0;n<15;n++,e*=10)if(Math.round(t*e)/e===t)return n;return Ji(t)}function Ji(t){var e=t.toString().toLowerCase(),n=e.indexOf("e"),i=n>0?+e.slice(n+1):0,r=n>0?n:e.length,o=e.indexOf("."),a=o<0?0:r-1-o;return Math.max(0,a-i)}function Qi(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),o=Math.round(n(Math.abs(e[1]-e[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20}function tr(t,e,n){if(!t[e])return 0;var i=R(t,(function(t,e){return t+(isNaN(e)?0:e)}),0);if(0===i)return 0;for(var r=Math.pow(10,n),o=O(t,(function(t){return(isNaN(t)?0:t)/i*r*100})),a=100*r,s=O(o,(function(t){return Math.floor(t)})),l=R(s,(function(t,e){return t+e}),0),u=O(o,(function(t,e){return t-s[e]}));lh&&(h=u[p],c=p);++s[c],u[c]=0,++l}return s[e]/r}function er(t,e){var n=Math.max($i(t),$i(e)),i=t+e;return n>20?i:qi(i,n)}var nr=9007199254740991;function ir(t){var e=2*Math.PI;return(t%e+e)%e}function rr(t){return t>-1e-4&&t=10&&e++,e}function ur(t,e){var n=lr(t),i=Math.pow(10,n),r=t/i;return t=(e?r<1.5?1:r<2.5?2:r<4?3:r<7?5:10:r<1?1:r<2?2:r<3?3:r<5?5:10)*i,n>=-20?+t.toFixed(n<0?-n:0):t}function hr(t,e){var n=(t.length-1)*e+1,i=Math.floor(n),r=+t[i-1],o=n-i;return o?r+o*(t[i]-r):r}function cr(t){t.sort((function(t,e){return s(t,e,0)?-1:1}));for(var e=-1/0,n=1,i=0;i=0||r&&D(r,s)<0)){var l=n.getShallow(s,e);null!=l&&(o[t[a][0]]=l)}}return o}}var to=Qr([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),eo=function(){function t(){}return t.prototype.getAreaStyle=function(t,e){return to(this,t,e)},t}(),no=new Ae(50);function io(t){if("string"==typeof t){var e=no.get(t);return e&&e.image}return t}function ro(t,e,n,i,r){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var o=no.get(t),a={hostEl:n,cb:i,cbPayload:r};return o?!ao(e=o.image)&&o.pending.push(a):((e=new Image).onload=e.onerror=oo,no.put(t,e.__cachedImgObj={image:e,pending:[a]}),e.src=e.__zrImageSrc=t),e}return t}return e}function oo(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e=a;l++)s-=a;var u=xi(n,e);return u>s&&(n="",u=0),s=t-u,r.ellipsis=n,r.ellipsisWidth=u,r.contentWidth=s,r.containerWidth=t,r}function ho(t,e){var n=e.containerWidth,i=e.font,r=e.contentWidth;if(!n)return"";var o=xi(t,i);if(o<=n)return t;for(var a=0;;a++){if(o<=r||a>=e.maxIterations){t+=e.ellipsis;break}var s=0===a?co(t,r,e.ascCharWidth,e.cnCharWidth):o>0?Math.floor(t.length*r/o):0;o=xi(t=t.substr(0,s),i)}return""===t&&(t=e.placeholder),t}function co(t,e,n,i){for(var r=0,o=0,a=t.length;o0&&f+i.accumWidth>i.width&&(o=e.split("\n"),c=!0),i.accumWidth=f}else{var g=_o(e,h,i.width,i.breakAll,i.accumWidth);i.accumWidth=g.accumWidth+d,a=g.linesWidths,o=g.lines}}else o=e.split("\n");for(var y=0;y=33&&e<=255}(t)||!!vo[t]}function _o(t,e,n,i,r){for(var o=[],a=[],s="",l="",u=0,h=0,c=0;cn:r+h+d>n)?h?(s||l)&&(f?(s||(s=l,l="",h=u=0),o.push(s),a.push(h-u),l+=p,s="",h=u+=d):(l&&(s+=l,h+=u,l="",u=0),o.push(s),a.push(h),s=p,h=d)):f?(o.push(l),a.push(u),l=p,u=d):(o.push(p),a.push(d)):(h+=d,f?(l+=p,u+=d):(l&&(s+=l,l="",u=0),s+=p))}else l&&(s+=l,h+=u),o.push(s),a.push(h),s="",l="",u=0,h=0}return o.length||s||(s=t,l="",u=0),l&&(s+=l),s&&(o.push(s),a.push(h)),1===o.length&&(h+=r),{accumWidth:h,lines:o,linesWidths:a}}var xo="__zr_style_"+Math.round(10*Math.random()),bo={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"#000",opacity:1,blend:"source-over"},wo={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};bo[xo]=!0;var So=["z","z2","invisible"],Mo=["invisible"],Io=function(t){function e(e){return t.call(this,e)||this}var i;return n(e,t),e.prototype._init=function(e){for(var n=E(e),i=0;i-1e-8&&tko||t<-1e-8}function Vo(t,e,n,i,r){var o=1-r;return o*o*(o*t+3*r*e)+r*r*(r*i+3*o*n)}function Go(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)}function Fo(t,e,n,i,r,o){var a=i+3*(e-n)-t,s=3*(n-2*e+t),l=3*(e-t),u=t-r,h=s*s-3*a*l,c=s*l-9*a*u,p=l*l-3*s*u,d=0;if(Eo(h)&&Eo(c)){if(Eo(s))o[0]=0;else(M=-l/s)>=0&&M<=1&&(o[d++]=M)}else{var f=c*c-4*h*p;if(Eo(f)){var g=c/h,y=-g/2;(M=-s/a+g)>=0&&M<=1&&(o[d++]=M),y>=0&&y<=1&&(o[d++]=y)}else if(f>0){var v=Ao(f),m=h*s+1.5*a*(-c+v),_=h*s+1.5*a*(-c-v);(M=(-s-((m=m<0?-Do(-m,Oo):Do(m,Oo))+(_=_<0?-Do(-_,Oo):Do(_,Oo))))/(3*a))>=0&&M<=1&&(o[d++]=M)}else{var x=(2*h*s-3*a*c)/(2*Ao(h*h*h)),b=Math.acos(x)/3,w=Ao(h),S=Math.cos(b),M=(-s-2*w*S)/(3*a),I=(y=(-s+w*(S+Po*Math.sin(b)))/(3*a),(-s+w*(S-Po*Math.sin(b)))/(3*a));M>=0&&M<=1&&(o[d++]=M),y>=0&&y<=1&&(o[d++]=y),I>=0&&I<=1&&(o[d++]=I)}}return d}function Ho(t,e,n,i,r){var o=6*n-12*e+6*t,a=9*e+3*i-3*t-9*n,s=3*e-3*t,l=0;if(Eo(a)){if(Bo(o))(h=-s/o)>=0&&h<=1&&(r[l++]=h)}else{var u=o*o-4*a*s;if(Eo(u))r[0]=-o/(2*a);else if(u>0){var h,c=Ao(u),p=(-o-c)/(2*a);(h=(-o+c)/(2*a))>=0&&h<=1&&(r[l++]=h),p>=0&&p<=1&&(r[l++]=p)}}return l}function Wo(t,e,n,i,r,o){var a=(e-t)*r+t,s=(n-e)*r+e,l=(i-n)*r+n,u=(s-a)*r+a,h=(l-s)*r+s,c=(h-u)*r+u;o[0]=t,o[1]=a,o[2]=u,o[3]=c,o[4]=c,o[5]=h,o[6]=l,o[7]=i}function Uo(t,e,n,i,r,o,a,s,l,u,h){var c,p,d,f,g,y=.005,v=1/0;Ro[0]=l,Ro[1]=u;for(var m=0;m<1;m+=.05)No[0]=Vo(t,n,r,a,m),No[1]=Vo(e,i,o,s,m),(f=Pt(Ro,No))=0&&f=0&&y1e-4)return s[0]=t-n,s[1]=e-i,l[0]=t+n,void(l[1]=e+i);if(ia[0]=ea(r)*n+t,ia[1]=ta(r)*i+e,ra[0]=ea(o)*n+t,ra[1]=ta(o)*i+e,u(s,ia,ra),h(l,ia,ra),(r%=na)<0&&(r+=na),(o%=na)<0&&(o+=na),r>o&&!a?o+=na:rr&&(oa[0]=ea(d)*n+t,oa[1]=ta(d)*i+e,u(s,oa,s),h(l,oa,l))}var da={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},fa=[],ga=[],ya=[],va=[],ma=[],_a=[],xa=Math.min,ba=Math.max,wa=Math.cos,Sa=Math.sin,Ma=Math.sqrt,Ia=Math.abs,Ta=Math.PI,Ca=2*Ta,Da="undefined"!=typeof Float32Array,Aa=[];function ka(t){return Math.round(t/Ta*1e8)/1e8%2*Ta}function La(t,e){var n=ka(t[0]);n<0&&(n+=Ca);var i=n-t[0],r=t[1];r+=i,!e&&r-n>=Ca?r=n+Ca:e&&n-r>=Ca?r=n-Ca:!e&&n>r?r=n+(Ca-ka(n-r)):e&&n0&&(this._ux=Ia(n/En/t)||0,this._uy=Ia(n/En/e)||0)},t.prototype.setDPR=function(t){this.dpr=t},t.prototype.setContext=function(t){this._ctx=t},t.prototype.getContext=function(){return this._ctx},t.prototype.beginPath=function(){return this._ctx&&this._ctx.beginPath(),this.reset(),this},t.prototype.reset=function(){this._saveData&&(this._len=0),this._lineDash&&(this._lineDash=null,this._dashOffset=0),this._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},t.prototype.moveTo=function(t,e){return this._drawPendingPt(),this.addData(da.M,t,e),this._ctx&&this._ctx.moveTo(t,e),this._x0=t,this._y0=e,this._xi=t,this._yi=e,this},t.prototype.lineTo=function(t,e){var n=Ia(t-this._xi),i=Ia(e-this._yi),r=n>this._ux||i>this._uy;if(this.addData(da.L,t,e),this._ctx&&r&&(this._needsDash?this._dashedLineTo(t,e):this._ctx.lineTo(t,e)),r)this._xi=t,this._yi=e,this._pendingPtDist=0;else{var o=n*n+i*i;o>this._pendingPtDist&&(this._pendingPtX=t,this._pendingPtY=e,this._pendingPtDist=o)}return this},t.prototype.bezierCurveTo=function(t,e,n,i,r,o){return this._drawPendingPt(),this.addData(da.C,t,e,n,i,r,o),this._ctx&&(this._needsDash?this._dashedBezierTo(t,e,n,i,r,o):this._ctx.bezierCurveTo(t,e,n,i,r,o)),this._xi=r,this._yi=o,this},t.prototype.quadraticCurveTo=function(t,e,n,i){return this._drawPendingPt(),this.addData(da.Q,t,e,n,i),this._ctx&&(this._needsDash?this._dashedQuadraticTo(t,e,n,i):this._ctx.quadraticCurveTo(t,e,n,i)),this._xi=n,this._yi=i,this},t.prototype.arc=function(t,e,n,i,r,o){this._drawPendingPt(),Aa[0]=i,Aa[1]=r,La(Aa,o),i=Aa[0];var a=(r=Aa[1])-i;return this.addData(da.A,t,e,n,n,i,a,0,o?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,o),this._xi=wa(r)*n+t,this._yi=Sa(r)*n+e,this},t.prototype.arcTo=function(t,e,n,i,r){return this._drawPendingPt(),this._ctx&&this._ctx.arcTo(t,e,n,i,r),this},t.prototype.rect=function(t,e,n,i){return this._drawPendingPt(),this._ctx&&this._ctx.rect(t,e,n,i),this.addData(da.R,t,e,n,i),this},t.prototype.closePath=function(){this._drawPendingPt(),this.addData(da.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&(this._needsDash&&this._dashedLineTo(e,n),t.closePath()),this._xi=e,this._yi=n,this},t.prototype.fill=function(t){t&&t.fill(),this.toStatic()},t.prototype.stroke=function(t){t&&t.stroke(),this.toStatic()},t.prototype.setLineDash=function(t){if(t instanceof Array){this._lineDash=t,this._dashIdx=0;for(var e=0,n=0;nu.length&&(this._expandData(),u=this.data);for(var h=0;h0&&(this._ctx&&this._ctx.lineTo(this._pendingPtX,this._pendingPtY),this._pendingPtDist=0)},t.prototype._expandData=function(){if(!(this.data instanceof Array)){for(var t=[],e=0;e0&&d<=t||h<0&&d>=t||0===h&&(c>0&&f<=e||c<0&&f>=e);)d+=h*(n=o[i=this._dashIdx]),f+=c*n,this._dashIdx=(i+1)%g,h>0&&dl||c>0&&fu||a[i%2?"moveTo":"lineTo"](h>=0?xa(d,t):ba(d,t),c>=0?xa(f,e):ba(f,e));h=d-t,c=f-e,this._dashOffset=-Ma(h*h+c*c)},t.prototype._dashedBezierTo=function(t,e,n,i,r,o){var a,s,l,u,h,c=this._ctx,p=this._dashSum,d=this._dashOffset,f=this._lineDash,g=this._xi,y=this._yi,v=0,m=this._dashIdx,_=f.length,x=0;for(d<0&&(d=p+d),d%=p,a=0;a<1;a+=.1)s=Vo(g,t,n,r,a+.1)-Vo(g,t,n,r,a),l=Vo(y,e,i,o,a+.1)-Vo(y,e,i,o,a),v+=Ma(s*s+l*l);for(;m<_&&!((x+=f[m])>d);m++);for(a=(x-d)/v;a<=1;)u=Vo(g,t,n,r,a),h=Vo(y,e,i,o,a),m%2?c.moveTo(u,h):c.lineTo(u,h),a+=f[m]/v,m=(m+1)%_;m%2!=0&&c.lineTo(r,o),s=r-u,l=o-h,this._dashOffset=-Ma(s*s+l*l)},t.prototype._dashedQuadraticTo=function(t,e,n,i){var r=n,o=i;n=(n+2*t)/3,i=(i+2*e)/3,t=(this._xi+2*t)/3,e=(this._yi+2*e)/3,this._dashedBezierTo(t,e,n,i,r,o)},t.prototype.toStatic=function(){if(this._saveData){this._drawPendingPt();var t=this.data;t instanceof Array&&(t.length=this._len,Da&&this._len>11&&(this.data=new Float32Array(t)))}},t.prototype.getBoundingRect=function(){ya[0]=ya[1]=ma[0]=ma[1]=Number.MAX_VALUE,va[0]=va[1]=_a[0]=_a[1]=-Number.MAX_VALUE;var t,e=this.data,n=0,i=0,r=0,o=0;for(t=0;tn||Ia(y)>i||c===e-1)&&(f=Math.sqrt(A*A+y*y),r=g,o=_);break;case da.C:var v=t[c++],m=t[c++],_=(g=t[c++],t[c++]),x=t[c++],b=t[c++];f=Xo(r,o,v,m,g,_,x,b,10),r=x,o=b;break;case da.Q:f=$o(r,o,v=t[c++],m=t[c++],g=t[c++],_=t[c++],10),r=g,o=_;break;case da.A:var w=t[c++],S=t[c++],M=t[c++],I=t[c++],T=t[c++],C=t[c++],D=C+T;c+=1;t[c++];d&&(a=wa(T)*M+w,s=Sa(T)*I+S),f=ba(M,I)*xa(Ca,Math.abs(C)),r=wa(D)*M+w,o=Sa(D)*I+S;break;case da.R:a=r=t[c++],s=o=t[c++],f=2*t[c++]+2*t[c++];break;case da.Z:var A=a-r;y=s-o;f=Math.sqrt(A*A+y*y),r=a,o=s}f>=0&&(l[h++]=f,u+=f)}return this._pathLen=u,u},t.prototype.rebuildPath=function(t,e){var n,i,r,o,a,s,l,u,h,c,p=this.data,d=this._ux,f=this._uy,g=this._len,y=e<1,v=0,m=0,_=0;if(!y||(this._pathSegLen||this._calculateLength(),l=this._pathSegLen,u=e*this._pathLen))t:for(var x=0;x0&&(t.lineTo(h,c),_=0),b){case da.M:n=r=p[x++],i=o=p[x++],t.moveTo(r,o);break;case da.L:a=p[x++],s=p[x++];var S=Ia(a-r),M=Ia(s-o);if(S>d||M>f){if(y){if(v+(j=l[m++])>u){var I=(u-v)/j;t.lineTo(r*(1-I)+a*I,o*(1-I)+s*I);break t}v+=j}t.lineTo(a,s),r=a,o=s,_=0}else{var T=S*S+M*M;T>_&&(h=a,c=s,_=T)}break;case da.C:var C=p[x++],D=p[x++],A=p[x++],k=p[x++],L=p[x++],P=p[x++];if(y){if(v+(j=l[m++])>u){Wo(r,C,A,L,I=(u-v)/j,fa),Wo(o,D,k,P,I,ga),t.bezierCurveTo(fa[1],ga[1],fa[2],ga[2],fa[3],ga[3]);break t}v+=j}t.bezierCurveTo(C,D,A,k,L,P),r=L,o=P;break;case da.Q:C=p[x++],D=p[x++],A=p[x++],k=p[x++];if(y){if(v+(j=l[m++])>u){qo(r,C,A,I=(u-v)/j,fa),qo(o,D,k,I,ga),t.quadraticCurveTo(fa[1],ga[1],fa[2],ga[2]);break t}v+=j}t.quadraticCurveTo(C,D,A,k),r=A,o=k;break;case da.A:var O=p[x++],R=p[x++],N=p[x++],z=p[x++],E=p[x++],B=p[x++],V=p[x++],G=!p[x++],F=N>z?N:z,H=Ia(N-z)>.001,W=E+B,U=!1;if(y)v+(j=l[m++])>u&&(W=E+B*(u-v)/j,U=!0),v+=j;if(H&&t.ellipse?t.ellipse(O,R,N,z,V,E,W,G):t.arc(O,R,F,E,W,G),U)break t;w&&(n=wa(E)*N+O,i=Sa(E)*z+R),r=wa(W)*N+O,o=Sa(W)*z+R;break;case da.R:n=r=p[x],i=o=p[x+1],a=p[x++],s=p[x++];var X=p[x++],Y=p[x++];if(y){if(v+(j=l[m++])>u){var Z=u-v;t.moveTo(a,s),t.lineTo(a+xa(Z,X),s),(Z-=X)>0&&t.lineTo(a+X,s+xa(Z,Y)),(Z-=Y)>0&&t.lineTo(a+ba(X-Z,0),s+Y),(Z-=X)>0&&t.lineTo(a,s+ba(Y-Z,0));break t}v+=j}t.rect(a,s,X,Y);break;case da.Z:if(y){var j;if(v+(j=l[m++])>u){I=(u-v)/j;t.lineTo(r*(1-I)+n*I,o*(1-I)+i*I);break t}v+=j}t.closePath(),r=n,o=i}}},t.prototype.clone=function(){var e=new t,n=this.data;return e.data=n.slice?n.slice():Array.prototype.slice.call(n),e._len=this._len,e},t.CMD=da,t.initDefaultProps=function(){var e=t.prototype;e._saveData=!0,e._needsDash=!1,e._dashOffset=0,e._dashIdx=0,e._dashSum=0,e._ux=0,e._uy=0,e._pendingPtDist=0,e._version=0}(),t}();function Oa(t,e,n,i,r,o,a){if(0===r)return!1;var s=r,l=0;if(a>e+s&&a>i+s||at+s&&o>n+s||oe+c&&h>i+c&&h>o+c&&h>s+c||ht+c&&u>n+c&&u>r+c&&u>a+c||ue+u&&l>i+u&&l>o+u||lt+u&&s>n+u&&s>r+u||sn||h+ur&&(r+=Ba);var p=Math.atan2(l,s);return p<0&&(p+=Ba),p>=i&&p<=r||p+Ba>=i&&p+Ba<=r}function Ga(t,e,n,i,r,o){if(o>e&&o>i||or?s:0}var Fa=Pa.CMD,Ha=2*Math.PI;var Wa=[-1,-1,-1],Ua=[-1,-1];function Xa(t,e,n,i,r,o,a,s,l,u){if(u>e&&u>i&&u>o&&u>s||u1&&(h=void 0,h=Ua[0],Ua[0]=Ua[1],Ua[1]=h),f=Vo(e,i,o,s,Ua[0]),d>1&&(g=Vo(e,i,o,s,Ua[1]))),2===d?ve&&s>i&&s>o||s=0&&h<=1&&(r[l++]=h);else{var u=a*a-4*o*s;if(Eo(u))(h=-a/(2*o))>=0&&h<=1&&(r[l++]=h);else if(u>0){var h,c=Ao(u),p=(-a-c)/(2*o);(h=(-a+c)/(2*o))>=0&&h<=1&&(r[l++]=h),p>=0&&p<=1&&(r[l++]=p)}}return l}(e,i,o,s,Wa);if(0===l)return 0;var u=jo(e,i,o);if(u>=0&&u<=1){for(var h=0,c=Yo(e,i,o,u),p=0;pn||s<-n)return 0;var l=Math.sqrt(n*n-s*s);Wa[0]=-l,Wa[1]=l;var u=Math.abs(i-r);if(u<1e-4)return 0;if(u>=Ha-1e-4){i=0,r=Ha;var h=o?1:-1;return a>=Wa[0]+t&&a<=Wa[1]+t?h:0}if(i>r){var c=i;i=r,r=c}i<0&&(i+=Ha,r+=Ha);for(var p=0,d=0;d<2;d++){var f=Wa[d];if(f+t>a){var g=Math.atan2(s,f);h=o?1:-1;g<0&&(g=Ha+g),(g>=i&&g<=r||g+Ha>=i&&g+Ha<=r)&&(g>Math.PI/2&&g<1.5*Math.PI&&(h=-h),p+=h)}}return p}function ja(t,e,n,i,r){for(var o,a,s,l,u=t.data,h=t.len(),c=0,p=0,d=0,f=0,g=0,y=0;y1&&(n||(c+=Ga(p,d,f,g,i,r))),m&&(f=p=u[y],g=d=u[y+1]),v){case Fa.M:p=f=u[y++],d=g=u[y++];break;case Fa.L:if(n){if(Oa(p,d,u[y],u[y+1],e,i,r))return!0}else c+=Ga(p,d,u[y],u[y+1],i,r)||0;p=u[y++],d=u[y++];break;case Fa.C:if(n){if(Ra(p,d,u[y++],u[y++],u[y++],u[y++],u[y],u[y+1],e,i,r))return!0}else c+=Xa(p,d,u[y++],u[y++],u[y++],u[y++],u[y],u[y+1],i,r)||0;p=u[y++],d=u[y++];break;case Fa.Q:if(n){if(Na(p,d,u[y++],u[y++],u[y],u[y+1],e,i,r))return!0}else c+=Ya(p,d,u[y++],u[y++],u[y],u[y+1],i,r)||0;p=u[y++],d=u[y++];break;case Fa.A:var _=u[y++],x=u[y++],b=u[y++],w=u[y++],S=u[y++],M=u[y++];y+=1;var I=!!(1-u[y++]);o=Math.cos(S)*b+_,a=Math.sin(S)*w+x,m?(f=o,g=a):c+=Ga(p,d,o,a,i,r);var T=(i-_)*w/b+_;if(n){if(Va(_,x,w,S,S+M,I,e,T,r))return!0}else c+=Za(_,x,w,S,S+M,I,T,r);p=Math.cos(S+M)*b+_,d=Math.sin(S+M)*w+x;break;case Fa.R:if(f=p=u[y++],g=d=u[y++],o=f+u[y++],a=g+u[y++],n){if(Oa(f,g,o,g,e,i,r)||Oa(o,g,o,a,e,i,r)||Oa(o,a,f,a,e,i,r)||Oa(f,a,f,g,e,i,r))return!0}else c+=Ga(o,g,o,a,i,r),c+=Ga(f,a,f,g,i,r);break;case Fa.Z:if(n){if(Oa(p,d,f,g,e,i,r))return!0}else c+=Ga(p,d,f,g,i,r);p=f,d=g}}return n||(s=d,l=g,Math.abs(s-l)<1e-4)||(c+=Ga(p,d,f,g,i,r)||0),0!==c}var qa=T({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},bo),Ka={style:T({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},wo.style)},$a=["x","y","rotation","scaleX","scaleY","originX","originY","invisible","culling","z","z2","zlevel","parent"],Ja=function(t){function e(e){return t.call(this,e)||this}var i;return n(e,t),e.prototype.update=function(){var n=this;t.prototype.update.call(this);var i=this.style;if(i.decal){var r=this._decalEl=this._decalEl||new e;r.buildPath===e.prototype.buildPath&&(r.buildPath=function(t){n.buildPath(t,n.shape)}),r.silent=!0;var o=r.style;for(var a in i)o[a]!==i[a]&&(o[a]=i[a]);o.fill=i.fill?i.decal:null,o.decal=null,o.shadowColor=null,i.strokeFirst&&(o.stroke=null);for(var s=0;s<$a.length;++s)r[$a[s]]=this[$a[s]];r.__dirty|=1}else this._decalEl&&(this._decalEl=null)},e.prototype.getDecalElement=function(){return this._decalEl},e.prototype._init=function(e){var n=E(e);this.shape=this.getDefaultShape();var i=this.getDefaultStyle();i&&this.useStyle(i);for(var r=0;r.5?Bn:e>.2?"#eee":Vn}if(t)return Vn}return Bn},e.prototype.getInsideTextStroke=function(t){var e=this.style.fill;if(H(e)){var n=this.__zr;if(!(!n||!n.isDarkMode())===Qe(t,0)<.4)return e}},e.prototype.buildPath=function(t,e,n){},e.prototype.pathUpdated=function(){this.__dirty&=-5},e.prototype.getUpdatedPathProxy=function(t){return!this.path&&this.createPathProxy(),this.path.beginPath(),this.buildPath(this.path,this.shape,t),this.path},e.prototype.createPathProxy=function(){this.path=new Pa(!1)},e.prototype.hasStroke=function(){var t=this.style,e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))},e.prototype.hasFill=function(){var t=this.style.fill;return null!=t&&"none"!==t},e.prototype.getBoundingRect=function(){var t=this._rect,e=this.style,n=!t;if(n){var i=!1;this.path||(i=!0,this.createPathProxy());var r=this.path;(i||4&this.__dirty)&&(r.beginPath(),this.buildPath(r,this.shape,!1),this.pathUpdated()),t=r.getBoundingRect()}if(this._rect=t,this.hasStroke()&&this.path&&this.path.len()>0){var o=this._rectWithStroke||(this._rectWithStroke=t.clone());if(this.__dirty||n){o.copy(t);var a=e.strokeNoScale?this.getLineScale():1,s=e.lineWidth;if(!this.hasFill()){var l=this.strokeContainThreshold;s=Math.max(s,null==l?4:l)}a>1e-10&&(o.width+=s/a,o.height+=s/a,o.x-=s/a/2,o.y-=s/a/2)}return o}return t},e.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect(),r=this.style;if(t=n[0],e=n[1],i.contain(t,e)){var o=this.path;if(this.hasStroke()){var a=r.lineWidth,s=r.strokeNoScale?this.getLineScale():1;if(s>1e-10&&(this.hasFill()||(a=Math.max(a,this.strokeContainThreshold)),function(t,e,n,i){return ja(t,e,!0,n,i)}(o,a/s,t,e)))return!0}if(this.hasFill())return function(t,e,n){return ja(t,0,!1,e,n)}(o,t,e)}return!1},e.prototype.dirtyShape=function(){this.__dirty|=4,this._rect&&(this._rect=null),this._decalEl&&this._decalEl.dirtyShape(),this.markRedraw()},e.prototype.dirty=function(){this.dirtyStyle(),this.dirtyShape()},e.prototype.animateShape=function(t){return this.animate("shape",t)},e.prototype.updateDuringAnimation=function(t){"style"===t?this.dirtyStyle():"shape"===t?this.dirtyShape():this.markRedraw()},e.prototype.attrKV=function(e,n){"shape"===e?this.setShape(n):t.prototype.attrKV.call(this,e,n)},e.prototype.setShape=function(t,e){var n=this.shape;return n||(n=this.shape={}),"string"==typeof t?n[t]=e:I(n,t),this.dirtyShape(),this},e.prototype.shapeChanged=function(){return!!(4&this.__dirty)},e.prototype.createStyle=function(t){return pt(qa,t)},e.prototype._innerSaveToNormal=function(e){t.prototype._innerSaveToNormal.call(this,e);var n=this._normalState;e.shape&&!n.shape&&(n.shape=I({},this.shape))},e.prototype._applyStateObj=function(e,n,i,r,o,a){t.prototype._applyStateObj.call(this,e,n,i,r,o,a);var s,l=!(n&&r);if(n&&n.shape?o?r?s=n.shape:(s=I({},i.shape),I(s,n.shape)):(s=I({},r?this.shape:i.shape),I(s,n.shape)):l&&(s=i.shape),s)if(o){this.shape=I({},this.shape);for(var u={},h=E(s),c=0;c0},e.prototype.hasFill=function(){var t=this.style.fill;return null!=t&&"none"!==t},e.prototype.createStyle=function(t){return pt(Qa,t)},e.prototype.setBoundingRect=function(t){this._rect=t},e.prototype.getBoundingRect=function(){var t=this.style;if(!this._rect){var e=t.text;null!=e?e+="":e="";var n=wi(e,t.font,t.textAlign,t.textBaseline);if(n.x+=t.x||0,n.y+=t.y||0,this.hasStroke()){var i=t.lineWidth;n.x-=i/2,n.y-=i/2,n.width+=i,n.height+=i}this._rect=n}return this._rect},e.initDefaultProps=void(e.prototype.dirtyRectTolerance=10),e}(Io);ts.prototype.type="tspan";var es=T({x:0,y:0},bo),ns={style:T({x:!0,y:!0,width:!0,height:!0,sx:!0,sy:!0,sWidth:!0,sHeight:!0},wo.style)};var is=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.createStyle=function(t){return pt(es,t)},e.prototype._getSize=function(t){var e=this.style,n=e[t];if(null!=n)return n;var i,r=(i=e.image)&&"string"!=typeof i&&i.width&&i.height?e.image:this.__image;if(!r)return 0;var o="width"===t?"height":"width",a=e[o];return null==a?r[t]:r[t]/r[o]*a},e.prototype.getWidth=function(){return this._getSize("width")},e.prototype.getHeight=function(){return this._getSize("height")},e.prototype.getAnimationStyleProps=function(){return ns},e.prototype.getBoundingRect=function(){var t=this.style;return this._rect||(this._rect=new yi(t.x||0,t.y||0,this.getWidth(),this.getHeight())),this._rect},e}(Io);is.prototype.type="image";var rs=Math.round;function os(t,e,n){if(e){var i=e.x1,r=e.x2,o=e.y1,a=e.y2;t.x1=i,t.x2=r,t.y1=o,t.y2=a;var s=n&&n.lineWidth;return s?(rs(2*i)===rs(2*r)&&(t.x1=t.x2=ss(i,s,!0)),rs(2*o)===rs(2*a)&&(t.y1=t.y2=ss(o,s,!0)),t):t}}function as(t,e,n){if(e){var i=e.x,r=e.y,o=e.width,a=e.height;t.x=i,t.y=r,t.width=o,t.height=a;var s=n&&n.lineWidth;return s?(t.x=ss(i,s,!0),t.y=ss(r,s,!0),t.width=Math.max(ss(i+o,s,!1)-t.x,0===o?0:1),t.height=Math.max(ss(r+a,s,!1)-t.y,0===a?0:1),t):t}}function ss(t,e,n){if(!e)return t;var i=rs(2*t);return(i+rs(e))%2==0?i/2:(i+(n?1:-1))/2}var ls=function(){this.x=0,this.y=0,this.width=0,this.height=0},us={},hs=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new ls},e.prototype.buildPath=function(t,e){var n,i,r,o;if(this.subPixelOptimize){var a=as(us,e,this.style);n=a.x,i=a.y,r=a.width,o=a.height,a.r=e.r,e=a}else n=e.x,i=e.y,r=e.width,o=e.height;e.r?function(t,e){var n,i,r,o,a,s=e.x,l=e.y,u=e.width,h=e.height,c=e.r;u<0&&(s+=u,u=-u),h<0&&(l+=h,h=-h),"number"==typeof c?n=i=r=o=c:c instanceof Array?1===c.length?n=i=r=o=c[0]:2===c.length?(n=r=c[0],i=o=c[1]):3===c.length?(n=c[0],i=o=c[1],r=c[2]):(n=c[0],i=c[1],r=c[2],o=c[3]):n=i=r=o=0,n+i>u&&(n*=u/(a=n+i),i*=u/a),r+o>u&&(r*=u/(a=r+o),o*=u/a),i+r>h&&(i*=h/(a=i+r),r*=h/a),n+o>h&&(n*=h/(a=n+o),o*=h/a),t.moveTo(s+n,l),t.lineTo(s+u-i,l),0!==i&&t.arc(s+u-i,l+i,i,-Math.PI/2,0),t.lineTo(s+u,l+h-r),0!==r&&t.arc(s+u-r,l+h-r,r,0,Math.PI/2),t.lineTo(s+o,l+h),0!==o&&t.arc(s+o,l+h-o,o,Math.PI/2,Math.PI),t.lineTo(s,l+n),0!==n&&t.arc(s+n,l+n,n,Math.PI,1.5*Math.PI)}(t,e):t.rect(n,i,r,o)},e.prototype.isZeroArea=function(){return!this.shape.width||!this.shape.height},e}(Ja);hs.prototype.type="rect";var cs={fill:"#000"},ps={style:T({fill:!0,stroke:!0,fillOpacity:!0,strokeOpacity:!0,lineWidth:!0,fontSize:!0,lineHeight:!0,width:!0,height:!0,textShadowColor:!0,textShadowBlur:!0,textShadowOffsetX:!0,textShadowOffsetY:!0,backgroundColor:!0,padding:!0,borderColor:!0,borderWidth:!0,borderRadius:!0},wo.style)},ds=function(t){function e(e){var n=t.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=cs,n.attr(e),n}return n(e,t),e.prototype.childrenRef=function(){return this._children},e.prototype.update=function(){t.prototype.update.call(this),this.styleChanged()&&this._updateSubTexts();for(var e=0;ep&&u){var d=Math.floor(p/l);n=n.slice(0,d)}var f=p,g=h;if(r&&(f+=r[0]+r[2],null!=g&&(g+=r[1]+r[3])),t&&a&&null!=g)for(var y=uo(h,o,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),v=0;v0,M=null!=t.width&&("truncate"===t.overflow||"break"===t.overflow||"breakAll"===t.overflow),I=i.calculatedLineHeight,T=0;Tl&&yo(n,t.substring(l,u),e,s),yo(n,i[2],e,s,i[1]),l=so.lastIndex}lo){b>0?(m.tokens=m.tokens.slice(0,b),y(m,x,_),n.lines=n.lines.slice(0,v+1)):n.lines=n.lines.slice(0,v);break t}var C=w.width,D=null==C||"auto"===C;if("string"==typeof C&&"%"===C.charAt(C.length-1))P.percentWidth=C,h.push(P),P.contentWidth=xi(P.text,I);else{if(D){var A=w.backgroundColor,k=A&&A.image;k&&ao(k=io(k))&&(P.width=Math.max(P.width,k.width*T/k.height))}var L=f&&null!=r?r-x:null;null!=L&&L=0&&"right"===(C=_[T]).align;)this._placeToken(C,t,b,f,I,"right",y),w-=C.width,I-=C.width,T--;for(M+=(n-(M-d)-(g-I)-w)/2;S<=T;)C=_[S],this._placeToken(C,t,b,f,M+C.width/2,"center",y),M+=C.width,S++;f+=b}},e.prototype._placeToken=function(t,e,n,i,r,o,a){var s=e.rich[t.styleName]||{};s.text=t.text;var l=t.verticalAlign,u=i+n/2;"top"===l?u=i+t.height/2:"bottom"===l&&(u=i+n-t.height/2),!t.isLineHolder&&bs(s)&&this._renderBackground(s,e,"right"===o?r-t.width:"center"===o?r-t.width/2:r,u-t.height/2,t.width,t.height);var h=!!s.backgroundColor,c=t.textPadding;c&&(r=_s(r,o,c),u-=t.height/2-c[0]-t.innerHeight/2);var p=this._getOrCreateChild(ts),d=p.createStyle();p.useStyle(d);var f=this._defaultStyle,g=!1,y=0,v=ms("fill"in s?s.fill:"fill"in e?e.fill:(g=!0,f.fill)),m=vs("stroke"in s?s.stroke:"stroke"in e?e.stroke:h||a||f.autoStroke&&!g?null:(y=2,f.stroke)),_=s.textShadowBlur>0||e.textShadowBlur>0;d.text=t.text,d.x=r,d.y=u,_&&(d.shadowBlur=s.textShadowBlur||e.textShadowBlur||0,d.shadowColor=s.textShadowColor||e.textShadowColor||"transparent",d.shadowOffsetX=s.textShadowOffsetX||e.textShadowOffsetX||0,d.shadowOffsetY=s.textShadowOffsetY||e.textShadowOffsetY||0),d.textAlign=o,d.textBaseline="middle",d.font=t.font||mi,d.opacity=et(s.opacity,e.opacity,1),m&&(d.lineWidth=et(s.lineWidth,e.lineWidth,y),d.lineDash=tt(s.lineDash,e.lineDash),d.lineDashOffset=e.lineDashOffset||0,d.stroke=m),v&&(d.fill=v);var x=t.contentWidth,b=t.contentHeight;p.setBoundingRect(new yi(Si(d.x,x,d.textAlign),Mi(d.y,b,d.textBaseline),x,b))},e.prototype._renderBackground=function(t,e,n,i,r,o){var a,s,l,u=t.backgroundColor,h=t.borderWidth,c=t.borderColor,p=u&&u.image,d=u&&!p,f=t.borderRadius,g=this;if(d||t.lineHeight||h&&c){(a=this._getOrCreateChild(hs)).useStyle(a.createStyle()),a.style.fill=null;var y=a.shape;y.x=n,y.y=i,y.width=r,y.height=o,y.r=f,a.dirtyShape()}if(d)(l=a.style).fill=u||null,l.fillOpacity=tt(t.fillOpacity,1);else if(p){(s=this._getOrCreateChild(is)).onload=function(){g.dirtyStyle()};var v=s.style;v.image=u.image,v.x=n,v.y=i,v.width=r,v.height=o}h&&c&&((l=a.style).lineWidth=h,l.stroke=c,l.strokeOpacity=tt(t.strokeOpacity,1),l.lineDash=t.borderDash,l.lineDashOffset=t.borderDashOffset||0,a.strokeContainThreshold=0,a.hasFill()&&a.hasStroke()&&(l.strokeFirst=!0,l.lineWidth*=2));var m=(a||s).style;m.shadowBlur=t.shadowBlur||0,m.shadowColor=t.shadowColor||"transparent",m.shadowOffsetX=t.shadowOffsetX||0,m.shadowOffsetY=t.shadowOffsetY||0,m.opacity=et(t.opacity,e.opacity,1)},e.makeFont=function(t){var e="";if(t.fontSize||t.fontFamily||t.fontWeight){var n="";n="string"!=typeof t.fontSize||-1===t.fontSize.indexOf("px")&&-1===t.fontSize.indexOf("rem")&&-1===t.fontSize.indexOf("em")?isNaN(+t.fontSize)?"12px":t.fontSize+"px":t.fontSize,e=[t.fontStyle,t.fontWeight,n,t.fontFamily||"sans-serif"].join(" ")}return e&&ot(e)||t.textFont||t.font},e}(Io),fs={left:!0,right:1,center:1},gs={top:1,bottom:1,middle:1};function ys(t){if(t){t.font=ds.makeFont(t);var e=t.align;"middle"===e&&(e="center"),t.align=null==e||fs[e]?e:"left";var n=t.verticalAlign;"center"===n&&(n="middle"),t.verticalAlign=null==n||gs[n]?n:"top",t.padding&&(t.padding=it(t.padding))}}function vs(t,e){return null==t||e<=0||"transparent"===t||"none"===t?null:t.image||t.colorStops?"#000":t}function ms(t){return null==t||"none"===t?null:t.image||t.colorStops?"#000":t}function _s(t,e,n){return"right"===e?t-n[1]:"center"===e?t+n[3]/2-n[1]/2:t+n[3]}function xs(t){var e=t.text;return null!=e&&(e+=""),e}function bs(t){return!!(t.backgroundColor||t.lineHeight||t.borderWidth&&t.borderColor)}var ws=Or(),Ss=function(t,e,n,i){if(i){var r=ws(i);r.dataIndex=n,r.dataType=e,r.seriesIndex=t,"group"===i.type&&i.traverse((function(i){var r=ws(i);r.seriesIndex=t,r.dataIndex=n,r.dataType=e}))}},Ms=1,Is={},Ts=Or(),Cs=["emphasis","blur","select"],Ds=["normal","emphasis","blur","select"],As=10,ks="highlight",Ls="downplay",Ps="select",Os="unselect",Rs="toggleSelect";function Ns(t){return null!=t&&"none"!==t}var zs=new Ae(100);function Es(t){if("string"!=typeof t)return t;var e=zs.get(t);return e||(e=Ue(t,-.1),zs.put(t,e)),e}function Bs(t,e,n){t.onHoverStateChange&&(t.hoverState||0)!==n&&t.onHoverStateChange(e),t.hoverState=n}function Vs(t){Bs(t,"emphasis",2)}function Gs(t){2===t.hoverState&&Bs(t,"normal",0)}function Fs(t){Bs(t,"blur",1)}function Hs(t){1===t.hoverState&&Bs(t,"normal",0)}function Ws(t){t.selected=!0}function Us(t){t.selected=!1}function Xs(t,e,n){e(t,n)}function Ys(t,e,n){Xs(t,e,n),t.isGroup&&t.traverse((function(t){Xs(t,e,n)}))}function Zs(t,e){switch(e){case"emphasis":t.hoverState=2;break;case"normal":t.hoverState=0;break;case"blur":t.hoverState=1;break;case"select":t.selected=!0}}function js(t,e){var n=this.states[t];if(this.style){if("emphasis"===t)return function(t,e,n,i){var r=n&&D(n,"select")>=0,o=!1;if(t instanceof Ja){var a=Ts(t),s=r&&a.selectFill||a.normalFill,l=r&&a.selectStroke||a.normalStroke;if(Ns(s)||Ns(l)){var u=(i=i||{}).style||{};"inherit"===u.fill?(o=!0,i=I({},i),(u=I({},u)).fill=s):!Ns(u.fill)&&Ns(s)?(o=!0,i=I({},i),(u=I({},u)).fill=Es(s)):!Ns(u.stroke)&&Ns(l)&&(o||(i=I({},i),u=I({},u)),u.stroke=Es(l)),i.style=u}}if(i&&null==i.z2){o||(i=I({},i));var h=t.z2EmphasisLift;i.z2=t.z2+(null!=h?h:As)}return i}(this,0,e,n);if("blur"===t)return function(t,e,n){var i=D(t.currentStates,e)>=0,r=t.style.opacity,o=i?null:function(t,e,n,i){for(var r=t.style,o={},a=0;a0){var o={dataIndex:r,seriesIndex:t.seriesIndex};null!=i&&(o.dataType=i),e.push(o)}}))})),e}function cl(t,e,n){yl(t,!0),Ys(t,qs),pl(t,e,n)}function pl(t,e,n){var i=ws(t);null!=e?(i.focus=e,i.blurScope=n):i.focus&&(i.focus=null)}var dl=["emphasis","blur","select"],fl={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function gl(t,e,n,i){n=n||"itemStyle";for(var r=0;r1&&(a*=Il(f),s*=Il(f));var g=(r===o?-1:1)*Il((a*a*(s*s)-a*a*(d*d)-s*s*(p*p))/(a*a*(d*d)+s*s*(p*p)))||0,y=g*a*d/s,v=g*-s*p/a,m=(t+n)/2+Cl(c)*y-Tl(c)*v,_=(e+i)/2+Tl(c)*y+Cl(c)*v,x=Ll([1,0],[(p-y)/a,(d-v)/s]),b=[(p-y)/a,(d-v)/s],w=[(-1*p-y)/a,(-1*d-v)/s],S=Ll(b,w);if(kl(b,w)<=-1&&(S=Dl),kl(b,w)>=1&&(S=0),S<0){var M=Math.round(S/Dl*1e6)/1e6;S=2*Dl+M%2*Dl}h.addData(u,m,_,a,s,x,S,c,o)}var Ol=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,Rl=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;var Nl=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.applyTransform=function(t){},e}(Ja);function zl(t){return null!=t.setData}function El(t,e){var n=function(t){var e=new Pa;if(!t)return e;var n,i=0,r=0,o=i,a=r,s=Pa.CMD,l=t.match(Ol);if(!l)return e;for(var u=0;uk*k+L*L&&(M=T,I=C),{cx:M,cy:I,x01:-h,y01:-c,x11:M*(r/b-1),y11:I*(r/b-1)}}function nu(t,e){var n=Jl(e.r,0),i=Jl(e.r0||0,0),r=n>0;if(r||i>0){if(r||(n=i,i=0),i>n){var o=n;n=i,i=o}var a,s=!!e.clockwise,l=e.startAngle,u=e.endAngle;if(l===u)a=0;else{var h=[l,u];La(h,!s),a=Kl(h[0]-h[1])}var c=e.cx,p=e.cy,d=e.cornerRadius||0,f=e.innerCornerRadius||0;if(n>tu)if(a>Xl-tu)t.moveTo(c+n*Zl(l),p+n*Yl(l)),t.arc(c,p,n,l,u,!s),i>tu&&(t.moveTo(c+i*Zl(u),p+i*Yl(u)),t.arc(c,p,i,u,l,s));else{var g=Kl(n-i)/2,y=Ql(g,d),v=Ql(g,f),m=v,_=y,x=n*Zl(l),b=n*Yl(l),w=i*Zl(u),S=i*Yl(u),M=void 0,I=void 0,T=void 0,C=void 0;if((y>tu||v>tu)&&(M=n*Zl(u),I=n*Yl(u),T=i*Zl(l),C=i*Yl(l),atu)if(_>tu){var N=eu(T,C,x,b,n,_,s),z=eu(M,I,w,S,n,_,s);t.moveTo(c+N.cx+N.x01,p+N.cy+N.y01),_tu&&a>tu)if(m>tu){N=eu(w,S,M,I,i,-m,s),z=eu(x,b,T,C,i,-m,s);t.lineTo(c+N.cx+N.x01,p+N.cy+N.y01),m=2){if(i&&"spline"!==i){var o=function(t,e,n,i){var r,o,a,s,l=[],u=[],h=[],c=[];if(i){a=[1/0,1/0],s=[-1/0,-1/0];for(var p=0,d=t.length;pn-2?n-1:l+1],d=t[l>n-3?n-1:l+2]);var f=u*u,g=u*f;i.push([su(h[0],c[0],p[0],d[0],u,f,g),su(h[1],c[1],p[1],d[1],u,f,g)])}return i}(r,n)),t.moveTo(r[0][0],r[0][1]);s=1;for(var c=r.length;sCu[1]){if(a=!1,r)return a;var u=Math.abs(Cu[0]-Tu[1]),h=Math.abs(Tu[0]-Cu[1]);Math.min(u,h)>i.len()&&(u0){var c={duration:h.duration,delay:h.delay||0,easing:h.easing,done:o,force:!!o||!!a,setToFinal:!u,scope:t,during:a};l?e.animateFrom(n,c):e.animateTo(n,c)}else e.stopAnimation(),!l&&e.attr(n),a&&a(1),o&&o()}function zu(t,e,n,i,r,o){Nu("update",t,e,n,i,r,o)}function Eu(t,e,n,i,r,o){Nu("init",t,e,n,i,r,o)}function Bu(t){if(!t.__zr)return!0;for(var e=0;eMath.abs(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function ah(t){return!t.isGroup}function sh(t,e,n){if(t&&e){var i,r=(i={},t.traverse((function(t){ah(t)&&t.anid&&(i[t.anid]=t)})),i);e.traverse((function(t){if(ah(t)&&t.anid){var e=r[t.anid];if(e){var i=o(t);t.attr(o(e)),zu(t,i,n,ws(t).dataIndex)}}}))}function o(t){var e={x:t.x,y:t.y,rotation:t.rotation};return function(t){return null!=t.shape}(t)&&(e.shape=I({},t.shape)),e}}function lh(t,e){return O(t,(function(t){var n=t[0];n=Wu(n,e.x),n=Uu(n,e.x+e.width);var i=t[1];return i=Wu(i,e.y),[n,i=Uu(i,e.y+e.height)]}))}function uh(t,e){var n=Wu(t.x,e.x),i=Uu(t.x+t.width,e.x+e.width),r=Wu(t.y,e.y),o=Uu(t.y+t.height,e.y+e.height);if(i>=n&&o>=r)return{x:n,y:r,width:i-n,height:o-r}}function hh(t,e,n){var i=I({rectHover:!0},e),r=i.style={strokeNoScale:!0};if(n=n||{x:-1,y:-1,width:2,height:2},t)return 0===t.indexOf("image://")?(r.image=t.slice(8),T(r,n),new is(i)):$u(t.replace("path://",""),i,n,"center")}function ch(t,e,n,i,r){for(var o=0,a=r[r.length-1];o=-1e-6)return!1;var f=t-r,g=e-o,y=dh(f,g,u,h)/d;if(y<0||y>1)return!1;var v=dh(f,g,c,p)/d;return!(v<0||v>1)}function dh(t,e,n,i){return t*i-n*e}function fh(t){var e=t.itemTooltipOption,n=t.componentModel,i=t.itemName,r=H(e)?{formatter:e}:e,o=n.mainType,a=n.componentIndex,s={componentType:o,name:i,$vars:["name"]};s[o+"Index"]=a;var l=t.formatterParamsExtra;l&&P(E(l),(function(t){dt(s,t)||(s[t]=l[t],s.$vars.push(t))}));var u=ws(t.el);u.componentMainType=o,u.componentIndex=a,u.tooltipConfig={name:i,option:T({content:i,formatterParams:s},r)}}qu("circle",Fl),qu("ellipse",Wl),qu("sector",ru),qu("ring",au),qu("polygon",hu),qu("polyline",pu),qu("rect",hs),qu("line",gu),qu("bezierCurve",_u),qu("arc",bu);var gh=Object.freeze({__proto__:null,updateProps:zu,initProps:Eu,removeElement:Vu,removeElementWithFadeOut:Fu,isElementRemoved:Bu,extendShape:Yu,extendPath:ju,registerShape:qu,getShapeClass:Ku,makePath:$u,makeImage:Ju,mergePath:th,resizePath:eh,subPixelOptimizeLine:function(t){return os(t.shape,t.shape,t.style),t},subPixelOptimizeRect:function(t){return as(t.shape,t.shape,t.style),t},subPixelOptimize:nh,getTransform:ih,applyTransform:rh,transformDirection:oh,groupTransition:sh,clipPointsByRect:lh,clipRectByRect:uh,createIcon:hh,linePolygonIntersect:ch,lineLineIntersect:ph,setTooltipConfig:fh,Group:Bi,Image:is,Text:ds,Circle:Fl,Ellipse:Wl,Sector:ru,Ring:au,Polygon:hu,Polyline:pu,Rect:hs,Line:gu,BezierCurve:_u,Arc:bu,IncrementalDisplayable:Pu,CompoundPath:wu,LinearGradient:Mu,RadialGradient:Iu,BoundingRect:yi,OrientedBoundingRect:ku,Point:si,Path:Ja}),yh={};function vh(t,e){for(var n=0;n-1?Yh:jh;function Jh(t,e){t=t.toUpperCase(),Kh[t]=new Hh(e),qh[t]=e}Jh(Zh,{time:{month:["January","February","March","April","May","June","July","August","September","October","November","December"],monthAbbr:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayOfWeek:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayOfWeekAbbr:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"]},legend:{selector:{all:"All",inverse:"Inv"}},toolbox:{brush:{title:{rect:"Box Select",polygon:"Lasso Select",lineX:"Horizontally Select",lineY:"Vertically Select",keep:"Keep Selections",clear:"Clear Selections"}},dataView:{title:"Data View",lang:["Data View","Close","Refresh"]},dataZoom:{title:{zoom:"Zoom",back:"Zoom Reset"}},magicType:{title:{line:"Switch to Line Chart",bar:"Switch to Bar Chart",stack:"Stack",tiled:"Tile"}},restore:{title:"Restore"},saveAsImage:{title:"Save as Image",lang:["Right Click to Save Image"]}},series:{typeNames:{pie:"Pie chart",bar:"Bar chart",line:"Line chart",scatter:"Scatter plot",effectScatter:"Ripple scatter plot",radar:"Radar chart",tree:"Tree",treemap:"Treemap",boxplot:"Boxplot",candlestick:"Candlestick",k:"K line chart",heatmap:"Heat map",map:"Map",parallel:"Parallel coordinate map",lines:"Line graph",graph:"Relationship graph",sankey:"Sankey diagram",funnel:"Funnel chart",gauge:"Gauge",pictorialBar:"Pictorial bar",themeRiver:"Theme River Map",sunburst:"Sunburst"}},aria:{general:{withTitle:'This is a chart about "{title}"',withoutTitle:"This is a chart"},series:{single:{prefix:"",withName:" with type {seriesType} named {seriesName}.",withoutName:" with type {seriesType}."},multiple:{prefix:". It consists of {seriesCount} series count.",withName:" The {seriesId} series is a {seriesType} representing {seriesName}.",withoutName:" The {seriesId} series is a {seriesType}.",separator:{middle:"",end:""}}},data:{allData:"The data is as follows: ",partialData:"The first {displayCnt} items are: ",withName:"the data for {name} is {value}",withoutName:"{value}",separator:{middle:", ",end:". "}}}}),Jh(Yh,{time:{month:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"],monthAbbr:["1月","2月","3月","4月","5月","6月","7月","8月","9月","10月","11月","12月"],dayOfWeek:["星期日","星期一","星期二","星期三","星期四","星期五","星期六"],dayOfWeekAbbr:["日","一","二","三","四","五","六"]},legend:{selector:{all:"全选",inverse:"反选"}},toolbox:{brush:{title:{rect:"矩形选择",polygon:"圈选",lineX:"横向选择",lineY:"纵向选择",keep:"保持选择",clear:"清除选择"}},dataView:{title:"数据视图",lang:["数据视图","关闭","刷新"]},dataZoom:{title:{zoom:"区域缩放",back:"区域缩放还原"}},magicType:{title:{line:"切换为折线图",bar:"切换为柱状图",stack:"切换为堆叠",tiled:"切换为平铺"}},restore:{title:"还原"},saveAsImage:{title:"保存为图片",lang:["右键另存为图片"]}},series:{typeNames:{pie:"饼图",bar:"柱状图",line:"折线图",scatter:"散点图",effectScatter:"涟漪散点图",radar:"雷达图",tree:"树图",treemap:"矩形树图",boxplot:"箱型图",candlestick:"K线图",k:"K线图",heatmap:"热力图",map:"地图",parallel:"平行坐标图",lines:"线图",graph:"关系图",sankey:"桑基图",funnel:"漏斗图",gauge:"仪表盘图",pictorialBar:"象形柱图",themeRiver:"主题河流图",sunburst:"旭日图"}},aria:{general:{withTitle:"这是一个关于“{title}”的图表。",withoutTitle:"这是一个图表,"},series:{single:{prefix:"",withName:"图表类型是{seriesType},表示{seriesName}。",withoutName:"图表类型是{seriesType}。"},multiple:{prefix:"它由{seriesCount}个图表系列组成。",withName:"第{seriesId}个系列是一个表示{seriesName}的{seriesType},",withoutName:"第{seriesId}个系列是一个{seriesType},",separator:{middle:";",end:"。"}}},data:{allData:"其数据是——",partialData:"其中,前{displayCnt}项是——",withName:"{name}的数据是{value}",withoutName:"{value}",separator:{middle:",",end:""}}}});var Qh=1e3,tc=6e4,ec=36e5,nc=864e5,ic=31536e6,rc={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}",none:"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}"},oc="{yyyy}-{MM}-{dd}",ac={year:"{yyyy}",month:"{yyyy}-{MM}",day:oc,hour:"{yyyy}-{MM}-{dd} "+rc.hour,minute:"{yyyy}-{MM}-{dd} "+rc.minute,second:"{yyyy}-{MM}-{dd} "+rc.second,millisecond:rc.none},sc=["year","month","day","hour","minute","second","millisecond"],lc=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function uc(t,e){return"0000".substr(0,e-(t+="").length)+t}function hc(t){switch(t){case"half-year":case"quarter":return"month";case"week":case"half-week":return"day";case"half-day":case"quarter-day":return"hour";default:return t}}function cc(t){return t===hc(t)}function pc(t,e,n,i){var r=ar(t),o=r[gc(n)](),a=r[yc(n)]()+1,s=Math.floor((a-1)/4)+1,l=r[vc(n)](),u=r["get"+(n?"UTC":"")+"Day"](),h=r[mc(n)](),c=(h-1)%12+1,p=r[_c(n)](),d=r[xc(n)](),f=r[bc(n)](),g=(i instanceof Hh?i:function(t){return Kh[t]}(i||$h)||Kh.EN).getModel("time"),y=g.get("month"),v=g.get("monthAbbr"),m=g.get("dayOfWeek"),_=g.get("dayOfWeekAbbr");return(e||"").replace(/{yyyy}/g,o+"").replace(/{yy}/g,o%100+"").replace(/{Q}/g,s+"").replace(/{MMMM}/g,y[a-1]).replace(/{MMM}/g,v[a-1]).replace(/{MM}/g,uc(a,2)).replace(/{M}/g,a+"").replace(/{dd}/g,uc(l,2)).replace(/{d}/g,l+"").replace(/{eeee}/g,m[u]).replace(/{ee}/g,_[u]).replace(/{e}/g,u+"").replace(/{HH}/g,uc(h,2)).replace(/{H}/g,h+"").replace(/{hh}/g,uc(c+"",2)).replace(/{h}/g,c+"").replace(/{mm}/g,uc(p,2)).replace(/{m}/g,p+"").replace(/{ss}/g,uc(d,2)).replace(/{s}/g,d+"").replace(/{SSS}/g,uc(f,3)).replace(/{S}/g,f+"")}function dc(t,e){var n=ar(t),i=n[yc(e)]()+1,r=n[vc(e)](),o=n[mc(e)](),a=n[_c(e)](),s=n[xc(e)](),l=0===n[bc(e)](),u=l&&0===s,h=u&&0===a,c=h&&0===o,p=c&&1===r;return p&&1===i?"year":p?"month":c?"day":h?"hour":u?"minute":l?"second":"millisecond"}function fc(t,e,n){var i="number"==typeof t?ar(t):t;switch(e=e||dc(t,n)){case"year":return i[gc(n)]();case"half-year":return i[yc(n)]()>=6?1:0;case"quarter":return Math.floor((i[yc(n)]()+1)/4);case"month":return i[yc(n)]();case"day":return i[vc(n)]();case"half-day":return i[mc(n)]()/24;case"hour":return i[mc(n)]();case"minute":return i[_c(n)]();case"second":return i[xc(n)]();case"millisecond":return i[bc(n)]()}}function gc(t){return t?"getUTCFullYear":"getFullYear"}function yc(t){return t?"getUTCMonth":"getMonth"}function vc(t){return t?"getUTCDate":"getDate"}function mc(t){return t?"getUTCHours":"getHours"}function _c(t){return t?"getUTCMinutes":"getMinutes"}function xc(t){return t?"getUTCSeconds":"getSeconds"}function bc(t){return t?"getUTCMilliseconds":"getMilliseconds"}function wc(t){return t?"setUTCFullYear":"setFullYear"}function Sc(t){return t?"setUTCMonth":"setMonth"}function Mc(t){return t?"setUTCDate":"setDate"}function Ic(t){return t?"setUTCHours":"setHours"}function Tc(t){return t?"setUTCMinutes":"setMinutes"}function Cc(t){return t?"setUTCSeconds":"setSeconds"}function Dc(t){return t?"setUTCMilliseconds":"setMilliseconds"}function Ac(t){if(!dr(t))return H(t)?t:"-";var e=(t+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function kc(t,e){return t=(t||"").toLowerCase().replace(/-(.)/g,(function(t,e){return e.toUpperCase()})),e&&t&&(t=t.charAt(0).toUpperCase()+t.slice(1)),t}var Lc=it,Pc=/([&<>"'])/g,Oc={"&":"&","<":"<",">":">",'"':""","'":"'"};function Rc(t){return null==t?"":(t+"").replace(Pc,(function(t,e){return Oc[e]}))}function Nc(t,e,n){function i(t){return t&&ot(t)?t:"-"}function r(t){return!(null==t||isNaN(t)||!isFinite(t))}var o="time"===e,a=t instanceof Date;if(o||a){var s=o?ar(t):t;if(!isNaN(+s))return pc(s,"{yyyy}-{MM}-{dd} {hh}:{mm}:{ss}",n);if(a)return"-"}if("ordinal"===e)return W(t)?i(t):U(t)&&r(t)?t+"":"-";var l=pr(t);return r(l)?Ac(l):W(t)?i(t):"-"}var zc=["a","b","c","d","e","f","g"],Ec=function(t,e){return"{"+t+(null==e?"":e)+"}"};function Bc(t,e,n){G(e)||(e=[e]);var i=e.length;if(!i)return"";for(var r=e[0].$vars||[],o=0;o':'':{renderMode:o,content:"{"+(n.markerId||"markerX")+"|} ",style:"subItem"===r?{width:4,height:4,borderRadius:2,backgroundColor:i}:{width:10,height:10,borderRadius:5,backgroundColor:i}}:""}function Gc(t,e){return e=e||"transparent",H(t)?t:X(t)&&t.colorStops&&(t.colorStops[0]||{}).color||e}function Fc(t,e){if("_blank"===e||"blank"===e){var n=window.open();n.opener=null,n.location.href=t}else window.open(t,e)}var Hc=P,Wc=["left","right","top","bottom","width","height"],Uc=[["width","left","right"],["height","top","bottom"]];function Xc(t,e,n,i,r){var o=0,a=0;null==i&&(i=1/0),null==r&&(r=1/0);var s=0;e.eachChild((function(l,u){var h,c,p=l.getBoundingRect(),d=e.childAt(u+1),f=d&&d.getBoundingRect();if("horizontal"===t){var g=p.width+(f?-f.x+p.x:0);(h=o+g)>i||l.newline?(o=0,h=g,a+=s+n,s=p.height):s=Math.max(s,p.height)}else{var y=p.height+(f?-f.y+p.y:0);(c=a+y)>r||l.newline?(o+=s+n,a=0,c=y,s=p.width):s=Math.max(s,p.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===t?o=h+n:a=c+n)}))}var Yc=Xc;V(Xc,"vertical"),V(Xc,"horizontal");function Zc(t,e,n){n=Lc(n||0);var i=e.width,r=e.height,o=ji(t.left,i),a=ji(t.top,r),s=ji(t.right,i),l=ji(t.bottom,r),u=ji(t.width,i),h=ji(t.height,r),c=n[2]+n[0],p=n[1]+n[3],d=t.aspect;switch(isNaN(u)&&(u=i-s-p-o),isNaN(h)&&(h=r-l-c-a),null!=d&&(isNaN(u)&&isNaN(h)&&(d>i/r?u=.8*i:h=.8*r),isNaN(u)&&(u=d*h),isNaN(h)&&(h=u/d)),isNaN(o)&&(o=i-s-u-p),isNaN(a)&&(a=r-l-h-c),t.left||t.right){case"center":o=i/2-u/2-n[3];break;case"right":o=i-u-p}switch(t.top||t.bottom){case"middle":case"center":a=r/2-h/2-n[0];break;case"bottom":a=r-h-c}o=o||0,a=a||0,isNaN(u)&&(u=i-p-o-(s||0)),isNaN(h)&&(h=r-c-a-(l||0));var f=new yi(o+n[3],a+n[0],u,h);return f.margin=n,f}function jc(t,e,n,i,r){var o=!r||!r.hv||r.hv[0],a=!r||!r.hv||r.hv[1],s=r&&r.boundingMode||"all";if(o||a){var l;if("raw"===s)l="group"===t.type?new yi(0,0,+e.width||0,+e.height||0):t.getBoundingRect();else if(l=t.getBoundingRect(),t.needLocalTransform()){var u=t.getLocalTransform();(l=l.clone()).applyTransform(u)}var h=Zc(T({width:l.width,height:l.height},e),n,i),c=o?h.x-l.x:0,p=a?h.y-l.y:0;"raw"===s?(t.x=c,t.y=p):(t.x+=c,t.y+=p),t.markRedraw()}}function qc(t){var e=t.layoutMode||t.constructor.layoutMode;return X(e)?e:e?{type:e}:null}function Kc(t,e,n){var i=n&&n.ignoreSize;!G(i)&&(i=[i,i]);var r=a(Uc[0],0),o=a(Uc[1],1);function a(n,r){var o={},a=0,u={},h=0;if(Hc(n,(function(e){u[e]=t[e]})),Hc(n,(function(t){s(e,t)&&(o[t]=u[t]=e[t]),l(o,t)&&a++,l(u,t)&&h++})),i[r])return l(e,n[1])?u[n[2]]=null:l(e,n[2])&&(u[n[1]]=null),u;if(2!==h&&a){if(a>=2)return o;for(var c=0;c=0;a--)o=S(o,n[a],!0);e.defaultOption=o}return e.defaultOption},e.prototype.getReferringComponents=function(t,e){var n=t+"Index",i=t+"Id";return Vr(this.ecModel,t,{index:this.get(n,!0),id:this.get(i,!0)},e)},e.prototype.getBoxLayoutParams=function(){var t=this;return{left:t.get("left"),top:t.get("top"),right:t.get("right"),bottom:t.get("bottom"),width:t.get("width"),height:t.get("height")}},e.protoInitialize=function(){var t=e.prototype;t.type="component",t.id="",t.name="",t.mainType="",t.subType="",t.componentIndex=0}(),e}(Hh);jr(tp,Hh),Jr(tp),function(t){var e={};t.registerSubTypeDefaulter=function(t,n){var i=Xr(t);e[i.main]=n},t.determineSubType=function(n,i){var r=i.type;if(!r){var o=Xr(n).main;t.hasSubTypes(n)&&e[o]&&(r=e[o](i))}return r}}(tp),function(t,e){function n(t,e){return t[e]||(t[e]={predecessor:[],successor:[]}),t[e]}t.topologicalTravel=function(t,i,r,o){if(t.length){var a=function(t){var i={},r=[];return P(t,(function(o){var a=n(i,o),s=function(t,e){var n=[];return P(t,(function(t){D(e,t)>=0&&n.push(t)})),n}(a.originalDeps=e(o),t);a.entryCount=s.length,0===a.entryCount&&r.push(o),P(s,(function(t){D(a.predecessor,t)<0&&a.predecessor.push(t);var e=n(i,t);D(e.successor,t)<0&&e.successor.push(o)}))})),{graph:i,noEntryList:r}}(i),s=a.graph,l=a.noEntryList,u={};for(P(t,(function(t){u[t]=!0}));l.length;){var h=l.pop(),c=s[h],p=!!u[h];p&&(r.call(o,h,c.originalDeps.slice()),delete u[h]),P(c.successor,p?f:d)}P(u,(function(){var t="";throw new Error(t)}))}function d(t){s[t].entryCount--,0===s[t].entryCount&&l.push(t)}function f(t){u[t]=!0,d(t)}}}(tp,(function(t){var e=[];P(tp.getClassesByMainType(t),(function(t){e=e.concat(t.dependencies||t.prototype.dependencies||[])})),e=O(e,(function(t){return Xr(t).main})),"dataset"!==t&&D(e,"dataset")<=0&&e.unshift("dataset");return e}));var ep="";"undefined"!=typeof navigator&&(ep=navigator.platform||"");var np="rgba(0, 0, 0, 0.2)",ip={darkMode:"auto",colorBy:"series",color:["#5470c6","#91cc75","#fac858","#ee6666","#73c0de","#3ba272","#fc8452","#9a60b4","#ea7ccc"],gradientColor:["#f6efa6","#d88273","#bf444c"],aria:{decal:{decals:[{color:np,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:np,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:np,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:np,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:np,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:np,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:ep.match(/^Win/)?"Microsoft YaHei":"sans-serif",fontSize:12,fontStyle:"normal",fontWeight:"normal"},blendMode:null,stateAnimation:{duration:300,easing:"cubicOut"},animation:"auto",animationDuration:1e3,animationDurationUpdate:500,animationEasing:"cubicInOut",animationEasingUpdate:"cubicInOut",animationThreshold:2e3,progressiveThreshold:3e3,progressive:400,hoverLayerThreshold:3e3,useUTC:!1},rp=ht(["tooltip","label","itemName","itemId","itemGroupId","seriesName"]),op="original",ap="arrayRows",sp="objectRows",lp="keyedColumns",up="typedArray",hp="unknown",cp="column",pp="row",dp=1,fp=2,gp=3,yp=Or();function vp(t,e,n){var i={},r=_p(e);if(!r||!t)return i;var o,a,s=[],l=[],u=e.ecModel,h=yp(u).datasetMap,c=r.uid+"_"+n.seriesLayoutBy;P(t=t.slice(),(function(e,n){var r=X(e)?e:t[n]={name:e};"ordinal"===r.type&&null==o&&(o=n,a=f(r)),i[r.name]=[]}));var p=h.get(c)||h.set(c,{categoryWayDim:a,valueWayDim:0});function d(t,e,n){for(var i=0;ie)return t[i];return t[n-1]}(i,a):n;if((h=h||n)&&h.length){var c=h[l];return r&&(u[r]=c),s.paletteIdx=(l+1)%h.length,c}}var Lp=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.init=function(t,e,n,i,r,o){i=i||{},this.option=null,this._theme=new Hh(i),this._locale=new Hh(r),this._optionManager=o},e.prototype.setOption=function(t,e,n){var i=Rp(e);this._optionManager.setOption(t,n,i),this._resetOption(null,i)},e.prototype.resetOption=function(t,e){return this._resetOption(t,Rp(e))},e.prototype._resetOption=function(t,e){var n=!1,i=this._optionManager;if(!t||"recreate"===t){var r=i.mountOption("recreate"===t);0,this.option&&"recreate"!==t?(this.restoreData(),this._mergeOption(r,e)):Ip(this,r),n=!0}if("timeline"!==t&&"media"!==t||this.restoreData(),!t||"recreate"===t||"timeline"===t){var o=i.getTimelineOption(this);o&&(n=!0,this._mergeOption(o,e))}if(!t||"recreate"===t||"media"===t){var a=i.getMediaOption(this);a.length&&P(a,(function(t){n=!0,this._mergeOption(t,e)}),this)}return n},e.prototype.mergeOption=function(t){this._mergeOption(t,null)},e.prototype._mergeOption=function(t,e){var n=this.option,i=this._componentsMap,r=this._componentsCount,o=[],a=ht(),s=e&&e.replaceMergeMainTypeMap;yp(this).datasetMap=ht(),P(t,(function(t,e){null!=t&&(tp.hasClass(e)?e&&(o.push(e),a.set(e,!0)):n[e]=null==n[e]?w(t):S(n[e],t,!0))})),s&&s.each((function(t,e){tp.hasClass(e)&&!a.get(e)&&(o.push(e),a.set(e,!0))})),tp.topologicalTravel(o,tp.getAllClassMainTypes(),(function(e){var o=function(t,e,n){var i=wp.get(e);if(!i)return n;var r=i(t);return r?n.concat(r):n}(this,e,br(t[e])),a=i.get(e),l=a?s&&s.get(e)?"replaceMerge":"normalMerge":"replaceAll",u=Tr(a,o,l);(function(t,e,n){P(t,(function(t){var i=t.newOption;X(i)&&(t.keyInfo.mainType=e,t.keyInfo.subType=function(t,e,n,i){return e.type?e.type:n?n.subType:i.determineSubType(t,e)}(e,i,t.existing,n))}))})(u,e,tp),n[e]=null,i.set(e,null),r.set(e,0);var h=[],c=[],p=0;P(u,(function(t,n){var i=t.existing,r=t.newOption;if(r){var o="series"===e,a=tp.getClass(e,t.keyInfo.subType,!o);if(!a)return;if(i&&i.constructor===a)i.name=t.keyInfo.name,i.mergeOption(r,this),i.optionUpdated(r,!1);else{var s=I({componentIndex:n},t.keyInfo);I(i=new a(r,this,this,s),s),t.brandNew&&(i.__requireNewView=!0),i.init(r,this,this),i.optionUpdated(null,!0)}}else i&&(i.mergeOption({},this),i.optionUpdated({},!1));i?(h.push(i.option),c.push(i),p++):(h.push(void 0),c.push(void 0))}),this),n[e]=h,i.set(e,c),r.set(e,p),"series"===e&&Sp(this)}),this),this._seriesIndices||Sp(this)},e.prototype.getOption=function(){var t=w(this.option);return P(t,(function(e,n){if(tp.hasClass(n)){for(var i=br(e),r=i.length,o=!1,a=r-1;a>=0;a--)i[a]&&!Lr(i[a])?o=!0:(i[a]=null,!o&&r--);i.length=r,t[n]=i}})),delete t["\0_ec_inner"],t},e.prototype.getTheme=function(){return this._theme},e.prototype.getLocaleModel=function(){return this._locale},e.prototype.setUpdatePayload=function(t){this._payload=t},e.prototype.getUpdatePayload=function(){return this._payload},e.prototype.getComponent=function(t,e){var n=this._componentsMap.get(t);if(n){var i=n[e||0];if(i)return i;if(null==e)for(var r=0;r=e:"max"===n?t<=e:t===e})(i[a],t,o)||(r=!1)}})),r}var Hp=P,Wp=X,Up=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function Xp(t){var e=t&&t.itemStyle;if(e)for(var n=0,i=Up.length;n=0;f--){var g=t[f];if(s||(c=g.data.rawIndexOf(g.stackedByDimension,h)),c>=0){var y=g.data.getByRawIndex(g.stackResultDimension,c);if(p>=0&&y>0||p<=0&&y<0){p=er(p,y),d=y;break}}}return i[0]=p,i[1]=d,i}))}))}var ud,hd,cd,pd,dd,fd=function(t){this.data=t.data||(t.sourceFormat===lp?{}:[]),this.sourceFormat=t.sourceFormat||hp,this.seriesLayoutBy=t.seriesLayoutBy||cp,this.startIndex=t.startIndex||0,this.dimensionsDetectedCount=t.dimensionsDetectedCount,this.metaRawOption=t.metaRawOption;var e=this.dimensionsDefine=t.dimensionsDefine;if(e)for(var n=0;nu&&(u=d)}s[0]=l,s[1]=u}},i=function(){return this._data?this._data.length/this._dimSize:0};function r(t){for(var e=0;e=0&&(s=o.interpolatedValue[l])}return null!=s?s+"":""})):void 0},t.prototype.getRawValue=function(t,e){return Od(this.getData(e),t)},t.prototype.formatTooltip=function(t,e,n){},t}();function zd(t){var e,n;return X(t)?t.type&&(n=t):e=t,{markupText:e,markupFragment:n}}function Ed(t){return new Bd(t)}var Bd=function(){function t(t){t=t||{},this._reset=t.reset,this._plan=t.plan,this._count=t.count,this._onDirty=t.onDirty,this._dirty=!0}return t.prototype.perform=function(t){var e,n=this._upstream,i=t&&t.skip;if(this._dirty&&n){var r=this.context;r.data=r.outputData=n.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this),this._plan&&!i&&(e=this._plan(this.context));var o,a=h(this._modBy),s=this._modDataCount||0,l=h(t&&t.modBy),u=t&&t.modDataCount||0;function h(t){return!(t>=1)&&(t=1),t}a===l&&s===u||(e="reset"),(this._dirty||"reset"===e)&&(this._dirty=!1,o=this._doReset(i)),this._modBy=l,this._modDataCount=u;var c=t&&t.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var p=this._dueIndex,d=Math.min(null!=c?this._dueIndex+c:1/0,this._dueEnd);if(!i&&(o||p1&&i>0?s:a}};return o;function a(){return e=t?null:oe},gte:function(t,e){return t>=e}},Ud=function(){function t(t,e){if("number"!=typeof e){var n="";0,mr(n)}this._opFn=Wd[t],this._rvalFloat=pr(e)}return t.prototype.evaluate=function(t){return"number"==typeof t?this._opFn(t,this._rvalFloat):this._opFn(pr(t),this._rvalFloat)},t}(),Xd=function(){function t(t,e){var n="desc"===t;this._resultLT=n?1:-1,null==e&&(e=n?"min":"max"),this._incomparable="min"===e?-1/0:1/0}return t.prototype.evaluate=function(t,e){var n=typeof t,i=typeof e,r="number"===n?t:pr(t),o="number"===i?e:pr(e),a=isNaN(r),s=isNaN(o);if(a&&(r=this._incomparable),s&&(o=this._incomparable),a&&s){var l="string"===n,u="string"===i;l&&(r=u?t:0),u&&(o=l?e:0)}return ro?-this._resultLT:0},t}(),Yd=function(){function t(t,e){this._rval=e,this._isEQ=t,this._rvalTypeof=typeof e,this._rvalFloat=pr(e)}return t.prototype.evaluate=function(t){var e=t===this._rval;if(!e){var n=typeof t;n===this._rvalTypeof||"number"!==n&&"number"!==this._rvalTypeof||(e=pr(t)===this._rvalFloat)}return this._isEQ?e:!e},t}();function Zd(t,e){return"eq"===t||"ne"===t?new Yd("eq"===t,e):dt(Wd,t)?new Ud(t,e):null}var jd=function(){function t(){}return t.prototype.getRawData=function(){throw new Error("not supported")},t.prototype.getRawDataItem=function(t){throw new Error("not supported")},t.prototype.cloneRawData=function(){},t.prototype.getDimensionInfo=function(t){},t.prototype.cloneAllDimensionInfo=function(){},t.prototype.count=function(){},t.prototype.retrieveValue=function(t,e){},t.prototype.retrieveValueFromItem=function(t,e){},t.prototype.convertValue=function(t,e){return Gd(t,e)},t}();function qd(t){var e=t.sourceFormat;if(!ef(e)){var n="";0,mr(n)}return t.data}function Kd(t){var e=t.sourceFormat,n=t.data;if(!ef(e)){var i="";0,mr(i)}if(e===ap){for(var r=[],o=0,a=n.length;o65535?of:af}function cf(t,e,n,i,r){var o=uf[n||"float"];if(r){var a=t[e],s=a&&a.length;if(s!==i){for(var l=new o(i),u=0;ug[1]&&(g[1]=f)}return this._rawCount=this._count=s,{start:a,end:s}},t.prototype._initDataFromProvider=function(t,e,n){for(var i=this._provider,r=this._chunks,o=this._dimensions,a=o.length,s=this._rawExtent,l=O(o,(function(t){return t.property})),u=0;uy[1]&&(y[1]=g)}}!i.persistent&&i.clean&&i.clean(),this._rawCount=this._count=e,this._extent=[]},t.prototype.count=function(){return this._count},t.prototype.get=function(t,e){if(!(e>=0&&e=0&&e=this._rawCount||t<0)return-1;if(!this._indices)return t;var e=this._indices,n=e[t];if(null!=n&&nt))return o;r=o-1}}return-1},t.prototype.indicesOfNearest=function(t,e,n){var i=this._chunks[t],r=[];if(!i)return r;null==n&&(n=1/0);for(var o=1/0,a=-1,s=0,l=0,u=this.count();l=0&&a<0)&&(o=c,a=h,s=0),h===a&&(r[s++]=l))}return r.length=s,r},t.prototype.getIndices=function(){var t,e=this._indices;if(e){var n=e.constructor,i=this._count;if(n===Array){t=new n(i);for(var r=0;r=u&&_<=h||isNaN(_))&&(a[s++]=d),d++}p=!0}else if(2===r){f=c[i[0]];var y=c[i[1]],v=t[i[1]][0],m=t[i[1]][1];for(g=0;g=u&&_<=h||isNaN(_))&&(x>=v&&x<=m||isNaN(x))&&(a[s++]=d),d++}p=!0}}if(!p)if(1===r)for(g=0;g=u&&_<=h||isNaN(_))&&(a[s++]=b)}else for(g=0;gt[M][1])&&(w=!1)}w&&(a[s++]=e.getRawIndex(g))}return sy[1]&&(y[1]=g)}}}},t.prototype.lttbDownSample=function(t,e){var n,i,r,o=this.clone([t],!0),a=o._chunks[t],s=this.count(),l=0,u=Math.floor(1/e),h=this.getRawIndex(0),c=new(hf(this._rawCount))(Math.ceil(s/u)+2);c[l++]=h;for(var p=1;pn&&(n=i,r=S)}c[l++]=r,h=r}return c[l++]=this.getRawIndex(s-1),o._count=l,o._indices=c,o.getRawIndex=this._getRawIdx,o},t.prototype.downSample=function(t,e,n,i){for(var r=this.clone([t],!0),o=r._chunks,a=[],s=Math.floor(1/e),l=o[t],u=this.count(),h=r._rawExtent[t]=[1/0,-1/0],c=new(hf(this._rawCount))(Math.ceil(u/s)),p=0,d=0;du-d&&(s=u-d,a.length=s);for(var f=0;fh[1]&&(h[1]=y),c[p++]=v}return r._count=p,r._indices=c,r._updateGetRawIdx(),r},t.prototype.each=function(t,e){if(this._count)for(var n=t.length,i=this._chunks,r=0,o=this.count();ra&&(a=l)}return i=[o,a],this._extent[t]=i,i},t.prototype.getRawDataItem=function(t){var e=this.getRawIndex(t);if(this._provider.persistent)return this._provider.getItem(e);for(var n=[],i=this._chunks,r=0;r=0?this._indices[t]:-1},t.prototype._updateGetRawIdx=function(){this.getRawIndex=this._indices?this._getRawIdx:this._getRawIdxIdentity},t.internalField=function(){function t(t,e,n,i){return Gd(t[i],this._dimensions[i])}nf={arrayRows:t,objectRows:function(t,e,n,i){return Gd(t[e],this._dimensions[i])},keyedColumns:t,original:function(t,e,n,i){var r=t&&(null==t.value?t:t.value);return Gd(r instanceof Array?r[i]:r,this._dimensions[i])},typedArray:function(t,e,n,i){return t[i]}}}(),t}(),df=function(){function t(t){this._sourceList=[],this._storeList=[],this._upstreamSignList=[],this._versionSignBase=0,this._dirty=!0,this._sourceHost=t}return t.prototype.dirty=function(){this._setLocalSource([],[]),this._storeList=[],this._dirty=!0},t.prototype._setLocalSource=function(t,e){this._sourceList=t,this._upstreamSignList=e,this._versionSignBase++,this._versionSignBase>9e10&&(this._versionSignBase=0)},t.prototype._getVersionSign=function(){return this._sourceHost.uid+"_"+this._versionSignBase},t.prototype.prepareSource=function(){this._isDirty()&&(this._createSource(),this._dirty=!1)},t.prototype._createSource=function(){this._setLocalSource([],[]);var t,e,n=this._sourceHost,i=this._getUpstreamSourceManagers(),r=!!i.length;if(gf(n)){var o=n,a=void 0,s=void 0,l=void 0;if(r){var u=i[0];u.prepareSource(),a=(l=u.getSource()).data,s=l.sourceFormat,e=[u._getVersionSign()]}else s=Z(a=o.get("data",!0))?up:op,e=[];var h=this._getSourceMetaRawOption()||{},c=l&&l.metaRawOption||{},p=tt(h.seriesLayoutBy,c.seriesLayoutBy)||null,d=tt(h.sourceHeader,c.sourceHeader)||null,f=tt(h.dimensions,c.dimensions);t=p!==c.seriesLayoutBy||!!d!=!!c.sourceHeader||f?[yd(a,{seriesLayoutBy:p,sourceHeader:d,dimensions:f},s)]:[]}else{var g=n;if(r){var y=this._applyTransform(i);t=y.sourceList,e=y.upstreamSignList}else{t=[yd(g.get("source",!0),this._getSourceMetaRawOption(),null)],e=[]}}this._setLocalSource(t,e)},t.prototype._applyTransform=function(t){var e,n=this._sourceHost,i=n.get("transform",!0),r=n.get("fromTransformResult",!0);if(null!=r){var o="";1!==t.length&&yf(o)}var a,s=[],l=[];return P(t,(function(t){t.prepareSource();var e=t.getSource(r||0),n="";null==r||e||yf(n),s.push(e),l.push(t._getVersionSign())})),i?e=function(t,e,n){var i=br(t),r=i.length,o="";r||mr(o);for(var a=0,s=r;a1||e>0&&!t.noHeader,i=0;P(t.blocks,(function(t){bf(t).planLayout(t);var e=t.__gapLevelBetweenSubBlocks;e>=i&&(i=e+(!n||e&&("section"!==t.type||t.noHeader)?0:1))})),t.__gapLevelBetweenSubBlocks=i},build:function(t,e,n,i){var r=e.noHeader,o=Mf(e),a=function(t,e,n,i){var r=[],o=e.blocks||[];rt(!o||G(o)),o=o||[];var a=t.orderMode;if(e.sortBlocks&&a){o=o.slice();var s={valueAsc:"asc",valueDesc:"desc"};if(dt(s,a)){var l=new Xd(s[a],null);o.sort((function(t,e){return l.evaluate(t.sortParam,e.sortParam)}))}else"seriesDesc"===a&&o.reverse()}var u=Mf(e);if(P(o,(function(e,n){var o=bf(e).build(t,e,n>0?u.html:0,i);null!=o&&r.push(o)})),!r.length)return;return"richText"===t.renderMode?r.join(u.richText):If(r.join(""),n)}(t,e,r?n:o.html,i);if(r)return a;var s=Nc(e.header,"ordinal",t.useUTC),l=vf(i,t.renderMode).nameStyle;return"richText"===t.renderMode?Tf(t,s,l)+o.richText+a:If('
'+Rc(s)+"
"+a,n)}},nameValue:{planLayout:function(t){t.__gapLevelBetweenSubBlocks=0},build:function(t,e,n,i){var r=t.renderMode,o=e.noName,a=e.noValue,s=!e.markerType,l=e.name,u=e.value,h=t.useUTC;if(!o||!a){var c=s?"":t.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||"#333",r),p=o?"":Nc(l,"ordinal",h),d=e.valueType,f=a?[]:G(u)?O(u,(function(t,e){return Nc(t,G(d)?d[e]:d,h)})):[Nc(u,G(d)?d[0]:d,h)],g=!s||!o,y=!s&&o,v=vf(i,r),m=v.nameStyle,_=v.valueStyle;return"richText"===r?(s?"":c)+(o?"":Tf(t,p,m))+(a?"":function(t,e,n,i,r){var o=[r],a=i?10:20;return n&&o.push({padding:[0,0,0,a],align:"right"}),t.markupStyleCreator.wrapRichTextStyle(e.join(" "),o)}(t,f,g,y,_)):If((s?"":c)+(o?"":function(t,e,n){return''+Rc(t)+""}(p,!s,m))+(a?"":function(t,e,n,i){var r=n?"10px":"20px";return''+O(t,(function(t){return Rc(t)})).join("  ")+""}(f,g,y,_)),n)}}}};function Sf(t,e,n,i,r,o){if(t){var a=bf(t);a.planLayout(t);var s={useUTC:r,renderMode:n,orderMode:i,markupStyleCreator:e};return a.build(s,t,0,o)}}function Mf(t){var e=t.__gapLevelBetweenSubBlocks;return{html:mf[e],richText:_f[e]}}function If(t,e){return'
'+t+'
'}function Tf(t,e,n){return t.markupStyleCreator.wrapRichTextStyle(e,n)}function Cf(t,e){return Gc(t.getData().getItemVisual(e,"style")[t.visualDrawType])}function Df(t,e){var n=t.get("padding");return null!=n?n:"richText"===e?[8,10]:10}var Af=function(){function t(){this.richTextStyles={},this._nextStyleNameId=fr()}return t.prototype._generateStyleName=function(){return"__EC_aUTo_"+this._nextStyleNameId++},t.prototype.makeTooltipMarker=function(t,e,n){var i="richText"===n?this._generateStyleName():null,r=Vc({color:e,type:t,renderMode:n,markerId:i});return H(r)?r:(this.richTextStyles[i]=r.style,r.content)},t.prototype.wrapRichTextStyle=function(t,e){var n={};G(e)?P(e,(function(t){return I(n,t)})):I(n,e);var i=this._generateStyleName();return this.richTextStyles[i]=n,"{"+i+"|"+t+"}"},t}();function kf(t){var e,n,i,r,o=t.series,a=t.dataIndex,s=t.multipleSeries,l=o.getData(),u=l.mapDimensionsAll("defaultedTooltip"),h=u.length,c=o.getRawValue(a),p=G(c),d=Cf(o,a);if(h>1||p&&!h){var f=function(t,e,n,i,r){var o=e.getData(),a=R(t,(function(t,e,n){var i=o.getDimensionInfo(n);return t||i&&!1!==i.tooltip&&null!=i.displayName}),!1),s=[],l=[],u=[];function h(t,e){var n=o.getDimensionInfo(e);n&&!1!==n.otherDims.tooltip&&(a?u.push(xf("nameValue",{markerType:"subItem",markerColor:r,name:n.displayName,value:t,valueType:n.type})):(s.push(t),l.push(n.type)))}return i.length?P(i,(function(t){h(Od(o,n,t),t)})):P(t,h),{inlineValues:s,inlineValueTypes:l,blocks:u}}(c,o,a,u,d);e=f.inlineValues,n=f.inlineValueTypes,i=f.blocks,r=f.inlineValues[0]}else if(h){var g=l.getDimensionInfo(u[0]);r=e=Od(l,a,u[0]),n=g.type}else r=e=p?c[0]:c;var y=kr(o),v=y&&o.name||"",m=l.getName(a),_=s?v:m;return xf("section",{header:v,noHeader:s||!y,sortParam:r,blocks:[xf("nameValue",{markerType:"item",markerColor:d,name:_,noName:!ot(_),value:e,valueType:n})].concat(i||[])})}var Lf=Or();function Pf(t,e){return t.getName(e)||t.getId(e)}var Of=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._selectedDataIndicesMap={},e}return n(e,t),e.prototype.init=function(t,e,n){this.seriesIndex=this.componentIndex,this.dataTask=Ed({count:Nf,reset:zf}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,n),(Lf(this).sourceManager=new df(this)).prepareSource();var i=this.getInitialData(t,n);Bf(i,this),this.dataTask.context.data=i,Lf(this).dataBeforeProcessed=i,Rf(this),this._initSelectedMapFromData(i)},e.prototype.mergeDefaultAndTheme=function(t,e){var n=qc(this),i=n?$c(t):{},r=this.subType;tp.hasClass(r)&&(r+="Series"),S(t,e.getTheme().get(this.subType)),S(t,this.getDefaultOption()),wr(t,"label",["show"]),this.fillDataTextStyle(t.data),n&&Kc(t,i,n)},e.prototype.mergeOption=function(t,e){t=S(this.option,t,!0),this.fillDataTextStyle(t.data);var n=qc(this);n&&Kc(this.option,t,n);var i=Lf(this).sourceManager;i.dirty(),i.prepareSource();var r=this.getInitialData(t,e);Bf(r,this),this.dataTask.dirty(),this.dataTask.context.data=r,Lf(this).dataBeforeProcessed=r,Rf(this),this._initSelectedMapFromData(r)},e.prototype.fillDataTextStyle=function(t){if(t&&!Z(t))for(var e=["show"],n=0;nthis.getShallow("animationThreshold")&&(t=!1),!!t},e.prototype.restoreData=function(){this.dataTask.dirty()},e.prototype.getColorFromPalette=function(t,e,n){var i=this.ecModel,r=Dp.prototype.getColorFromPalette.call(this,t,e,n);return r||(r=i.getColorFromPalette(t,e,n)),r},e.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},e.prototype.getProgressive=function(){return this.get("progressive")},e.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},e.prototype.select=function(t,e){this._innerSelect(this.getData(e),t)},e.prototype.unselect=function(t,e){var n=this.option.selectedMap;if(n)for(var i=this.getData(e),r=0;r=0&&n.push(r)}return n},e.prototype.isSelected=function(t,e){var n=this.option.selectedMap;return n&&n[Pf(this.getData(e),t)]||!1},e.prototype.isUniversalTransitionEnabled=function(){if(this.__universalTransitionEnabled)return!0;var t=this.option.universalTransition;return!!t&&(!0===t||t&&t.enabled)},e.prototype._innerSelect=function(t,e){var n,i,r=this.option.selectedMode,o=e.length;if(r&&o)if("multiple"===r)for(var a=this.option.selectedMap||(this.option.selectedMap={}),s=0;s0&&this._innerSelect(t,e)}},e.registerClass=function(t){return tp.registerClass(t)},e.protoInitialize=function(){var t=e.prototype;t.type="series.__base__",t.seriesIndex=0,t.ignoreStyleOnData=!1,t.hasSymbolVisual=!1,t.defaultSymbol="circle",t.visualStyleAccessPath="itemStyle",t.visualDrawType="fill"}(),e}(tp);function Rf(t){var e=t.name;kr(t)||(t.name=function(t){var e=t.getRawData(),n=e.mapDimensionsAll("seriesName"),i=[];return P(n,(function(t){var n=e.getDimensionInfo(t);n.displayName&&i.push(n.displayName)})),i.join(" ")}(t)||e)}function Nf(t){return t.model.getRawData().count()}function zf(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),Ef}function Ef(t,e){e.outputData&&t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function Bf(t,e){P(ct(t.CHANGABLE_METHODS,t.DOWNSAMPLE_METHODS),(function(n){t.wrapMethod(n,V(Vf,e))}))}function Vf(t,e){var n=Gf(t);return n&&n.setOutputEnd((e||this).count()),e}function Gf(t){var e=(t.ecModel||{}).scheduler,n=e&&e.getPipeline(t.uid);if(n){var i=n.currentTask;if(i){var r=i.agentStubMap;r&&(i=r.get(t.uid))}return i}}k(Of,Nd),k(Of,Dp),jr(Of,tp);var Ff=function(){function t(){this.group=new Bi,this.uid=Uh("viewComponent")}return t.prototype.init=function(t,e){},t.prototype.render=function(t,e,n,i){},t.prototype.dispose=function(t,e){},t.prototype.updateView=function(t,e,n,i){},t.prototype.updateLayout=function(t,e,n,i){},t.prototype.updateVisual=function(t,e,n,i){},t.prototype.blurSeries=function(t,e){},t}();function Hf(){var t=Or();return function(e){var n=t(e),i=e.pipelineContext,r=!!n.large,o=!!n.progressiveRender,a=n.large=!(!i||!i.large),s=n.progressiveRender=!(!i||!i.progressiveRender);return!(r===a&&o===s)&&"reset"}}Yr(Ff),Jr(Ff);var Wf=Or(),Uf=Hf(),Xf=function(){function t(){this.group=new Bi,this.uid=Uh("viewChart"),this.renderTask=Ed({plan:jf,reset:qf}),this.renderTask.context={view:this}}return t.prototype.init=function(t,e){},t.prototype.render=function(t,e,n,i){},t.prototype.highlight=function(t,e,n,i){Zf(t.getData(),i,"emphasis")},t.prototype.downplay=function(t,e,n,i){Zf(t.getData(),i,"normal")},t.prototype.remove=function(t,e){this.group.removeAll()},t.prototype.dispose=function(t,e){},t.prototype.updateView=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.updateLayout=function(t,e,n,i){this.render(t,e,n,i)},t.prototype.updateVisual=function(t,e,n,i){this.render(t,e,n,i)},t.markUpdateMethod=function(t,e){Wf(t).updateMethod=e},t.protoInitialize=void(t.prototype.type="chart"),t}();function Yf(t,e,n){t&&("emphasis"===e?Js:Qs)(t,n)}function Zf(t,e,n){var i=Pr(t,e),r=e&&null!=e.highlightKey?function(t){var e=Is[t];return null==e&&Ms<=32&&(e=Is[t]=Ms++),e}(e.highlightKey):null;null!=i?P(br(i),(function(e){Yf(t.getItemGraphicEl(e),n,r)})):t.eachItemGraphicEl((function(t){Yf(t,n,r)}))}function jf(t){return Uf(t.model)}function qf(t){var e=t.model,n=t.ecModel,i=t.api,r=t.payload,o=e.pipelineContext.progressiveRender,a=t.view,s=r&&Wf(r).updateMethod,l=o?"incrementalPrepareRender":s&&a[s]?s:"render";return"render"!==l&&a[l](e,n,i,r),Kf[l]}Yr(Xf),Jr(Xf);var Kf={incrementalPrepareRender:{progress:function(t,e){e.view.incrementalRender(t,e.model,e.ecModel,e.api,e.payload)}},render:{forceFirstProgress:!0,progress:function(t,e){e.view.render(e.model,e.ecModel,e.api,e.payload)}}},$f="\0__throttleOriginMethod",Jf="\0__throttleRate",Qf="\0__throttleType";function tg(t,e,n){var i,r,o,a,s,l=0,u=0,h=null;function c(){u=(new Date).getTime(),h=null,t.apply(o,a||[])}e=e||0;var p=function(){for(var t=[],p=0;p=0?c():h=setTimeout(c,-r),l=i};return p.clear=function(){h&&(clearTimeout(h),h=null)},p.debounceNextCall=function(t){s=t},p}function eg(t,e,n,i){var r=t[e];if(r){var o=r[$f]||r,a=r[Qf];if(r[Jf]!==n||a!==i){if(null==n||!i)return t[e]=o;(r=t[e]=tg(o,n,"debounce"===i))[$f]=o,r[Qf]=i,r[Jf]=n}return r}}var ng=Or(),ig={itemStyle:Qr(Vh,!0),lineStyle:Qr(zh,!0)},rg={lineStyle:"stroke",itemStyle:"fill"};function og(t,e){var n=t.visualStyleMapper||ig[e];return n||(console.warn("Unkown style type '"+e+"'."),ig.itemStyle)}function ag(t,e){var n=t.visualDrawType||rg[e];return n||(console.warn("Unkown style type '"+e+"'."),"fill")}var sg={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=t.getModel(i),o=og(t,i)(r),a=r.getShallow("decal");a&&(n.setVisual("decal",a),a.dirty=!0);var s=ag(t,i),l=o[s],u=F(l)?l:null,h="auto"===o.fill||"auto"===o.stroke;if(!o[s]||u||h){var c=t.getColorFromPalette(t.name,null,e.getSeriesCount());o[s]||(o[s]=c,n.setVisual("colorFromPalette",!0)),o.fill="auto"===o.fill||"function"==typeof o.fill?c:o.fill,o.stroke="auto"===o.stroke||"function"==typeof o.stroke?c:o.stroke}if(n.setVisual("style",o),n.setVisual("drawType",s),!e.isSeriesFiltered(t)&&u)return n.setVisual("colorFromPalette",!1),{dataEach:function(e,n){var i=t.getDataParams(n),r=I({},o);r[s]=u(i),e.setItemVisual(n,"style",r)}}}},lg=new Hh,ug={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){if(!t.ignoreStyleOnData&&!e.isSeriesFiltered(t)){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=og(t,i),o=n.getVisual("drawType");return{dataEach:n.hasItemOption?function(t,e){var n=t.getRawDataItem(e);if(n&&n[i]){lg.option=n[i];var a=r(lg);I(t.ensureUniqueItemVisual(e,"style"),a),lg.option.decal&&(t.setItemVisual(e,"decal",lg.option.decal),lg.option.decal.dirty=!0),o in a&&t.setItemVisual(e,"colorFromPalette",!1)}}:null}}}},hg={performRawSeries:!0,overallReset:function(t){var e=ht();t.eachSeries((function(t){var n=t.getColorBy();if(!t.isColorBySeries()){var i=t.type+"-"+n,r=e.get(i);r||(r={},e.set(i,r)),ng(t).scope=r}})),t.eachSeries((function(e){if(!e.isColorBySeries()&&!t.isSeriesFiltered(e)){var n=e.getRawData(),i={},r=e.getData(),o=ng(e).scope,a=e.visualStyleAccessPath||"itemStyle",s=ag(e,a);r.each((function(t){var e=r.getRawIndex(t);i[e]=t})),n.each((function(t){var a=i[t];if(r.getItemVisual(a,"colorFromPalette")){var l=r.ensureUniqueItemVisual(a,"style"),u=n.getName(t)||t+"",h=n.count();l[s]=e.getColorFromPalette(u,o,h)}}))}}))}},cg=Math.PI;var pg=function(){function t(t,e,n,i){this._stageTaskMap=ht(),this.ecInstance=t,this.api=e,n=this._dataProcessorHandlers=n.slice(),i=this._visualHandlers=i.slice(),this._allHandlers=n.concat(i)}return t.prototype.restoreData=function(t,e){t.restoreData(e),this._stageTaskMap.each((function(t){var e=t.overallTask;e&&e.dirty()}))},t.prototype.getPerformArgs=function(t,e){if(t.__pipeline){var n=this._pipelineMap.get(t.__pipeline.id),i=n.context,r=!e&&n.progressiveEnabled&&(!i||i.progressiveRender)&&t.__idxInPipeline>n.blockIndex?n.step:null,o=i&&i.modDataCount;return{step:r,modBy:null!=o?Math.ceil(o/r):null,modDataCount:o}}},t.prototype.getPipeline=function(t){return this._pipelineMap.get(t)},t.prototype.updateStreamModes=function(t,e){var n=this._pipelineMap.get(t.uid),i=t.getData().count(),r=n.progressiveEnabled&&e.incrementalPrepareRender&&i>=n.threshold,o=t.get("large")&&i>=t.get("largeThreshold"),a="mod"===t.get("progressiveChunkMode")?i:null;t.pipelineContext=n.context={progressiveRender:r,modDataCount:a,large:o}},t.prototype.restorePipelines=function(t){var e=this,n=e._pipelineMap=ht();t.eachSeries((function(t){var i=t.getProgressive(),r=t.uid;n.set(r,{id:r,head:null,tail:null,threshold:t.getProgressiveThreshold(),progressiveEnabled:i&&!(t.preventIncremental&&t.preventIncremental()),blockIndex:-1,step:Math.round(i||700),count:0}),e._pipe(t,t.dataTask)}))},t.prototype.prepareStageTasks=function(){var t=this._stageTaskMap,e=this.api.getModel(),n=this.api;P(this._allHandlers,(function(i){var r=t.get(i.uid)||t.set(i.uid,{}),o="";rt(!(i.reset&&i.overallReset),o),i.reset&&this._createSeriesStageTask(i,r,e,n),i.overallReset&&this._createOverallStageTask(i,r,e,n)}),this)},t.prototype.prepareView=function(t,e,n,i){var r=t.renderTask,o=r.context;o.model=e,o.ecModel=n,o.api=i,r.__block=!t.incrementalPrepareRender,this._pipe(e,r)},t.prototype.performDataProcessorTasks=function(t,e){this._performStageTasks(this._dataProcessorHandlers,t,e,{block:!0})},t.prototype.performVisualTasks=function(t,e,n){this._performStageTasks(this._visualHandlers,t,e,n)},t.prototype._performStageTasks=function(t,e,n,i){i=i||{};var r=!1,o=this;function a(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}P(t,(function(t,s){if(!i.visualType||i.visualType===t.visualType){var l=o._stageTaskMap.get(t.uid),u=l.seriesTaskMap,h=l.overallTask;if(h){var c,p=h.agentStubMap;p.each((function(t){a(i,t)&&(t.dirty(),c=!0)})),c&&h.dirty(),o.updatePayload(h,n);var d=o.getPerformArgs(h,i.block);p.each((function(t){t.perform(d)})),h.perform(d)&&(r=!0)}else u&&u.each((function(s,l){a(i,s)&&s.dirty();var u=o.getPerformArgs(s,i.block);u.skip=!t.performRawSeries&&e.isSeriesFiltered(s.context.model),o.updatePayload(s,n),s.perform(u)&&(r=!0)}))}})),this.unfinished=r||this.unfinished},t.prototype.performSeriesTasks=function(t){var e;t.eachSeries((function(t){e=t.dataTask.perform()||e})),this.unfinished=e||this.unfinished},t.prototype.plan=function(){this._pipelineMap.each((function(t){var e=t.tail;do{if(e.__block){t.blockIndex=e.__idxInPipeline;break}e=e.getUpstream()}while(e)}))},t.prototype.updatePayload=function(t,e){"remain"!==e&&(t.context.payload=e)},t.prototype._createSeriesStageTask=function(t,e,n,i){var r=this,o=e.seriesTaskMap,a=e.seriesTaskMap=ht(),s=t.seriesType,l=t.getTargetSeries;function u(e){var s=e.uid,l=a.set(s,o&&o.get(s)||Ed({plan:vg,reset:mg,count:bg}));l.context={model:e,ecModel:n,api:i,useClearVisual:t.isVisual&&!t.isLayout,plan:t.plan,reset:t.reset,scheduler:r},r._pipe(e,l)}t.createOnAllSeries?n.eachRawSeries(u):s?n.eachRawSeriesByType(s,u):l&&l(n,i).each(u)},t.prototype._createOverallStageTask=function(t,e,n,i){var r=this,o=e.overallTask=e.overallTask||Ed({reset:dg});o.context={ecModel:n,api:i,overallReset:t.overallReset,scheduler:r};var a=o.agentStubMap,s=o.agentStubMap=ht(),l=t.seriesType,u=t.getTargetSeries,h=!0,c=!1,p="";function d(t){var e=t.uid,n=s.set(e,a&&a.get(e)||(c=!0,Ed({reset:fg,onDirty:yg})));n.context={model:t,overallProgress:h},n.agent=o,n.__block=h,r._pipe(t,n)}rt(!t.createOnAllSeries,p),l?n.eachRawSeriesByType(l,d):u?u(n,i).each(d):(h=!1,P(n.getSeries(),d)),c&&o.dirty()},t.prototype._pipe=function(t,e){var n=t.uid,i=this._pipelineMap.get(n);!i.head&&(i.head=e),i.tail&&i.tail.pipe(e),i.tail=e,e.__idxInPipeline=i.count++,e.__pipeline=i},t.wrapStageHandler=function(t,e){return F(t)&&(t={overallReset:t,seriesType:wg(t)}),t.uid=Uh("stageHandler"),e&&(t.visualType=e),t},t}();function dg(t){t.overallReset(t.ecModel,t.api,t.payload)}function fg(t){return t.overallProgress&&gg}function gg(){this.agent.dirty(),this.getDownstream().dirty()}function yg(){this.agent&&this.agent.dirty()}function vg(t){return t.plan?t.plan(t.model,t.ecModel,t.api,t.payload):null}function mg(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=br(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?O(e,(function(t,e){return xg(e)})):_g}var _g=xg(0);function xg(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var o=e.start;o0&&h===r.length-u.length){var c=r.slice(0,h);"data"!==c&&(e.mainType=c,e[u.toLowerCase()]=t,s=!0)}}a.hasOwnProperty(r)&&(n[r]=t,s=!0),s||(i[r]=t)}))}return{cptQuery:e,dataQuery:n,otherQuery:i}},t.prototype.filter=function(t,e){var n=this.eventInfo;if(!n)return!0;var i=n.targetEl,r=n.packedEvent,o=n.model,a=n.view;if(!o||!a)return!0;var s=e.cptQuery,l=e.dataQuery;return u(s,o,"mainType")&&u(s,o,"subType")&&u(s,o,"index","componentIndex")&&u(s,o,"name")&&u(s,o,"id")&&u(l,r,"name")&&u(l,r,"dataIndex")&&u(l,r,"dataType")&&(!a.filterForExposedEvent||a.filterForExposedEvent(t,e.otherQuery,i,r));function u(t,e,n,i){return null==t[n]||e[i||n]===t[n]}},t.prototype.afterTrigger=function(){this.eventInfo=null},t}(),Ng={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData();if(t.legendIcon&&n.setVisual("legendIcon",t.legendIcon),t.hasSymbolVisual){var i=t.get("symbol"),r=t.get("symbolSize"),o=t.get("symbolKeepAspect"),a=t.get("symbolRotate"),s=t.get("symbolOffset"),l=F(i),u=F(r),h=F(a),c=F(s),p=l||u||h||c,d=!l&&i?i:t.defaultSymbol,f=u?null:r,g=h?null:a,y=c?null:s;if(n.setVisual({legendIcon:t.legendIcon||d,symbol:d,symbolSize:f,symbolKeepAspect:o,symbolRotate:g,symbolOffset:y}),!e.isSeriesFiltered(t))return{dataEach:p?function(e,n){var o=t.getRawValue(n),p=t.getDataParams(n);l&&e.setItemVisual(n,"symbol",i(o,p)),u&&e.setItemVisual(n,"symbolSize",r(o,p)),h&&e.setItemVisual(n,"symbolRotate",a(o,p)),c&&e.setItemVisual(n,"symbolOffset",s(o,p))}:null}}}};function zg(t,e,n){switch(n){case"color":return t.getItemVisual(e,"style")[t.getVisual("drawType")];case"opacity":return t.getItemVisual(e,"style").opacity;case"symbol":case"symbolSize":case"liftZ":return t.getItemVisual(e,n);default:0}}function Eg(t,e){switch(e){case"color":return t.getVisual("style")[t.getVisual("drawType")];case"opacity":return t.getVisual("style").opacity;case"symbol":case"symbolSize":case"liftZ":return t.getVisual(e);default:0}}function Bg(t,e,n,i){switch(n){case"color":t.ensureUniqueItemVisual(e,"style")[t.getVisual("drawType")]=i,t.setItemVisual(e,"colorFromPalette",!1);break;case"opacity":t.ensureUniqueItemVisual(e,"style").opacity=i;break;case"symbol":case"symbolSize":case"liftZ":t.setItemVisual(e,n,i);break;default:0}}function Vg(t,e){function n(e,n){var i=[];return e.eachComponent({mainType:"series",subType:t,query:n},(function(t){i.push(t.seriesIndex)})),i}P([[t+"ToggleSelect","toggleSelect"],[t+"Select","select"],[t+"UnSelect","unselect"]],(function(t){e(t[0],(function(e,i,r){e=I({},e),r.dispatchAction(I(e,{type:t[1],seriesIndex:n(i,e)}))}))}))}function Gg(t,e,n,i,r){var o=t+e;n.isSilent(o)||i.eachComponent({mainType:"series",subType:"pie"},(function(t){for(var e=t.seriesIndex,i=r.selected,a=0;a0?(e=e||1,"dashed"===t?[4*e,2*e]:"dotted"===t?[e]:U(t)?[t]:G(t)?t:null):null}var oy=new Pa(!0);function ay(t){var e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))}function sy(t){return"string"==typeof t&&"none"!==t}function ly(t){var e=t.fill;return null!=e&&"none"!==e}function uy(t,e){if(null!=e.fillOpacity&&1!==e.fillOpacity){var n=t.globalAlpha;t.globalAlpha=e.fillOpacity*e.opacity,t.fill(),t.globalAlpha=n}else t.fill()}function hy(t,e){if(null!=e.strokeOpacity&&1!==e.strokeOpacity){var n=t.globalAlpha;t.globalAlpha=e.strokeOpacity*e.opacity,t.stroke(),t.globalAlpha=n}else t.stroke()}function cy(t,e,n){var i=ro(e.image,e.__image,n);if(ao(i)){var r=t.createPattern(i,e.repeat||"repeat");if("function"==typeof DOMMatrix&&r.setTransform){var o=new DOMMatrix;o.rotateSelf(0,0,(e.rotation||0)/Math.PI*180),o.scaleSelf(e.scaleX||1,e.scaleY||1),o.translateSelf(e.x||0,e.y||0),r.setTransform(o)}return r}}var py=["shadowBlur","shadowOffsetX","shadowOffsetY"],dy=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function fy(t,e,n,i,r){var o=!1;if(!i&&e===(n=n||{}))return!1;if(i||e.opacity!==n.opacity){o||(vy(t,r),o=!0);var a=Math.max(Math.min(e.opacity,1),0);t.globalAlpha=isNaN(a)?bo.opacity:a}(i||e.blend!==n.blend)&&(o||(vy(t,r),o=!0),t.globalCompositeOperation=e.blend||bo.blend);for(var s=0;s0&&ry(n.lineDash,n.lineWidth),w=n.lineDashOffset,S=!!t.setLineDash,M=e.getGlobalScale();if(u.setScale(M[0],M[1],e.segmentIgnoreThreshold),b){var I=n.strokeNoScale&&e.getLineScale?e.getLineScale():1;I&&1!==I&&(b=O(b,(function(t){return t/I})),w/=I)}var T=!0;(l||4&e.__dirty||b&&!S&&r)&&(u.setDPR(t.dpr),s?u.setContext(null):(u.setContext(t),T=!1),u.reset(),b&&!S&&(u.setLineDash(b),u.setLineDashOffset(w)),e.buildPath(u,e.shape,i),u.toStatic(),e.pathUpdated()),T&&u.rebuildPath(t,s?a:1),b&&S&&(t.setLineDash(b),t.lineDashOffset=w),i||(n.strokeFirst?(r&&hy(t,n),o&&uy(t,n)):(o&&uy(t,n),r&&hy(t,n))),b&&S&&t.setLineDash([])}(t,e,d,p),p&&(n.batchFill=d.fill||"",n.batchStroke=d.stroke||"")):e instanceof ts?(3!==n.lastDrawType&&(l=!0,n.lastDrawType=3),gy(t,e,u,l,n),function(t,e,n){var i=n.text;if(null!=i&&(i+=""),i){t.font=n.font||mi,t.textAlign=n.textAlign,t.textBaseline=n.textBaseline;var r=void 0;if(t.setLineDash){var o=n.lineDash&&n.lineWidth>0&&ry(n.lineDash,n.lineWidth),a=n.lineDashOffset;if(o){var s=n.strokeNoScale&&e.getLineScale?e.getLineScale():1;s&&1!==s&&(o=O(o,(function(t){return t/s})),a/=s),t.setLineDash(o),t.lineDashOffset=a,r=!0}}n.strokeFirst?(ay(n)&&t.strokeText(i,n.x,n.y),ly(n)&&t.fillText(i,n.x,n.y)):(ly(n)&&t.fillText(i,n.x,n.y),ay(n)&&t.strokeText(i,n.x,n.y)),r&&t.setLineDash([])}}(t,e,d)):e instanceof is?(2!==n.lastDrawType&&(l=!0,n.lastDrawType=2),function(t,e,n,i,r){fy(t,my(e,r.inHover),n&&my(n,r.inHover),i,r)}(t,e,u,l,n),function(t,e,n){var i=e.__image=ro(n.image,e.__image,e,e.onload);if(i&&ao(i)){var r=n.x||0,o=n.y||0,a=e.getWidth(),s=e.getHeight(),l=i.width/i.height;if(null==a&&null!=s?a=s*l:null==s&&null!=a?s=a/l:null==a&&null==s&&(a=i.width,s=i.height),n.sWidth&&n.sHeight){var u=n.sx||0,h=n.sy||0;t.drawImage(i,u,h,n.sWidth,n.sHeight,r,o,a,s)}else if(n.sx&&n.sy){var c=a-(u=n.sx),p=s-(h=n.sy);t.drawImage(i,u,h,c,p,r,o,a,s)}else t.drawImage(i,r,o,a,s)}}(t,e,d)):e instanceof Pu&&(4!==n.lastDrawType&&(l=!0,n.lastDrawType=4),function(t,e,n){var i=e.getDisplayables(),r=e.getTemporalDisplayables();t.save();var o,a,s={prevElClipPaths:null,prevEl:null,allClipped:!1,viewWidth:n.viewWidth,viewHeight:n.viewHeight,inHover:n.inHover};for(o=e.getCursor(),a=i.length;o=4&&(l={x:parseFloat(c[0]||0),y:parseFloat(c[1]||0),width:parseFloat(c[2]),height:parseFloat(c[3])})}if(l&&null!=a&&null!=s&&(u=qy(l,{x:0,y:0,width:a,height:s}),!e.ignoreViewBox)){var p=i;(i=new Bi).add(p),p.scaleX=p.scaleY=u.scale,p.x=u.x,p.y=u.y}return e.ignoreRootClip||null==a||null==s||i.setClipPath(new hs({shape:{x:0,y:0,width:a,height:s}})),{root:i,width:a,height:s,viewBoxRect:l,viewBoxTransform:u,named:r}},t.prototype._parseNode=function(t,e,n,i,r,o){var a,s=t.nodeName.toLowerCase(),l=i;if("defs"===s&&(r=!0),"text"===s&&(o=!0),"defs"===s||"switch"===s)a=e;else{if(!r){var u=by[s];if(u&&dt(by,s)){a=u.call(this,t,e);var h=t.getAttribute("name");if(h){var c={name:h,namedFrom:null,svgNodeTagLower:s,el:a};n.push(c),"g"===s&&(l=c)}else i&&n.push({name:i.name,namedFrom:i,svgNodeTagLower:s,el:a});e.add(a)}}var p=Ny[s];if(p&&dt(Ny,s)){var d=p.call(this,t),f=t.getAttribute("id");f&&(this._defs[f]=d)}}if(a&&a.isGroup)for(var g=t.firstChild;g;)1===g.nodeType?this._parseNode(g,a,n,l,r,o):3===g.nodeType&&o&&this._parseText(g,a),g=g.nextSibling},t.prototype._parseText=function(t,e){var n=new ts({style:{text:t.textContent},silent:!0,x:this._textX||0,y:this._textY||0});By(e,n),Gy(t,n,this._defsUsePending,!1,!1),function(t,e){var n=e.__selfStyle;if(n){var i=n.textBaseline,r=i;i&&"auto"!==i?"baseline"===i?r="alphabetic":"before-edge"===i||"text-before-edge"===i?r="top":"after-edge"===i||"text-after-edge"===i?r="bottom":"central"!==i&&"mathematical"!==i||(r="middle"):r="alphabetic",t.style.textBaseline=r}var o=e.__inheritedStyle;if(o){var a=o.textAlign,s=a;a&&("middle"===a&&(s="center"),t.style.textAlign=s)}}(n,e);var i=n.style,r=i.fontSize;r&&r<9&&(i.fontSize=9,n.scaleX*=r/9,n.scaleY*=r/9);var o=(i.fontSize||i.fontFamily)&&[i.fontStyle,i.fontWeight,(i.fontSize||12)+"px",i.fontFamily||"sans-serif"].join(" ");i.font=o;var a=n.getBoundingRect();return this._textX+=a.width,e.add(n),n},t.internalField=void(by={g:function(t,e){var n=new Bi;return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n},rect:function(t,e){var n=new hs;return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n.setShape({x:parseFloat(t.getAttribute("x")||"0"),y:parseFloat(t.getAttribute("y")||"0"),width:parseFloat(t.getAttribute("width")||"0"),height:parseFloat(t.getAttribute("height")||"0")}),n.silent=!0,n},circle:function(t,e){var n=new Fl;return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(t.getAttribute("cx")||"0"),cy:parseFloat(t.getAttribute("cy")||"0"),r:parseFloat(t.getAttribute("r")||"0")}),n.silent=!0,n},line:function(t,e){var n=new gu;return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n.setShape({x1:parseFloat(t.getAttribute("x1")||"0"),y1:parseFloat(t.getAttribute("y1")||"0"),x2:parseFloat(t.getAttribute("x2")||"0"),y2:parseFloat(t.getAttribute("y2")||"0")}),n.silent=!0,n},ellipse:function(t,e){var n=new Wl;return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n.setShape({cx:parseFloat(t.getAttribute("cx")||"0"),cy:parseFloat(t.getAttribute("cy")||"0"),rx:parseFloat(t.getAttribute("rx")||"0"),ry:parseFloat(t.getAttribute("ry")||"0")}),n.silent=!0,n},polygon:function(t,e){var n,i=t.getAttribute("points");i&&(n=Vy(i));var r=new hu({shape:{points:n||[]},silent:!0});return By(e,r),Gy(t,r,this._defsUsePending,!1,!1),r},polyline:function(t,e){var n,i=t.getAttribute("points");i&&(n=Vy(i));var r=new pu({shape:{points:n||[]},silent:!0});return By(e,r),Gy(t,r,this._defsUsePending,!1,!1),r},image:function(t,e){var n=new is;return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n.setStyle({image:t.getAttribute("xlink:href"),x:+t.getAttribute("x"),y:+t.getAttribute("y"),width:+t.getAttribute("width"),height:+t.getAttribute("height")}),n.silent=!0,n},text:function(t,e){var n=t.getAttribute("x")||"0",i=t.getAttribute("y")||"0",r=t.getAttribute("dx")||"0",o=t.getAttribute("dy")||"0";this._textX=parseFloat(n)+parseFloat(r),this._textY=parseFloat(i)+parseFloat(o);var a=new Bi;return By(e,a),Gy(t,a,this._defsUsePending,!1,!0),a},tspan:function(t,e){var n=t.getAttribute("x"),i=t.getAttribute("y");null!=n&&(this._textX=parseFloat(n)),null!=i&&(this._textY=parseFloat(i));var r=t.getAttribute("dx")||"0",o=t.getAttribute("dy")||"0",a=new Bi;return By(e,a),Gy(t,a,this._defsUsePending,!1,!0),this._textX+=parseFloat(r),this._textY+=parseFloat(o),a},path:function(t,e){var n=Bl(t.getAttribute("d")||"");return By(e,n),Gy(t,n,this._defsUsePending,!1,!1),n.silent=!0,n}}),t}(),Ny={lineargradient:function(t){var e=parseInt(t.getAttribute("x1")||"0",10),n=parseInt(t.getAttribute("y1")||"0",10),i=parseInt(t.getAttribute("x2")||"10",10),r=parseInt(t.getAttribute("y2")||"0",10),o=new Mu(e,n,i,r);return zy(t,o),Ey(t,o),o},radialgradient:function(t){var e=parseInt(t.getAttribute("cx")||"0",10),n=parseInt(t.getAttribute("cy")||"0",10),i=parseInt(t.getAttribute("r")||"0",10),r=new Iu(e,n,i);return zy(t,r),Ey(t,r),r}};function zy(t,e){"userSpaceOnUse"===t.getAttribute("gradientUnits")&&(e.global=!0)}function Ey(t,e){for(var n=t.firstChild;n;){if(1===n.nodeType&&"stop"===n.nodeName.toLocaleLowerCase()){var i=n.getAttribute("offset"),r=void 0;r=i&&i.indexOf("%")>0?parseInt(i,10)/100:i?parseFloat(i):0;var o={};jy(n,o,o);var a=o.stopColor||n.getAttribute("stop-color")||"#000000";e.colorStops.push({offset:r,color:a})}n=n.nextSibling}}function By(t,e){t&&t.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),T(e.__inheritedStyle,t.__inheritedStyle))}function Vy(t){for(var e=Uy(t),n=[],i=0;i0;o-=2){var a=i[o],s=i[o-1],l=Uy(a);switch(r=r||[1,0,0,1,0,0],s){case"translate":Un(r,r,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":Yn(r,r,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":Xn(r,r,-parseFloat(l[0])*Yy);break;case"skewX":Wn(r,[1,0,Math.tan(parseFloat(l[0])*Yy),1,0,0],r);break;case"skewY":Wn(r,[1,Math.tan(parseFloat(l[0])*Yy),0,1,0,0],r);break;case"matrix":r[0]=parseFloat(l[0]),r[1]=parseFloat(l[1]),r[2]=parseFloat(l[2]),r[3]=parseFloat(l[3]),r[4]=parseFloat(l[4]),r[5]=parseFloat(l[5])}}e.setLocalTransform(r)}}(t,e),jy(t,a,s),i||function(t,e,n){for(var i=0;i>1^-(1&s),l=l>>1^-(1&l),r=s+=r,o=l+=o,i.push([s/n,l/n])}return i}function ov(t,e){return O(N((t=function(t){if(!t.UTF8Encoding)return t;var e=t,n=e.UTF8Scale;null==n&&(n=1024);for(var i=e.features,r=0;r0})),(function(t){var n=t.properties,i=t.geometry,r=[];if("Polygon"===i.type){var o=i.coordinates;r.push({type:"polygon",exterior:o[0],interiors:o.slice(1)})}"MultiPolygon"===i.type&&P(o=i.coordinates,(function(t){t[0]&&r.push({type:"polygon",exterior:t[0],interiors:t.slice(1)})}));var a=new tv(n[e||"name"],r,n.cp);return a.properties=n,a}))}for(var av=[126,25],sv="南海诸岛",lv=[[[0,3.5],[7,11.2],[15,11.9],[30,7],[42,.7],[52,.7],[56,7.7],[59,.7],[64,.7],[64,0],[5,0],[0,3.5]],[[13,16.1],[19,14.7],[16,21.7],[11,23.1],[13,16.1]],[[12,32.2],[14,38.5],[15,38.5],[13,32.2],[12,32.2]],[[16,47.6],[12,53.2],[13,53.2],[18,47.6],[16,47.6]],[[6,64.4],[8,70],[9,70],[8,64.4],[6,64.4]],[[23,82.6],[29,79.8],[30,79.8],[25,82.6],[23,82.6]],[[37,70.7],[43,62.3],[44,62.3],[39,70.7],[37,70.7]],[[48,51.1],[51,45.5],[53,45.5],[50,51.1],[48,51.1]],[[51,35],[51,28.7],[53,28.7],[53,35],[51,35]],[[52,22.4],[55,17.5],[56,17.5],[53,22.4],[52,22.4]],[[58,12.6],[62,7],[63,7],[60,12.6],[58,12.6]],[[0,3.5],[0,93.1],[64,93.1],[64,0],[63,0],[63,92.4],[1,92.4],[1,3.5],[0,3.5]]],uv=0;uv0&&t.unfinished);t.unfinished||this._zr.flush()}}},e.prototype.getDom=function(){return this._dom},e.prototype.getId=function(){return this.id},e.prototype.getZr=function(){return this._zr},e.prototype.setOption=function(t,e,n){if(this._disposed)em(this.id);else{var i,r,o;if(X(e)&&(n=e.lazyUpdate,i=e.silent,r=e.replaceMerge,o=e.transition,e=e.notMerge),this.__flagInMainProcess=!0,!this._model||e){var a=new Gp(this._api),s=this._theme,l=this._model=new Lp;l.scheduler=this._scheduler,l.init(null,null,null,s,this._locale,a)}this._model.setOption(t,{replaceMerge:r},om);var u={seriesTransition:o,optionChanged:!0};n?(this.__pendingUpdate={silent:i,updateParams:u},this.__flagInMainProcess=!1,this.getZr().wakeUp()):(Lv(this),Rv.update.call(this,null,u),this._zr.flush(),this.__pendingUpdate=null,this.__flagInMainProcess=!1,Bv.call(this,i),Vv.call(this,i))}},e.prototype.setTheme=function(){console.error("ECharts#setTheme() is DEPRECATED in ECharts 3.0")},e.prototype.getModel=function(){return this._model},e.prototype.getOption=function(){return this._model&&this._model.getOption()},e.prototype.getWidth=function(){return this._zr.getWidth()},e.prototype.getHeight=function(){return this._zr.getHeight()},e.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||wv&&window.devicePixelRatio||1},e.prototype.getRenderedCanvas=function(t){if(a.canvasSupported)return t=t||{},this._zr.painter.getRenderedCanvas({backgroundColor:t.backgroundColor||this._model.get("backgroundColor"),pixelRatio:t.pixelRatio||this.getDevicePixelRatio()})},e.prototype.getSvgDataURL=function(){if(a.svgSupported){var t=this._zr;return P(t.storage.getDisplayList(),(function(t){t.stopAnimation(null,!0)})),t.painter.toDataURL()}},e.prototype.getDataURL=function(t){if(!this._disposed){var e=(t=t||{}).excludeComponents,n=this._model,i=[],r=this;P(e,(function(t){n.eachComponent({mainType:t},(function(t){var e=r._componentsMap[t.__viewId];e.group.ignore||(i.push(e),e.group.ignore=!0)}))}));var o="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.getRenderedCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return P(i,(function(t){t.group.ignore=!1})),o}em(this.id)},e.prototype.getConnectedDataURL=function(t){if(this._disposed)em(this.id);else if(a.canvasSupported){var e="svg"===t.type,n=this.group,i=Math.min,r=Math.max,o=1/0;if(hm[n]){var s=o,l=o,u=-1/0,h=-1/0,c=[],p=t&&t.pixelRatio||this.getDevicePixelRatio();P(um,(function(o,a){if(o.group===n){var p=e?o.getZr().painter.getSvgDom().innerHTML:o.getRenderedCanvas(w(t)),d=o.getDom().getBoundingClientRect();s=i(d.left,s),l=i(d.top,l),u=r(d.right,u),h=r(d.bottom,h),c.push({dom:p,left:d.left,top:d.top})}}));var d=(u*=p)-(s*=p),f=(h*=p)-(l*=p),g=C(),y=Wi(g,{renderer:e?"svg":"canvas"});if(y.resize({width:d,height:f}),e){var v="";return P(c,(function(t){var e=t.left-s,n=t.top-l;v+=''+t.dom+""})),y.painter.getSvgRoot().innerHTML=v,t.connectedBackgroundColor&&y.painter.setBackgroundColor(t.connectedBackgroundColor),y.refreshImmediately(),y.painter.toDataURL()}return t.connectedBackgroundColor&&y.add(new hs({shape:{x:0,y:0,width:d,height:f},style:{fill:t.connectedBackgroundColor}})),P(c,(function(t){var e=new is({style:{x:t.left*p-s,y:t.top*p-l,image:t.dom}});y.add(e)})),y.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}},e.prototype.convertToPixel=function(t,e){return Nv(this,"convertToPixel",t,e)},e.prototype.convertFromPixel=function(t,e){return Nv(this,"convertFromPixel",t,e)},e.prototype.containPixel=function(t,e){var n;if(!this._disposed)return P(Nr(this._model,t),(function(t,i){i.indexOf("Models")>=0&&P(t,(function(t){var r=t.coordinateSystem;if(r&&r.containPoint)n=n||!!r.containPoint(e);else if("seriesModels"===i){var o=this._chartsMap[t.__viewId];o&&o.containPoint&&(n=n||o.containPoint(e,t))}else 0}),this)}),this),!!n;em(this.id)},e.prototype.getVisual=function(t,e){var n=Nr(this._model,t,{defaultMainType:"series"}),i=n.seriesModel;var r=i.getData(),o=n.hasOwnProperty("dataIndexInside")?n.dataIndexInside:n.hasOwnProperty("dataIndex")?r.indexOfRawIndex(n.dataIndex):null;return null!=o?zg(r,o,e):Eg(r,e)},e.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},e.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},e.prototype._initEvents=function(){var t,e,n,i=this;P(tm,(function(t){var e=function(e){var n,r=i.getModel(),o=e.target,a="globalout"===t;if(a?n={}:o&&Fg(o,(function(t){var e=ws(t);if(e&&null!=e.dataIndex){var i=e.dataModel||r.getSeriesByIndex(e.seriesIndex);return n=i&&i.getDataParams(e.dataIndex,e.dataType)||{},!0}if(e.eventData)return n=I({},e.eventData),!0}),!0),n){var s=n.componentType,l=n.componentIndex;"markLine"!==s&&"markPoint"!==s&&"markArea"!==s||(s="series",l=n.seriesIndex);var u=s&&null!=l&&r.getComponent(s,l),h=u&&i["series"===u.mainType?"_chartsMap":"_componentsMap"][u.__viewId];0,n.event=e,n.type=t,i._$eventProcessor.eventInfo={targetEl:o,packedEvent:n,model:u,view:h},i.trigger(t,n)}};e.zrEventfulCallAtLast=!0,i._zr.on(t,e,i)})),P(im,(function(t,e){i._messageCenter.on(e,(function(t){this.trigger(e,t)}),i)})),P(["selectchanged"],(function(t){i._messageCenter.on(t,(function(e){this.trigger(t,e)}),i)})),t=this._messageCenter,e=this,n=this._api,t.on("selectchanged",(function(t){var i=n.getModel();t.isFromClick?(Gg("map","selectchanged",e,i,t),Gg("pie","selectchanged",e,i,t)):"select"===t.fromAction?(Gg("map","selected",e,i,t),Gg("pie","selected",e,i,t)):"unselect"===t.fromAction&&(Gg("map","unselected",e,i,t),Gg("pie","unselected",e,i,t))}))},e.prototype.isDisposed=function(){return this._disposed},e.prototype.clear=function(){this._disposed?em(this.id):this.setOption({series:[]},!0)},e.prototype.dispose=function(){if(this._disposed)em(this.id);else{this._disposed=!0,Gr(this.getDom(),dm,"");var t=this,e=t._api,n=t._model;P(t._componentsViews,(function(t){t.dispose(n,e)})),P(t._chartsViews,(function(t){t.dispose(n,e)})),t._zr.dispose(),t._dom=t._model=t._chartsMap=t._componentsMap=t._chartsViews=t._componentsViews=t._scheduler=t._api=t._zr=t._throttledZrFlush=t._theme=t._coordSysMgr=t._messageCenter=null,delete um[t.id]}},e.prototype.resize=function(t){if(this._disposed)em(this.id);else{this._zr.resize(t);var e=this._model;if(this._loadingFX&&this._loadingFX.resize(),e){var n=e.resetOption("media"),i=t&&t.silent;this.__pendingUpdate&&(null==i&&(i=this.__pendingUpdate.silent),n=!0,this.__pendingUpdate=null),this.__flagInMainProcess=!0,n&&Lv(this),Rv.update.call(this,{type:"resize",animation:I({duration:0},t&&t.animation)}),this.__flagInMainProcess=!1,Bv.call(this,i),Vv.call(this,i)}}},e.prototype.showLoading=function(t,e){if(this._disposed)em(this.id);else if(X(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),lm[t]){var n=lm[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},e.prototype.hideLoading=function(){this._disposed?em(this.id):(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},e.prototype.makeActionFromEvent=function(t){var e=I({},t);return e.type=im[t.type],e},e.prototype.dispatchAction=function(t,e){if(this._disposed)em(this.id);else if(X(e)||(e={silent:!!e}),nm[t.type]&&this._model)if(this.__flagInMainProcess)this._pendingActions.push(t);else{var n=e.silent;Ev.call(this,t,n);var i=e.flush;i?this._zr.flush():!1!==i&&a.browser.weChat&&this._throttledZrFlush(),Bv.call(this,n),Vv.call(this,n)}},e.prototype.updateLabelLayout=function(){bv.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},e.prototype.appendData=function(t){if(this._disposed)em(this.id);else{var e=t.seriesIndex,n=this.getModel().getSeriesByIndex(e);0,n.appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp()}},e.internalField=function(){function t(t){for(var e=[],n=t.currentStates,i=0;i0?{duration:o,delay:i.get("delay"),easing:i.get("easing")}:null;n.group.traverse((function(e){if(e.states&&e.states.emphasis){if(Bu(e))return;if(e instanceof Ja&&function(t){var e=Ts(t);e.normalFill=t.style.fill,e.normalStroke=t.style.stroke;var n=t.states.select||{};e.selectFill=n.style&&n.style.fill||null,e.selectStroke=n.style&&n.style.stroke||null}(e),e.__dirty){var n=e.prevStates;n&&e.useStates(n)}if(r){e.stateTransition=a;var i=e.getTextContent(),o=e.getTextGuideLine();i&&(i.stateTransition=a),o&&(o.stateTransition=a)}e.__dirty&&t(e)}}))}Lv=function(t){var e=t._scheduler;e.restorePipelines(t._model),e.prepareStageTasks(),Pv(t,!0),Pv(t,!1),e.plan()},Pv=function(t,e){for(var n=t._model,i=t._scheduler,r=e?t._componentsViews:t._chartsViews,o=e?t._componentsMap:t._chartsMap,a=t._zr,s=t._api,l=0;le.get("hoverLayerThreshold")&&!a.node&&!a.worker&&e.eachSeries((function(e){if(!e.preventUsingHoverLayer){var n=t._chartsMap[e.__viewId];n.__alive&&n.group.traverse((function(t){t.states.emphasis&&(t.states.emphasis.hoverLayer=!0)}))}}))}(t,n),bv.trigger("series:afterupdate",n,i,l)},jv=function(t){t.__needsUpdateStatus=!0,t.getZr().wakeUp()},qv=function(e){e.__needsUpdateStatus&&(e.getZr().storage.traverse((function(e){Bu(e)||t(e)})),e.__needsUpdateStatus=!1)},Yv=function(t){return new(function(e){function i(){return null!==e&&e.apply(this,arguments)||this}return n(i,e),i.prototype.getCoordinateSystems=function(){return t._coordSysMgr.getCoordinateSystems()},i.prototype.getComponentByElement=function(e){for(;e;){var n=e.__ecComponentInfo;if(null!=n)return t._model.getComponent(n.mainType,n.index);e=e.parent}},i.prototype.enterEmphasis=function(e,n){Js(e,n),jv(t)},i.prototype.leaveEmphasis=function(e,n){Qs(e,n),jv(t)},i.prototype.enterBlur=function(e){tl(e),jv(t)},i.prototype.leaveBlur=function(e){el(e),jv(t)},i.prototype.enterSelect=function(e){nl(e),jv(t)},i.prototype.leaveSelect=function(e){il(e),jv(t)},i.prototype.getModel=function(){return t.getModel()},i.prototype.getViewOfComponentModel=function(e){return t.getViewOfComponentModel(e)},i.prototype.getViewOfSeriesModel=function(e){return t.getViewOfSeriesModel(e)},i}(zp))(t)},Zv=function(t){function e(t,e){for(var n=0;n=0)){Cm.push(n);var o=pg.wrapStageHandler(n,r);o.__prio=e,o.__raw=n,t.push(o)}}function Am(t,e){lm[t]=e}function km(t,e,n){vv(t,e,n)}var Lm=function(t){var e=(t=w(t)).type,n="";e||mr(n);var i=e.split(":");2!==i.length&&mr(n);var r=!1;"echarts"===i[0]&&(e=i[1],r=!0),t.__isBuiltIn=r,Qd.set(e,t)};Tm(Sv,sg),Tm(Mv,ug),Tm(Mv,hg),Tm(Sv,Ng),Tm(Mv,{createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){if(t.hasSymbolVisual&&!e.isSeriesFiltered(t))return{dataEach:t.getData().hasItemOption?function(t,e){var n=t.getItemModel(e),i=n.getShallow("symbol",!0),r=n.getShallow("symbolSize",!0),o=n.getShallow("symbolRotate",!0),a=n.getShallow("symbolOffset",!0),s=n.getShallow("symbolKeepAspect",!0);null!=i&&t.setItemVisual(e,"symbol",i),null!=r&&t.setItemVisual(e,"symbolSize",r),null!=o&&t.setItemVisual(e,"symbolRotate",o),null!=a&&t.setItemVisual(e,"symbolOffset",a),null!=s&&t.setItemVisual(e,"symbolKeepAspect",s)}:null}}}),Tm(7e3,(function(t,e){t.eachRawSeries((function(n){if(!t.isSeriesFiltered(n)){var i=n.getData();i.hasItemVisual()&&i.each((function(t){var n=i.getItemVisual(t,"decal");n&&(i.ensureUniqueItemVisual(t,"style").decal=Iy(n,e))}));var r=i.getVisual("decal");if(r)i.getVisual("style").decal=Iy(r,e)}}))})),mm(sd),_m(900,(function(t){var e=ht();t.eachSeries((function(t){var n=t.get("stack");if(n){var i=e.get(n)||e.set(n,[]),r=t.getData(),o={stackResultDimension:r.getCalculationInfo("stackResultDimension"),stackedOverDimension:r.getCalculationInfo("stackedOverDimension"),stackedDimension:r.getCalculationInfo("stackedDimension"),stackedByDimension:r.getCalculationInfo("stackedByDimension"),isStackedByIndex:r.getCalculationInfo("isStackedByIndex"),data:r,seriesModel:t};if(!o.stackedDimension||!o.isStackedByIndex&&!o.stackedByDimension)return;i.length&&r.setCalculationInfo("stackedOnSeries",i[i.length-1].seriesModel),i.push(o)}})),e.each(ld)})),Am("default",(function(t,e){T(e=e||{},{text:"loading",textColor:"#000",fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255, 255, 255, 0.8)",showSpinner:!0,color:"#5470c6",spinnerRadius:10,lineWidth:5,zlevel:0});var n=new Bi,i=new hs({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});n.add(i);var r,o=new ds({style:{text:e.text,fill:e.textColor,fontSize:e.fontSize,fontWeight:e.fontWeight,fontStyle:e.fontStyle,fontFamily:e.fontFamily},zlevel:e.zlevel,z:10001}),a=new hs({style:{fill:"none"},textContent:o,textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});return n.add(a),e.showSpinner&&((r=new bu({shape:{startAngle:-cg/2,endAngle:-cg/2+.1,r:e.spinnerRadius},style:{stroke:e.color,lineCap:"round",lineWidth:e.lineWidth},zlevel:e.zlevel,z:10001})).animateShape(!0).when(1e3,{endAngle:3*cg/2}).start("circularInOut"),r.animateShape(!0).when(1e3,{startAngle:3*cg/2}).delay(300).start("circularInOut"),n.add(r)),n.resize=function(){var n=o.getBoundingRect().width,s=e.showSpinner?e.spinnerRadius:0,l=(t.getWidth()-2*s-(e.showSpinner&&n?10:0)-n)/2-(e.showSpinner&&n?0:5+n/2)+(e.showSpinner?0:n/2)+(n?0:s),u=t.getHeight()/2;e.showSpinner&&r.setShape({cx:l,cy:u}),a.setShape({x:l-s,y:u-s,width:2*s,height:2*s}),i.setShape({x:0,y:0,width:t.getWidth(),height:t.getHeight()})},n.resize(),n})),Sm({type:ks,event:ks,update:ks},ft),Sm({type:Ls,event:Ls,update:Ls},ft),Sm({type:Ps,event:Ps,update:Ps},ft),Sm({type:Os,event:Os,update:Os},ft),Sm({type:Rs,event:Rs,update:Rs},ft),vm("light",Dg),vm("dark",Og);var Pm=[],Om={registerPreprocessor:mm,registerProcessor:_m,registerPostInit:xm,registerPostUpdate:bm,registerUpdateLifecycle:wm,registerAction:Sm,registerCoordinateSystem:Mm,registerLayout:Im,registerVisual:Tm,registerTransform:Lm,registerLoading:Am,registerMap:km,PRIORITY:Iv,ComponentModel:tp,ComponentView:Ff,SeriesModel:Of,ChartView:Xf,registerComponentModel:function(t){tp.registerClass(t)},registerComponentView:function(t){Ff.registerClass(t)},registerSeriesModel:function(t){Of.registerClass(t)},registerChartView:function(t){Xf.registerClass(t)},registerSubTypeDefaulter:function(t,e){tp.registerSubTypeDefaulter(t,e)},registerPainter:function(t,e){Ui(t,e)}};function Rm(t){G(t)?P(t,(function(t){Rm(t)})):D(Pm,t)>=0||(Pm.push(t),F(t)&&(t={install:t}),t.install(Om))}function Nm(t){return null==t?0:t.length||1}function zm(t){return t}var Em=function(){function t(t,e,n,i,r,o){this._old=t,this._new=e,this._oldKeyGetter=n||zm,this._newKeyGetter=i||zm,this.context=r,this._diffModeMultiple="multiple"===o}return t.prototype.add=function(t){return this._add=t,this},t.prototype.update=function(t){return this._update=t,this},t.prototype.updateManyToOne=function(t){return this._updateManyToOne=t,this},t.prototype.updateOneToMany=function(t){return this._updateOneToMany=t,this},t.prototype.updateManyToMany=function(t){return this._updateManyToMany=t,this},t.prototype.remove=function(t){return this._remove=t,this},t.prototype.execute=function(){this[this._diffModeMultiple?"_executeMultiple":"_executeOneToOne"]()},t.prototype._executeOneToOne=function(){var t=this._old,e=this._new,n={},i=new Array(t.length),r=new Array(e.length);this._initIndexMap(t,null,i,"_oldKeyGetter"),this._initIndexMap(e,n,r,"_newKeyGetter");for(var o=0;o1){var u=s.shift();1===s.length&&(n[a]=s[0]),this._update&&this._update(u,o)}else 1===l?(n[a]=null,this._update&&this._update(s,o)):this._remove&&this._remove(o)}this._performRestAdd(r,n)},t.prototype._executeMultiple=function(){var t=this._old,e=this._new,n={},i={},r=[],o=[];this._initIndexMap(t,n,r,"_oldKeyGetter"),this._initIndexMap(e,i,o,"_newKeyGetter");for(var a=0;a1&&1===c)this._updateManyToOne&&this._updateManyToOne(u,l),i[s]=null;else if(1===h&&c>1)this._updateOneToMany&&this._updateOneToMany(u,l),i[s]=null;else if(1===h&&1===c)this._update&&this._update(u,l),i[s]=null;else if(h>1&&c>1)this._updateManyToMany&&this._updateManyToMany(u,l),i[s]=null;else if(h>1)for(var p=0;p1)for(var a=0;a30}var qm,Km,$m,Jm,Qm,t_,e_,n_=X,i_=O,r_="undefined"==typeof Int32Array?Array:Int32Array,o_=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],a_=["_approximateExtent"],s_=function(){function t(t,e){var n;this.type="list",this._dimOmitted=!1,this._nameList=[],this._idList=[],this._visual={},this._layout={},this._itemVisuals=[],this._itemLayouts=[],this._graphicEls=[],this._approximateExtent={},this._calculationInfo={},this.hasItemOption=!1,this.TRANSFERABLE_METHODS=["cloneShallow","downSample","lttbDownSample","map"],this.CHANGABLE_METHODS=["filterSelf","selectRange"],this.DOWNSAMPLE_METHODS=["downSample","lttbDownSample"];var i=!1;Xm(t)?(n=t.dimensions,this._dimOmitted=t.isDimensionOmitted(),this._schema=t):(i=!0,n=t),n=n||["x","y"];for(var r={},o=[],a={},s=!1,l={},u=0;u=e)){var n=this._store.getProvider();this._updateOrdinalMeta();var i=this._nameList,r=this._idList;if(n.getSource().sourceFormat===op&&!n.pure)for(var o=[],a=t;a0},t.prototype.ensureUniqueItemVisual=function(t,e){var n=this._itemVisuals,i=n[t];i||(i=n[t]={});var r=i[e];return null==r&&(G(r=this.getVisual(e))?r=r.slice():n_(r)&&(r=I({},r)),i[e]=r),r},t.prototype.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{};this._itemVisuals[t]=i,n_(e)?I(i,e):i[e]=n},t.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},t.prototype.setLayout=function(t,e){if(n_(t))for(var n in t)t.hasOwnProperty(n)&&this.setLayout(n,t[n]);else this._layout[t]=e},t.prototype.getLayout=function(t){return this._layout[t]},t.prototype.getItemLayout=function(t){return this._itemLayouts[t]},t.prototype.setItemLayout=function(t,e,n){this._itemLayouts[t]=n?I(this._itemLayouts[t]||{},e):e},t.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},t.prototype.setItemGraphicEl=function(t,e){var n=this.hostModel&&this.hostModel.seriesIndex;Ss(n,this.dataType,t,e),this._graphicEls[t]=e},t.prototype.getItemGraphicEl=function(t){return this._graphicEls[t]},t.prototype.eachItemGraphicEl=function(t,e){P(this._graphicEls,(function(n,i){n&&t&&t.call(e,n,i)}))},t.prototype.cloneShallow=function(e){return e||(e=new t(this._schema?this._schema:i_(this.dimensions,this._getDimInfo,this),this.hostModel)),Qm(e,this),e._store=this._store,e},t.prototype.wrapMethod=function(t,e){var n=this[t];"function"==typeof n&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(nt(arguments)))})},t.internalField=(qm=function(t){var e=t._invertedIndicesMap;P(e,(function(n,i){var r=t._dimInfos[i],o=r.ordinalMeta,a=t._store;if(o){n=e[i]=new r_(o.categories.length);for(var s=0;s1&&(s+="__ec__"+u),i[e]=s}})),t}();function l_(t,e){gd(t)||(t=vd(t));var n=(e=e||{}).coordDimensions||[],i=e.dimensionsDefine||t.dimensionsDefine||[],r=ht(),o=[],a=function(t,e,n,i){var r=Math.max(t.dimensionsDetectedCount||1,e.length,n.length,i||0);return P(e,(function(t){var e;X(t)&&(e=t.dimsDef)&&(r=Math.max(r,e.length))})),r}(t,n,i,e.dimensionsCount),s=e.canOmitUnusedDimensions&&jm(a),l=i===t.dimensionsDefine,u=l?Zm(t):Ym(i),h=e.encodeDefine;!h&&e.encodeDefaulter&&(h=e.encodeDefaulter(t,a));for(var c=ht(h),p=new sf(a),d=0;d0&&(i.name=r+(o-1)),o++,e.set(r,o)}}(o),new Um({source:t,dimensions:o,fullDimensionCount:a,dimensionOmitted:s})}function u_(t,e,n){var i=e.data;if(n||i.hasOwnProperty(t)){for(var r=0;i.hasOwnProperty(t+r);)r++;t+=r}return e.set(t,!0),t}var h_=function(t){this.coordSysDims=[],this.axisMap=ht(),this.categoryAxisMap=ht(),this.coordSysName=t};var c_={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis",Er).models[0],o=t.getReferringComponents("yAxis",Er).models[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",o),p_(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),p_(o)&&(i.set("y",o),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis",Er).models[0];e.coordSysDims=["single"],n.set("single",r),p_(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar",Er).models[0],o=r.findAxisModel("radiusAxis"),a=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),p_(o)&&(i.set("radius",o),e.firstCategoryDimIndex=0),p_(a)&&(i.set("angle",a),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},geo:function(t,e,n,i){e.coordSysDims=["lng","lat"]},parallel:function(t,e,n,i){var r=t.ecModel,o=r.getComponent("parallel",t.get("parallelIndex")),a=e.coordSysDims=o.dimensions.slice();P(o.parallelAxisIndex,(function(t,o){var s=r.getComponent("parallelAxis",t),l=a[o];n.set(l,s),p_(s)&&(i.set(l,s),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=o))}))}};function p_(t){return"category"===t.get("type")}function d_(t,e,n){var i,r,o,a=(n=n||{}).byIndex,s=n.stackedCoordDimension;!function(t){return!Xm(t.schema)}(e)?(r=e.schema,i=r.dimensions,o=e.store):i=e;var l,u,h,c,p=!(!t||!t.get("stack"));if(P(i,(function(t,e){H(t)&&(i[e]=t={name:t}),p&&!t.isExtraCoord&&(a||l||!t.ordinalMeta||(l=t),u||"ordinal"===t.type||"time"===t.type||s&&s!==t.coordDim||(u=t))})),!u||a||l||(a=!0),u){h="__\0ecstackresult_"+t.id,c="__\0ecstackedover_"+t.id,l&&(l.createInvertedIndices=!0);var d=u.coordDim,f=u.type,g=0;P(i,(function(t){t.coordDim===d&&g++}));var y={name:h,coordDim:d,coordDimIndex:g,type:f,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length},v={name:c,coordDim:c,coordDimIndex:g+1,type:f,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length+1};r?(o&&(y.storeDimIndex=o.ensureCalculationDimension(c,f),v.storeDimIndex=o.ensureCalculationDimension(h,f)),r.appendCalculationDimension(y),r.appendCalculationDimension(v)):(i.push(y),i.push(v))}return{stackedDimension:u&&u.name,stackedByDimension:l&&l.name,isStackedByIndex:a,stackedOverDimension:c,stackResultDimension:h}}function f_(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}function g_(t,e){return f_(t,e)?t.getCalculationInfo("stackResultDimension"):e}function y_(t,e,n){n=n||{};var i,r=e.getSourceManager(),o=!1;t?(o=!0,i=vd(t)):o=(i=r.getSource()).sourceFormat===op;var a=function(t){var e=t.get("coordinateSystem"),n=new h_(e),i=c_[e];if(i)return i(t,n,n.axisMap,n.categoryAxisMap),n}(e),s=function(t,e){var n,i=t.get("coordinateSystem"),r=Bp.get(i);return e&&e.coordSysDims&&(n=O(e.coordSysDims,(function(t){var n={name:t},i=e.axisMap.get(t);if(i){var r=i.get("type");n.type=Gm(r)}return n}))),n||(n=r&&(r.getDimensionsInfo?r.getDimensionsInfo():r.dimensions.slice())||["x","y"]),n}(e,a),l=n.useEncodeDefaulter,u=F(l)?l:l?V(vp,s,e):null,h=l_(i,{coordDimensions:s,generateCoord:n.generateCoord,encodeDefine:e.getEncode(),encodeDefaulter:u,canOmitUnusedDimensions:!o}),c=function(t,e,n){var i,r;return n&&P(t,(function(t,o){var a=t.coordDim,s=n.categoryAxisMap.get(a);s&&(null==i&&(i=o),t.ordinalMeta=s.getOrdinalMeta(),e&&(t.createInvertedIndices=!0)),null!=t.otherDims.itemName&&(r=!0)})),r||null==i||(t[i].otherDims.itemName=0),i}(h.dimensions,n.createInvertedIndices,a),p=o?null:r.getSharedDataStore(h),d=d_(e,{schema:h,store:p}),f=new s_(h,e);f.setCalculationInfo(d);var g=null!=c&&function(t){if(t.sourceFormat===op){var e=function(t){var e=0;for(;ee[1]&&(e[1]=t[1])},t.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e)},t.prototype.isInExtentRange=function(t){return this._extent[0]<=t&&this._extent[1]>=t},t.prototype.isBlank=function(){return this._isBlank},t.prototype.setBlank=function(t){this._isBlank=t},t}();Jr(v_);var m_=0,__=function(){function t(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication,this.uid=++m_}return t.createByAxisModel=function(e){var n=e.option,i=n.data,r=i&&O(i,x_);return new t({categories:r,needCollect:!r,deduplication:!1!==n.dedplication})},t.prototype.getOrdinal=function(t){return this._getOrCreateMap().get(t)},t.prototype.parseAndCollect=function(t){var e,n=this._needCollect;if("string"!=typeof t&&!n)return t;if(n&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,e;var i=this._getOrCreateMap();return null==(e=i.get(t))&&(n?(e=this.categories.length,this.categories[e]=t,i.set(t,e)):e=NaN),e},t.prototype._getOrCreateMap=function(){return this._map||(this._map=ht(this.categories))},t}();function x_(t){return X(t)&&null!=t.value?t.value:t+""}var b_=qi;function w_(t,e,n,i){var r={},o=t[1]-t[0],a=r.interval=ur(o/e,!0);null!=n&&ai&&(a=r.interval=i);var s=r.intervalPrecision=S_(a);return function(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),M_(t,0,e),M_(t,1,e),t[0]>t[1]&&(t[0]=t[1])}(r.niceTickExtent=[b_(Math.ceil(t[0]/a)*a,s),b_(Math.floor(t[1]/a)*a,s)],t),r}function S_(t){return $i(t)+2}function M_(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function I_(t,e){return t>=e[0]&&t<=e[1]}function T_(t,e){return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])}function C_(t,e){return t*(e[1]-e[0])+e[0]}var D_=function(t){function e(e){var n=t.call(this,e)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new __({})),G(i)&&(i=new __({categories:O(i,(function(t){return X(t)?t.value:t}))})),n._ordinalMeta=i,n._extent=n.getSetting("extent")||[0,i.categories.length-1],n}return n(e,t),e.prototype.parse=function(t){return"string"==typeof t?this._ordinalMeta.getOrdinal(t):Math.round(t)},e.prototype.contain=function(t){return I_(t=this.parse(t),this._extent)&&null!=this._ordinalMeta.categories[t]},e.prototype.normalize=function(t){return T_(t=this._getTickNumber(this.parse(t)),this._extent)},e.prototype.scale=function(t){return t=Math.round(C_(t,this._extent)),this.getRawOrdinalNumber(t)},e.prototype.getTicks=function(){for(var t=[],e=this._extent,n=e[0];n<=e[1];)t.push({value:n}),n++;return t},e.prototype.getMinorTicks=function(t){},e.prototype.setSortInfo=function(t){if(null!=t){for(var e=t.ordinalNumbers,n=this._ordinalNumbersByTick=[],i=this._ticksByOrdinalNumber=[],r=0,o=this._ordinalMeta.categories.length,a=Math.min(o,e.length);r=0&&t=0&&t=t},e.prototype.getOrdinalMeta=function(){return this._ordinalMeta},e.prototype.niceTicks=function(){},e.prototype.niceExtent=function(){},e.type="ordinal",e}(v_);v_.registerClass(D_);var A_=qi,k_=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="interval",e._interval=0,e._intervalPrecision=2,e}return n(e,t),e.prototype.parse=function(t){return t},e.prototype.contain=function(t){return I_(t,this._extent)},e.prototype.normalize=function(t){return T_(t,this._extent)},e.prototype.scale=function(t){return C_(t,this._extent)},e.prototype.setExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=parseFloat(t)),isNaN(e)||(n[1]=parseFloat(e))},e.prototype.unionExtent=function(t){var e=this._extent;t[0]e[1]&&(e[1]=t[1]),this.setExtent(e[0],e[1])},e.prototype.getInterval=function(){return this._interval},e.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=S_(t)},e.prototype.getTicks=function(t){var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=[];if(!e)return o;n[0]1e4)return[];var s=o.length?o[o.length-1].value:i[1];return n[1]>s&&(t?o.push({value:A_(s+e,r)}):o.push({value:n[1]})),o},e.prototype.getMinorTicks=function(t){for(var e=this.getTicks(!0),n=[],i=this.getExtent(),r=1;ri[0]&&h0&&(o=null===o?s:Math.min(o,s))}n[i]=o}}return n}(t),n=[];return P(t,(function(t){var i,r=t.coordinateSystem.getBaseAxis(),o=r.getExtent();if("category"===r.type)i=r.getBandWidth();else if("value"===r.type||"time"===r.type){var a=r.dim+"_"+r.index,s=e[a],l=Math.abs(o[1]-o[0]),u=r.scale.getExtent(),h=Math.abs(u[1]-u[0]);i=s?l/h*s:l}else{var c=t.getData();i=Math.abs(o[1]-o[0])/c.count()}var p=ji(t.get("barWidth"),i),d=ji(t.get("barMaxWidth"),i),f=ji(t.get("barMinWidth")||1,i),g=t.get("barGap"),y=t.get("barCategoryGap");n.push({bandWidth:i,barWidth:p,barMaxWidth:d,barMinWidth:f,barGap:g,barCategoryGap:y,axisKey:R_(r),stackId:O_(t)})})),E_(n)}function E_(t){var e={};P(t,(function(t,n){var i=t.axisKey,r=t.bandWidth,o=e[i]||{bandWidth:r,remainedWidth:r,autoWidthCount:0,categoryGap:null,gap:"20%",stacks:{}},a=o.stacks;e[i]=o;var s=t.stackId;a[s]||o.autoWidthCount++,a[s]=a[s]||{width:0,maxWidth:0};var l=t.barWidth;l&&!a[s].width&&(a[s].width=l,l=Math.min(o.remainedWidth,l),o.remainedWidth-=l);var u=t.barMaxWidth;u&&(a[s].maxWidth=u);var h=t.barMinWidth;h&&(a[s].minWidth=h);var c=t.barGap;null!=c&&(o.gap=c);var p=t.barCategoryGap;null!=p&&(o.categoryGap=p)}));var n={};return P(e,(function(t,e){n[e]={};var i=t.stacks,r=t.bandWidth,o=t.categoryGap;if(null==o){var a=E(i).length;o=Math.max(35-4*a,15)+"%"}var s=ji(o,r),l=ji(t.gap,1),u=t.remainedWidth,h=t.autoWidthCount,c=(u-s)/(h+(h-1)*l);c=Math.max(c,0),P(i,(function(t){var e=t.maxWidth,n=t.minWidth;if(t.width){i=t.width;e&&(i=Math.min(i,e)),n&&(i=Math.max(i,n)),t.width=i,u-=i+l*i,h--}else{var i=c;e&&ei&&(i=n),i!==c&&(t.width=i,u-=i+l*i,h--)}})),c=(u-s)/(h+(h-1)*l),c=Math.max(c,0);var p,d=0;P(i,(function(t,e){t.width||(t.width=c),p=t,d+=t.width*(1+l)})),p&&(d-=p.width*l);var f=-d/2;P(i,(function(t,i){n[e][i]=n[e][i]||{bandWidth:r,offset:f,width:t.width},f+=t.width*(1+l)}))})),n}function B_(t,e,n){if(t&&e){var i=t[R_(e)];return null!=i&&null!=n?i[O_(n)]:i}}function V_(t,e){var n=N_(t,e),i=z_(n),r={};P(n,(function(t){var e=t.getData(),n=t.coordinateSystem,o=n.getBaseAxis(),a=O_(t),s=i[R_(o)][a],l=s.offset,u=s.width,h=n.getOtherAxis(o),c=t.get("barMinHeight")||0;r[a]=r[a]||[],e.setLayout({bandWidth:s.bandWidth,offset:l,size:u});for(var p=e.mapDimension(h.dim),d=e.mapDimension(o.dim),f=f_(e,p),g=h.isHorizontal(),y=W_(o,h),v=e.getStore(),m=e.getDimensionIndex(p),_=e.getDimensionIndex(d),x=0,b=v.count();x=0?"p":"n",I=y;f&&(r[a][S]||(r[a][S]={p:y,n:y}),I=r[a][S][M]);var T,C=void 0,D=void 0,A=void 0,k=void 0;if(g)C=I,D=(T=n.dataToPoint([w,S]))[1]+l,A=T[0]-y,k=u,Math.abs(A).5||(h=.5),{progress:function(t,e){for(var c,p=t.count,d=new P_(2*p),f=new P_(2*p),g=new P_(p),y=[],v=[],m=0,_=0,x=e.getStore();null!=(c=t.next());)v[u]=x.get(a,c),v[1-u]=x.get(s,c),y=n.dataToPoint(v,null),f[m]=l?i.x+i.width:y[0],d[m++]=y[0],f[m]=l?y[1]:i.y+i.height,d[m++]=y[1],g[_++]=c;e.setLayout({largePoints:d,largeDataIndices:g,largeBackgroundPoints:f,barWidth:h,valueAxisStart:W_(r,o),backgroundStart:l?i.x:i.y,valueAxisHorizontal:l})}}}}};function F_(t){return t.coordinateSystem&&"cartesian2d"===t.coordinateSystem.type}function H_(t){return t.pipelineContext&&t.pipelineContext.large}function W_(t,e,n){return e.toGlobalCoord(e.dataToCoord("log"===e.type?1:0))}var U_=function(t){function e(e){var n=t.call(this,e)||this;return n.type="time",n}return n(e,t),e.prototype.getLabel=function(t){var e=this.getSetting("useUTC");return pc(t.value,ac[function(t){switch(t){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}(hc(this._minLevelUnit))]||ac.second,e,this.getSetting("locale"))},e.prototype.getFormattedLabel=function(t,e,n){var i=this.getSetting("useUTC");return function(t,e,n,i,r){var o=null;if("string"==typeof n)o=n;else if("function"==typeof n)o=n(t.value,e,{level:t.level});else{var a=I({},rc);if(t.level>0)for(var s=0;s=0;--s)if(l[u]){o=l[u];break}o=o||a.none}if(G(o)){var h=null==t.level?0:t.level>=0?t.level:o.length+t.level;o=o[h=Math.min(h,o.length-1)]}}return pc(new Date(t.value),o,r,i)}(t,e,n,this.getSetting("locale"),i)},e.prototype.getTicks=function(t){var e=this._interval,n=this._extent,i=[];if(!e)return i;i.push({value:n[0],level:0});var r=this.getSetting("useUTC"),o=function(t,e,n,i){var r=1e4,o=lc,a=0;function s(t,e,n,r,o,a,s){for(var l=new Date(e),u=e,h=l[r]();u1&&0===u&&o.unshift({value:o[0].value-p})}}for(u=0;u=i[0]&&v<=i[1]&&c++)}var m=(i[1]-i[0])/e;if(c>1.5*m&&p>m/1.5)break;if(u.push(g),c>m||t===o[d])break}h=[]}}0;var _=N(O(u,(function(t){return N(t,(function(t){return t.value>=i[0]&&t.value<=i[1]&&!t.notAdd}))})),(function(t){return t.length>0})),x=[],b=_.length-1;for(d=0;d<_.length;++d)for(var w=_[d],S=0;Sn&&(this._approxInterval=n);var o=X_.length,a=Math.min(function(t,e,n,i){for(;n>>1;t[r][1]16?16:t>7.5?7:t>3.5?4:t>1.5?2:1}function Z_(t){return(t/=2592e6)>6?6:t>3?3:t>2?2:1}function j_(t){return(t/=ec)>12?12:t>6?6:t>3.5?4:t>2?2:1}function q_(t,e){return(t/=e?tc:Qh)>30?30:t>20?20:t>15?15:t>10?10:t>5?5:t>2?2:1}function K_(t){return ur(t,!0)}function $_(t,e,n){var i=new Date(t);switch(hc(e)){case"year":case"month":i[Sc(n)](0);case"day":i[Mc(n)](1);case"hour":i[Ic(n)](0);case"minute":i[Tc(n)](0);case"second":i[Cc(n)](0),i[Dc(n)](0)}return i.getTime()}v_.registerClass(U_);var J_=v_.prototype,Q_=k_.prototype,tx=qi,ex=Math.floor,nx=Math.ceil,ix=Math.pow,rx=Math.log,ox=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="log",e.base=10,e._originalScale=new k_,e._interval=0,e}return n(e,t),e.prototype.getTicks=function(t){var e=this._originalScale,n=this._extent,i=e.getExtent();return O(Q_.getTicks.call(this,t),(function(t){var e=t.value,r=qi(ix(this.base,e));return r=e===n[0]&&this._fixMin?sx(r,i[0]):r,{value:r=e===n[1]&&this._fixMax?sx(r,i[1]):r}}),this)},e.prototype.setExtent=function(t,e){var n=this.base;t=rx(t)/rx(n),e=rx(e)/rx(n),Q_.setExtent.call(this,t,e)},e.prototype.getExtent=function(){var t=this.base,e=J_.getExtent.call(this);e[0]=ix(t,e[0]),e[1]=ix(t,e[1]);var n=this._originalScale.getExtent();return this._fixMin&&(e[0]=sx(e[0],n[0])),this._fixMax&&(e[1]=sx(e[1],n[1])),e},e.prototype.unionExtent=function(t){this._originalScale.unionExtent(t);var e=this.base;t[0]=rx(t[0])/rx(e),t[1]=rx(t[1])/rx(e),J_.unionExtent.call(this,t)},e.prototype.unionExtentFromData=function(t,e){this.unionExtent(t.getApproximateExtent(e))},e.prototype.niceTicks=function(t){t=t||10;var e=this._extent,n=e[1]-e[0];if(!(n===1/0||n<=0)){var i=sr(n);for(t/n*i<=.5&&(i*=10);!isNaN(i)&&Math.abs(i)<1&&Math.abs(i)>0;)i*=10;var r=[qi(nx(e[0]/i)*i),qi(ex(e[1]/i)*i)];this._interval=i,this._niceExtent=r}},e.prototype.niceExtent=function(t){Q_.niceExtent.call(this,t),this._fixMin=t.fixMin,this._fixMax=t.fixMax},e.prototype.parse=function(t){return t},e.prototype.contain=function(t){return I_(t=rx(t)/rx(this.base),this._extent)},e.prototype.normalize=function(t){return T_(t=rx(t)/rx(this.base),this._extent)},e.prototype.scale=function(t){return t=C_(t,this._extent),ix(this.base,t)},e.type="log",e}(v_),ax=ox.prototype;function sx(t,e){return tx(t,$i(e))}ax.getMinorTicks=Q_.getMinorTicks,ax.getLabel=Q_.getLabel,v_.registerClass(ox);var lx=function(){function t(t,e,n){this._prepareParams(t,e,n)}return t.prototype._prepareParams=function(t,e,n){n[1]s&&(a=NaN,s=NaN);var h=J(a)||J(s)||t&&!i;this._needCrossZero&&(a>0&&s>0&&!l&&(a=0),a<0&&s<0&&!u&&(s=0));var c=this._determinedMin,p=this._determinedMax;return null!=c&&(a=c,l=!0),null!=p&&(s=p,u=!0),{min:a,max:s,minFixed:l,maxFixed:u,isBlank:h}},t.prototype.modifyDataMinMax=function(t,e){this[hx[t]]=e},t.prototype.setDeterminedMinMax=function(t,e){var n=ux[t];this[n]=e},t.prototype.freeze=function(){this.frozen=!0},t}(),ux={min:"_determinedMin",max:"_determinedMax"},hx={min:"_dataMin",max:"_dataMax"};function cx(t,e,n){var i=t.rawExtentInfo;return i||(i=new lx(t,e,n),t.rawExtentInfo=i,i)}function px(t,e){return null==e?null:J(e)?NaN:t.parse(e)}function dx(t,e){var n=t.type,i=cx(t,e,t.getExtent()).calculate();t.setBlank(i.isBlank);var r=i.min,o=i.max,a=e.ecModel;if(a&&"time"===n){var s=N_("bar",a),l=!1;if(P(s,(function(t){l=l||t.getBaseAxis()===e.axis})),l){var u=z_(s),h=function(t,e,n,i){var r=n.axis.getExtent(),o=r[1]-r[0],a=B_(i,n.axis);if(void 0===a)return{min:t,max:e};var s=1/0;P(a,(function(t){s=Math.min(t.offset,s)}));var l=-1/0;P(a,(function(t){l=Math.max(t.offset+t.width,l)})),s=Math.abs(s),l=Math.abs(l);var u=s+l,h=e-t,c=h/(1-(s+l)/o)-h;return{min:t-=c*(s/u),max:e+=c*(l/u)}}(r,o,e,u);r=h.min,o=h.max}}return{extent:[r,o],fixMin:i.minFixed,fixMax:i.maxFixed}}function fx(t,e){var n=dx(t,e),i=n.extent,r=e.get("splitNumber");t instanceof ox&&(t.base=e.get("logBase"));var o=t.type;t.setExtent(i[0],i[1]),t.niceExtent({splitNumber:r,fixMin:n.fixMin,fixMax:n.fixMax,minInterval:"interval"===o||"time"===o?e.get("minInterval"):null,maxInterval:"interval"===o||"time"===o?e.get("maxInterval"):null});var a=e.get("interval");null!=a&&t.setInterval&&t.setInterval(a)}function gx(t,e){if(e=e||t.get("type"))switch(e){case"category":return new D_({ordinalMeta:t.getOrdinalMeta?t.getOrdinalMeta():t.getCategories(),extent:[1/0,-1/0]});case"time":return new U_({locale:t.ecModel.getLocaleModel(),useUTC:t.ecModel.get("useUTC")});default:return new(v_.getClass(e)||k_)}}function yx(t){var e,n,i=t.getLabelModel().get("formatter"),r="category"===t.type?t.scale.getExtent()[0]:null;return"time"===t.scale.type?(n=i,function(e,i){return t.scale.getFormattedLabel(e,i,n)}):"string"==typeof i?function(e){return function(n){var i=t.scale.getLabel(n);return e.replace("{value}",null!=i?i:"")}}(i):"function"==typeof i?(e=i,function(n,i){return null!=r&&(i=n.value-r),e(vx(t,n),i,null!=n.level?{level:n.level}:null)}):function(e){return t.scale.getLabel(e)}}function vx(t,e){return"category"===t.type?t.scale.getLabel(e):e.value}function mx(t,e){var n=e*Math.PI/180,i=t.width,r=t.height,o=i*Math.abs(Math.cos(n))+Math.abs(r*Math.sin(n)),a=i*Math.abs(Math.sin(n))+Math.abs(r*Math.cos(n));return new yi(t.x,t.y,o,a)}function _x(t){var e=t.get("interval");return null==e?"auto":e}function xx(t){return"category"===t.type&&0===_x(t.getLabelModel())}function bx(t,e){var n={};return P(t.mapDimensionsAll(e),(function(e){n[g_(t,e)]=!0})),E(n)}var Sx=function(){function t(){}return t.prototype.getNeedCrossZero=function(){return!this.option.scale},t.prototype.getCoordSysModel=function(){},t}();var Mx={isDimensionStacked:f_,enableDataStack:d_,getStackedDimension:g_};var Ix=Object.freeze({__proto__:null,createList:function(t){return y_(null,t)},getLayoutRect:Zc,dataStack:Mx,createScale:function(t,e){var n=e;e instanceof Hh||(n=new Hh(e));var i=gx(n);return i.setExtent(t[0],t[1]),fx(i,n),i},mixinAxisModelCommonMethods:function(t){k(t,Sx)},getECData:ws,createTextStyle:function(t,e){return bh(t,null,null,"normal"!==(e=e||{}).state)},createDimensions:function(t,e){return l_(t,e).dimensions},createSymbol:Qg,enableHoverEmphasis:cl}),Tx=Object.freeze({__proto__:null,linearMap:Zi,round:qi,asc:Ki,getPrecision:$i,getPrecisionSafe:Ji,getPixelPrecision:Qi,getPercentWithPrecision:tr,MAX_SAFE_INTEGER:nr,remRadian:ir,isRadianAroundZero:rr,parseDate:ar,quantity:sr,quantityExponent:lr,nice:ur,quantile:hr,reformIntervals:cr,isNumeric:dr,numericToNumber:pr}),Cx=Object.freeze({__proto__:null,parse:ar,format:pc}),Dx=Object.freeze({__proto__:null,extendShape:Yu,extendPath:ju,makePath:$u,makeImage:Ju,mergePath:th,resizePath:eh,createIcon:hh,updateProps:zu,initProps:Eu,getTransform:ih,clipPointsByRect:lh,clipRectByRect:uh,registerShape:qu,getShapeClass:Ku,Group:Bi,Image:is,Text:ds,Circle:Fl,Ellipse:Wl,Sector:ru,Ring:au,Polygon:hu,Polyline:pu,Rect:hs,Line:gu,BezierCurve:_u,Arc:bu,IncrementalDisplayable:Pu,CompoundPath:wu,LinearGradient:Mu,RadialGradient:Iu,BoundingRect:yi}),Ax=Object.freeze({__proto__:null,addCommas:Ac,toCamelCase:kc,normalizeCssArray:Lc,encodeHTML:Rc,formatTpl:Bc,getTooltipMarker:Vc,formatTime:function(t,e,n){"week"!==t&&"month"!==t&&"quarter"!==t&&"half-year"!==t&&"year"!==t||(t="MM-dd\nyyyy");var i=ar(e),r=n?"UTC":"",o=i["get"+r+"FullYear"](),a=i["get"+r+"Month"]()+1,s=i["get"+r+"Date"](),l=i["get"+r+"Hours"](),u=i["get"+r+"Minutes"](),h=i["get"+r+"Seconds"](),c=i["get"+r+"Milliseconds"]();return t=t.replace("MM",uc(a,2)).replace("M",a).replace("yyyy",o).replace("yy",o%100+"").replace("dd",uc(s,2)).replace("d",s).replace("hh",uc(l,2)).replace("h",l).replace("mm",uc(u,2)).replace("m",u).replace("ss",uc(h,2)).replace("s",h).replace("SSS",uc(c,3))},capitalFirst:function(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t},truncateText:lo,getTextRect:function(t,e,n,i,r,o,a,s){return vr(),new ds({style:{text:t,font:e,align:n,verticalAlign:i,padding:r,rich:o,overflow:a?"truncate":null,lineHeight:s}}).getBoundingRect()}}),kx=Object.freeze({__proto__:null,map:O,each:P,indexOf:D,inherits:A,reduce:R,filter:N,bind:B,curry:V,isArray:G,isString:H,isObject:X,isFunction:F,extend:I,defaults:T,clone:w,merge:S}),Lx=Or();function Px(t){return"category"===t.type?function(t){var e=t.getLabelModel(),n=Rx(t,e);return!e.get("show")||t.scale.isBlank()?{labels:[],labelCategoryInterval:n.labelCategoryInterval}:n}(t):function(t){var e=t.scale.getTicks(),n=yx(t);return{labels:O(e,(function(e,i){return{formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e.value}}))}}(t)}function Ox(t,e){return"category"===t.type?function(t,e){var n,i,r=Nx(t,"ticks"),o=_x(e),a=zx(r,o);if(a)return a;e.get("show")&&!t.scale.isBlank()||(n=[]);if(F(o))n=Vx(t,o,!0);else if("auto"===o){var s=Rx(t,t.getLabelModel());i=s.labelCategoryInterval,n=O(s.labels,(function(t){return t.tickValue}))}else n=Bx(t,i=o,!0);return Ex(r,o,{ticks:n,tickCategoryInterval:i})}(t,e):{ticks:O(t.scale.getTicks(),(function(t){return t.value}))}}function Rx(t,e){var n,i,r=Nx(t,"labels"),o=_x(e),a=zx(r,o);return a||(F(o)?n=Vx(t,o):(i="auto"===o?function(t){var e=Lx(t).autoInterval;return null!=e?e:Lx(t).autoInterval=t.calculateCategoryInterval()}(t):o,n=Bx(t,i)),Ex(r,o,{labels:n,labelCategoryInterval:i}))}function Nx(t,e){return Lx(t)[e]||(Lx(t)[e]=[])}function zx(t,e){for(var n=0;n1&&h/l>2&&(u=Math.round(Math.ceil(u/l)*l));var c=xx(t),p=a.get("showMinLabel")||c,d=a.get("showMaxLabel")||c;p&&u!==o[0]&&g(o[0]);for(var f=u;f<=o[1];f+=l)g(f);function g(t){var e={value:t};s.push(n?t:{formattedLabel:i(e),rawLabel:r.getLabel(e),tickValue:t})}return d&&f-l!==o[1]&&g(o[1]),s}function Vx(t,e,n){var i=t.scale,r=yx(t),o=[];return P(i.getTicks(),(function(t){var a=i.getLabel(t),s=t.value;e(t.value,a)&&o.push(n?s:{formattedLabel:r(t),rawLabel:a,tickValue:s})})),o}var Gx=[0,1],Fx=function(){function t(t,e,n){this.onBand=!1,this.inverse=!1,this.dim=t,this.scale=e,this._extent=n||[0,0]}return t.prototype.contain=function(t){var e=this._extent,n=Math.min(e[0],e[1]),i=Math.max(e[0],e[1]);return t>=n&&t<=i},t.prototype.containData=function(t){return this.scale.contain(t)},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.getPixelPrecision=function(t){return Qi(t||this.scale.getExtent(),this._extent)},t.prototype.setExtent=function(t,e){var n=this._extent;n[0]=t,n[1]=e},t.prototype.dataToCoord=function(t,e){var n=this._extent,i=this.scale;return t=i.normalize(t),this.onBand&&"ordinal"===i.type&&Hx(n=n.slice(),i.count()),Zi(t,Gx,n,e)},t.prototype.coordToData=function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&Hx(n=n.slice(),i.count());var r=Zi(t,n,Gx,e);return this.scale.scale(r)},t.prototype.pointToData=function(t,e){},t.prototype.getTicksCoords=function(t){var e=(t=t||{}).tickModel||this.getTickModel(),n=O(Ox(this,e).ticks,(function(t){return{coord:this.dataToCoord("ordinal"===this.scale.type?this.scale.getRawOrdinalNumber(t):t),tickValue:t}}),this);return function(t,e,n,i){var r=e.length;if(!t.onBand||n||!r)return;var o,a,s=t.getExtent();if(1===r)e[0].coord=s[0],o=e[1]={coord:s[0]};else{var l=e[r-1].tickValue-e[0].tickValue,u=(e[r-1].coord-e[0].coord)/l;P(e,(function(t){t.coord-=u/2})),a=1+t.scale.getExtent()[1]-e[r-1].tickValue,o={coord:e[r-1].coord+u*a},e.push(o)}var h=s[0]>s[1];c(e[0].coord,s[0])&&(i?e[0].coord=s[0]:e.shift());i&&c(s[0],e[0].coord)&&e.unshift({coord:s[0]});c(s[1],o.coord)&&(i?o.coord=s[1]:e.pop());i&&c(o.coord,s[1])&&e.push({coord:s[1]});function c(t,e){return t=qi(t),e=qi(e),h?t>e:t0&&t<100||(t=5),O(this.scale.getMinorTicks(t),(function(t){return O(t,(function(t){return{coord:this.dataToCoord(t),tickValue:t}}),this)}),this)},t.prototype.getViewLabels=function(){return Px(this).labels},t.prototype.getLabelModel=function(){return this.model.getModel("axisLabel")},t.prototype.getTickModel=function(){return this.model.getModel("axisTick")},t.prototype.getBandWidth=function(){var t=this._extent,e=this.scale.getExtent(),n=e[1]-e[0]+(this.onBand?1:0);0===n&&(n=1);var i=Math.abs(t[1]-t[0]);return Math.abs(i)/n},t.prototype.calculateCategoryInterval=function(){return function(t){var e=function(t){var e=t.getLabelModel();return{axisRotate:t.getRotate?t.getRotate():t.isHorizontal&&!t.isHorizontal()?90:0,labelRotate:e.get("rotate")||0,font:e.getFont()}}(t),n=yx(t),i=(e.axisRotate-e.labelRotate)/180*Math.PI,r=t.scale,o=r.getExtent(),a=r.count();if(o[1]-o[0]<1)return 0;var s=1;a>40&&(s=Math.max(1,Math.floor(a/40)));for(var l=o[0],u=t.dataToCoord(l+1)-t.dataToCoord(l),h=Math.abs(u*Math.cos(i)),c=Math.abs(u*Math.sin(i)),p=0,d=0;l<=o[1];l+=s){var f,g,y=wi(n({value:l}),e.font,"center","top");f=1.3*y.width,g=1.3*y.height,p=Math.max(p,f,7),d=Math.max(d,g,7)}var v=p/h,m=d/c;isNaN(v)&&(v=1/0),isNaN(m)&&(m=1/0);var _=Math.max(0,Math.floor(Math.min(v,m))),x=Lx(t.model),b=t.getExtent(),w=x.lastAutoInterval,S=x.lastTickCount;return null!=w&&null!=S&&Math.abs(w-_)<=1&&Math.abs(S-a)<=1&&w>_&&x.axisExtent0===b[0]&&x.axisExtent1===b[1]?_=w:(x.lastTickCount=a,x.lastAutoInterval=_,x.axisExtent0=b[0],x.axisExtent1=b[1]),_}(this)},t}();function Hx(t,e){var n=(t[1]-t[0])/e/2;t[0]+=n,t[1]-=n}var Wx=2*Math.PI,Ux=Pa.CMD,Xx=["top","right","bottom","left"];function Yx(t,e,n,i,r){var o=n.width,a=n.height;switch(t){case"top":i.set(n.x+o/2,n.y-e),r.set(0,-1);break;case"bottom":i.set(n.x+o/2,n.y+a+e),r.set(0,1);break;case"left":i.set(n.x-e,n.y+a/2),r.set(-1,0);break;case"right":i.set(n.x+o+e,n.y+a/2),r.set(1,0)}}function Zx(t,e,n,i,r,o,a,s,l){a-=t,s-=e;var u=Math.sqrt(a*a+s*s),h=(a/=u)*n+t,c=(s/=u)*n+e;if(Math.abs(i-r)%Wx<1e-4)return l[0]=h,l[1]=c,u-n;if(o){var p=i;i=Ea(r),r=Ea(p)}else i=Ea(i),r=Ea(r);i>r&&(r+=Wx);var d=Math.atan2(s,a);if(d<0&&(d+=Wx),d>=i&&d<=r||d+Wx>=i&&d+Wx<=r)return l[0]=h,l[1]=c,u-n;var f=n*Math.cos(i)+t,g=n*Math.sin(i)+e,y=n*Math.cos(r)+t,v=n*Math.sin(r)+e,m=(f-a)*(f-a)+(g-s)*(g-s),_=(y-a)*(y-a)+(v-s)*(v-s);return m<_?(l[0]=f,l[1]=g,Math.sqrt(m)):(l[0]=y,l[1]=v,Math.sqrt(_))}function jx(t,e,n,i,r,o,a,s){var l=r-t,u=o-e,h=n-t,c=i-e,p=Math.sqrt(h*h+c*c),d=(l*(h/=p)+u*(c/=p))/p;s&&(d=Math.min(Math.max(d,0),1)),d*=p;var f=a[0]=t+d*h,g=a[1]=e+d*c;return Math.sqrt((f-r)*(f-r)+(g-o)*(g-o))}function qx(t,e,n,i,r,o,a){n<0&&(t+=n,n=-n),i<0&&(e+=i,i=-i);var s=t+n,l=e+i,u=a[0]=Math.min(Math.max(r,t),s),h=a[1]=Math.min(Math.max(o,e),l);return Math.sqrt((u-r)*(u-r)+(h-o)*(h-o))}var Kx=[];function $x(t,e,n){var i=qx(e.x,e.y,e.width,e.height,t.x,t.y,Kx);return n.set(Kx[0],Kx[1]),i}function Jx(t,e,n){for(var i,r,o=0,a=0,s=0,l=0,u=1/0,h=e.data,c=t.x,p=t.y,d=0;d0){e=e/180*Math.PI,Qx.fromArray(t[0]),tb.fromArray(t[1]),eb.fromArray(t[2]),si.sub(nb,Qx,tb),si.sub(ib,eb,tb);var n=nb.len(),i=ib.len();if(!(n<.001||i<.001)){nb.scale(1/n),ib.scale(1/i);var r=nb.dot(ib);if(Math.cos(e)1&&si.copy(ab,eb),ab.toArray(t[1])}}}}function lb(t,e,n){if(n<=180&&n>0){n=n/180*Math.PI,Qx.fromArray(t[0]),tb.fromArray(t[1]),eb.fromArray(t[2]),si.sub(nb,tb,Qx),si.sub(ib,eb,tb);var i=nb.len(),r=ib.len();if(!(i<.001||r<.001))if(nb.scale(1/i),ib.scale(1/r),nb.dot(e)=a)si.copy(ab,eb);else{ab.scaleAndAdd(ib,o/Math.tan(Math.PI/2-s));var l=eb.x!==tb.x?(ab.x-tb.x)/(eb.x-tb.x):(ab.y-tb.y)/(eb.y-tb.y);if(isNaN(l))return;l<0?si.copy(ab,tb):l>1&&si.copy(ab,eb)}ab.toArray(t[1])}}}function ub(t,e,n,i){var r="normal"===n,o=r?t:t.ensureState(n);o.ignore=e;var a=i.get("smooth");a&&!0===a&&(a=.3),o.shape=o.shape||{},a>0&&(o.shape.smooth=a);var s=i.getModel("lineStyle").getLineStyle();r?t.useStyle(s):o.style=s}function hb(t,e){var n=e.smooth,i=e.points;if(i)if(t.moveTo(i[0][0],i[0][1]),n>0&&i.length>=3){var r=kt(i[0],i[1]),o=kt(i[1],i[2]);if(!r||!o)return t.lineTo(i[1][0],i[1][1]),void t.lineTo(i[2][0],i[2][1]);var a=Math.min(r,o)*n,s=Ot([],i[1],i[0],a/r),l=Ot([],i[1],i[2],a/o),u=Ot([],s,l,.5);t.bezierCurveTo(s[0],s[1],s[0],s[1],u[0],u[1]),t.bezierCurveTo(l[0],l[1],l[0],l[1],i[2][0],i[2][1])}else for(var h=1;h0&&o&&x(-h/a,0,a);var f,g,y=t[0],v=t[a-1];return m(),f<0&&b(-f,.8),g<0&&b(g,.8),m(),_(f,g,1),_(g,f,-1),m(),f<0&&w(-f),g<0&&w(g),u}function m(){f=y.rect[e]-i,g=r-v.rect[e]-v.rect[n]}function _(t,e,n){if(t<0){var i=Math.min(e,-t);if(i>0){x(i*n,0,a);var r=i+t;r<0&&b(-r*n,1)}else b(-t*n,1)}}function x(n,i,r){0!==n&&(u=!0);for(var o=i;o0)for(l=0;l0;l--){x(-(o[l-1]*c),l,a)}}}function w(t){var e=t<0?-1:1;t=Math.abs(t);for(var n=Math.ceil(t/(a-1)),i=0;i0?x(n,0,i+1):x(-n,a-i-1,a),(t-=n)<=0)return}}function fb(t,e,n,i){return db(t,"y","height",e,n,i)}function gb(t){if(t){for(var e=[],n=0;n=0&&n.attr(d.oldLayoutSelect),D(u,"emphasis")>=0&&n.attr(d.oldLayoutEmphasis)),zu(n,s,e,a)}else if(n.attr(s),!Dh(n).valueAnimation){var h=tt(n.style.opacity,1);n.style.opacity=0,Eu(n,{style:{opacity:h}},e,a)}if(d.oldLayout=s,n.states.select){var c=d.oldLayoutSelect={};bb(c,s,wb),bb(c,n.states.select,wb)}if(n.states.emphasis){var p=d.oldLayoutEmphasis={};bb(p,s,wb),bb(p,n.states.emphasis,wb)}kh(n,a,l,e,e)}if(i&&!i.ignore&&!i.invisible){r=(d=xb(i)).oldLayout;var d,f={points:i.shape.points};r?(i.attr({shape:r}),zu(i,{shape:f},e)):(i.setShape(f),i.style.strokePercent=0,Eu(i,{style:{strokePercent:1}},e)),d.oldLayout=f}},t}(),Mb=Or();function Ib(t){return document.createElementNS("http://www.w3.org/2000/svg",t)}function Tb(t){var e;if(t&&"transparent"!==t){if("string"==typeof t&&t.indexOf("rgba")>-1){var n=He(t);n&&(t="rgb("+n[0]+","+n[1]+","+n[2]+")",e=n[3])}}else t="none";return{color:t,opacity:null==e?1:e}}function Cb(t,e,n,i,r){for(var o=e.length,a=n.length,s=t.newPos,l=s-i,u=0;s+1=i&&l+1>=r){for(var u=[],h=0;h=i&&c+1>=r)return Ab(l.components);s[a]=l}else s[a]=void 0}var f;o++}for(;o<=a;){var p=c();if(p)return p}}(t,e,n)}var Lb="none",Pb=Math.round,Ob=Math.sin,Rb=Math.cos,Nb=Math.PI,zb=2*Math.PI,Eb=180/Nb,Bb=1e-4;function Vb(t){return Pb(1e3*t)/1e3}function Gb(t){return Pb(1e4*t)/1e4}function Fb(t){return t-1e-4}function Hb(t,e){e&&Wb(t,"transform","matrix("+Vb(e[0])+","+Vb(e[1])+","+Vb(e[2])+","+Vb(e[3])+","+Gb(e[4])+","+Gb(e[5])+")")}function Wb(t,e,n){(!n||"linear"!==n.type&&"radial"!==n.type)&&t.setAttribute(e,n)}function Ub(t,e,n){var i=null==e.opacity?1:e.opacity;if(n instanceof is)t.style.opacity=i+"";else{if(function(t){var e=t.fill;return null!=e&&e!==Lb}(e)){var r=Tb(e.fill);Wb(t,"fill",r.color),Wb(t,"fill-opacity",(null!=e.fillOpacity?e.fillOpacity*r.opacity*i:r.opacity*i)+"")}else Wb(t,"fill",Lb);if(function(t){var e=t.stroke;return null!=e&&e!==Lb}(e)){var o=Tb(e.stroke);Wb(t,"stroke",o.color);var a=e.lineWidth,s=e.strokeNoScale?n.getLineScale():1;Wb(t,"stroke-width",(s?a/s:0)+""),Wb(t,"paint-order",e.strokeFirst?"stroke":"fill"),Wb(t,"stroke-opacity",(null!=e.strokeOpacity?e.strokeOpacity*o.opacity*i:o.opacity*i)+"");var l=e.lineDash&&a>0&&ry(e.lineDash,a);if(l){var u=e.lineDashOffset;s&&1!==s&&(l=O(l,(function(t){return t/s})),u&&(u=Pb(u/=s))),Wb(t,"stroke-dasharray",l.join(",")),Wb(t,"stroke-dashoffset",(u||0)+"")}else Wb(t,"stroke-dasharray","");e.lineCap&&Wb(t,"stroke-linecap",e.lineCap),e.lineJoin&&Wb(t,"stroke-linejoin",e.lineJoin),e.miterLimit&&Wb(t,"stroke-miterlimit",e.miterLimit+"")}else Wb(t,"stroke",Lb)}}var Xb=function(){function t(){}return t.prototype.reset=function(){this._d=[],this._str=""},t.prototype.moveTo=function(t,e){this._add("M",t,e)},t.prototype.lineTo=function(t,e){this._add("L",t,e)},t.prototype.bezierCurveTo=function(t,e,n,i,r,o){this._add("C",t,e,n,i,r,o)},t.prototype.quadraticCurveTo=function(t,e,n,i){this._add("Q",t,e,n,i)},t.prototype.arc=function(t,e,n,i,r,o){this.ellipse(t,e,n,n,0,i,r,o)},t.prototype.ellipse=function(t,e,n,i,r,o,a,s){var l=0===this._d.length,u=a-o,h=!s,c=Math.abs(u),p=Fb(c-zb)||(h?u>=zb:-u>=zb),d=u>0?u%zb:u%zb+zb,f=!1;f=!!p||!Fb(c)&&d>=Nb==!!h;var g=Gb(t+n*Rb(o)),y=Gb(e+i*Ob(o));p&&(u=h?zb-1e-4:1e-4-zb,f=!0,l&&this._d.push("M",g,y));var v=Gb(t+n*Rb(o+u)),m=Gb(e+i*Ob(o+u));if(isNaN(g)||isNaN(y)||isNaN(n)||isNaN(i)||isNaN(r)||isNaN(Eb)||isNaN(v)||isNaN(m))return"";this._d.push("A",Gb(n),Gb(i),Pb(r*Eb),+f,+h,v,m)},t.prototype.rect=function(t,e,n,i){this._add("M",t,e),this._add("L",t+n,e),this._add("L",t+n,e+i),this._add("L",t,e+i),this._add("L",t,e),this._add("Z")},t.prototype.closePath=function(){this._d.length>0&&this._add("Z")},t.prototype._add=function(t,e,n,i,r,o,a,s,l){this._d.push(t);for(var u=1;u=0;--n)if(e[n]===t)return!0;return!1}),i}return null}return n[0]},t.prototype.doUpdate=function(t,e){if(t){var n=this.getDefs(!1);if(t[this._domName]&&n.contains(t[this._domName]))"function"==typeof e&&e(t);else{var i=this.add(t);i&&(t[this._domName]=i)}}},t.prototype.add=function(t){return null},t.prototype.addDom=function(t){var e=this.getDefs(!0);t.parentNode!==e&&e.appendChild(t)},t.prototype.removeDom=function(t){var e=this.getDefs(!1);e&&t[this._domName]&&(e.removeChild(t[this._domName]),t[this._domName]=null)},t.prototype.getDoms=function(){var t=this.getDefs(!1);if(!t)return[];var e=[];return P(this._tagNames,(function(n){for(var i=t.getElementsByTagName(n),r=0;r-1){var s=He(a)[3],l=Xe(a);o.setAttribute("stop-color","#"+l),o.setAttribute("stop-opacity",s+"")}else o.setAttribute("stop-color",n[i].color);e.appendChild(o)}t.__dom=e},e.prototype.markUsed=function(e){if(e.style){var n=e.style.fill;n&&n.__dom&&t.prototype.markDomUsed.call(this,n.__dom),(n=e.style.stroke)&&n.__dom&&t.prototype.markDomUsed.call(this,n.__dom)}},e}(Kb);function ew(t){return t&&(!!t.image||!!t.svgElement)}var nw=new Ug,iw=function(t){function e(e,n){return t.call(this,e,n,["pattern"],"__pattern_in_use__")||this}return n(e,t),e.prototype.addWithoutUpdate=function(t,e){if(e&&e.style){var n=this;P(["fill","stroke"],(function(i){var r=e.style[i];if(ew(r)){var o=n.getDefs(!0),a=nw.get(r);a?o.contains(a)||n.addDom(a):a=n.add(r),n.markUsed(e);var s=a.getAttribute("id");t.setAttribute(i,"url(#"+s+")")}}))}},e.prototype.add=function(t){if(ew(t)){var e=this.createElement("pattern");return t.id=null==t.id?this.nextId++:t.id,e.setAttribute("id","zr"+this._zrId+"-pattern-"+t.id),e.setAttribute("x","0"),e.setAttribute("y","0"),e.setAttribute("patternUnits","userSpaceOnUse"),this.updateDom(t,e),this.addDom(e),e}},e.prototype.update=function(t){if(ew(t)){var e=this;this.doUpdate(t,(function(){var n=nw.get(t);e.updateDom(t,n)}))}},e.prototype.updateDom=function(t,e){var n=t.svgElement;if(n instanceof SVGElement)n.parentNode!==e&&(e.innerHTML="",e.appendChild(n),e.setAttribute("width",t.svgWidth+""),e.setAttribute("height",t.svgHeight+""));else{var i=void 0,r=e.getElementsByTagName("image");if(r.length){if(!t.image)return void e.removeChild(r[0]);i=r[0]}else t.image&&(i=this.createElement("image"));if(i){var o=void 0,a=t.image;if("string"==typeof a?o=a:a instanceof HTMLImageElement?o=a.src:a instanceof HTMLCanvasElement&&(o=a.toDataURL()),o){i.setAttribute("href",o),i.setAttribute("x","0"),i.setAttribute("y","0");var s=ro(o,i,{dirty:function(){}},(function(t){e.setAttribute("width",t.width+""),e.setAttribute("height",t.height+"")}));s&&s.width&&s.height&&(e.setAttribute("width",s.width+""),e.setAttribute("height",s.height+"")),e.appendChild(i)}}}var l="translate("+(t.x||0)+", "+(t.y||0)+") rotate("+(t.rotation||0)/Math.PI*180+") scale("+(t.scaleX||1)+", "+(t.scaleY||1)+")";e.setAttribute("patternTransform",l),nw.set(t,e)},e.prototype.markUsed=function(e){e.style&&(ew(e.style.fill)&&t.prototype.markDomUsed.call(this,nw.get(e.style.fill)),ew(e.style.stroke)&&t.prototype.markDomUsed.call(this,nw.get(e.style.stroke)))},e}(Kb);function rw(t){var e=t.__clipPaths;return e&&e.length>0}var ow=function(t){function e(e,n){var i=t.call(this,e,n,"clipPath","__clippath_in_use__")||this;return i._refGroups={},i._keyDuplicateCount={},i}return n(e,t),e.prototype.markAllUnused=function(){t.prototype.markAllUnused.call(this);var e=this._refGroups;for(var n in e)e.hasOwnProperty(n)&&this.markDomUnused(e[n]);this._keyDuplicateCount={}},e.prototype._getClipPathGroup=function(t,e){if(rw(t)){var n=t.__clipPaths,i=this._keyDuplicateCount,r=function(t){var e=[];if(t)for(var n=0;n0){var n=this.getDefs(!0),i=e[0],r=void 0,o=void 0;i._dom?(o=i._dom.getAttribute("id"),r=i._dom,n.contains(r)||n.appendChild(r)):(o="zr"+this._zrId+"-clip-"+this.nextId,++this.nextId,(r=this.createElement("clipPath")).setAttribute("id",o),n.appendChild(r),i._dom=r),this.getSvgProxy(i).brush(i);var a=this.getSvgElement(i);r.innerHTML="",r.appendChild(a),t.setAttribute("clip-path","url(#"+o+")"),e.length>1&&this.updateDom(r,e.slice(1))}else t&&t.setAttribute("clip-path","none")},e.prototype.markUsed=function(e){var n=this;e.__clipPaths&&P(e.__clipPaths,(function(e){e._dom&&t.prototype.markDomUsed.call(n,e._dom)}))},e.prototype.removeUnused=function(){t.prototype.removeUnused.call(this);var e={},n=this._refGroups;for(var i in n)if(n.hasOwnProperty(i)){var r=n[i];this.isDomUnused(r)?r.parentNode&&r.parentNode.removeChild(r):e[i]=r}this._refGroups=e},e}(Kb),aw=function(t){function e(e,n){var i=t.call(this,e,n,["filter"],"__filter_in_use__","_shadowDom")||this;return i._shadowDomMap={},i._shadowDomPool=[],i}return n(e,t),e.prototype._getFromPool=function(){var t=this._shadowDomPool.pop();if(!t){(t=this.createElement("filter")).setAttribute("id","zr"+this._zrId+"-shadow-"+this.nextId++);var e=this.createElement("feDropShadow");t.appendChild(e),this.addDom(t)}return t},e.prototype.update=function(t,e){if(function(t){return t&&(t.shadowBlur||t.shadowOffsetX||t.shadowOffsetY)}(e.style)){var n=function(t){var e=t.style,n=t.getGlobalScale();return[e.shadowColor,(e.shadowBlur||0).toFixed(2),(e.shadowOffsetX||0).toFixed(2),(e.shadowOffsetY||0).toFixed(2),n[0],n[1]].join(",")}(e),i=e._shadowDom=this._shadowDomMap[n];i||(i=this._getFromPool(),this._shadowDomMap[n]=i),this.updateDom(t,e,i)}else this.remove(t,e)},e.prototype.remove=function(t,e){null!=e._shadowDom&&(e._shadowDom=null,t.style.filter="")},e.prototype.updateDom=function(t,e,n){var i=n.children[0],r=e.style,o=e.getGlobalScale(),a=o[0],s=o[1];if(a&&s){var l=r.shadowOffsetX||0,u=r.shadowOffsetY||0,h=r.shadowBlur,c=Tb(r.shadowColor);i.setAttribute("dx",l/a+""),i.setAttribute("dy",u/s+""),i.setAttribute("flood-color",c.color),i.setAttribute("flood-opacity",c.opacity+"");var p=h/2/a+" "+h/2/s;i.setAttribute("stdDeviation",p),n.setAttribute("x","-100%"),n.setAttribute("y","-100%"),n.setAttribute("width","300%"),n.setAttribute("height","300%"),e._shadowDom=n;var d=n.getAttribute("id");t.style.filter="url(#"+d+")"}},e.prototype.removeUnused=function(){if(this.getDefs(!1)){var t=this._shadowDomPool,e=this._shadowDomMap;for(var n in e)e.hasOwnProperty(n)&&t.push(e[n]);this._shadowDomMap={}}},e}(Kb);function sw(t){return parseInt(t,10)}function lw(t){return t instanceof Ja?Yb:t instanceof is?Zb:t instanceof ts?qb:Yb}function uw(t,e){return e&&t&&e.parentNode!==t}function hw(t,e,n){if(uw(t,e)&&n){var i=n.nextSibling;i?t.insertBefore(e,i):t.appendChild(e)}}function cw(t,e){if(uw(t,e)){var n=t.firstChild;n?t.insertBefore(e,n):t.appendChild(e)}}function pw(t,e){e&&t&&e.parentNode===t&&t.removeChild(e)}function dw(t){return t.__svgEl}var fw=function(){function t(t,e,n,i){this.type="svg",this.refreshHover=gw("refreshHover"),this.pathToImage=gw("pathToImage"),this.configLayer=gw("configLayer"),this.root=t,this.storage=e,this._opts=n=I({},n||{});var r=Ib("svg");r.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns","http://www.w3.org/2000/svg"),r.setAttributeNS("http://www.w3.org/2000/xmlns/","xmlns:xlink","http://www.w3.org/1999/xlink"),r.setAttribute("version","1.1"),r.setAttribute("baseProfile","full"),r.style.cssText="user-select:none;position:absolute;left:0;top:0;";var o=Ib("g");r.appendChild(o);var a=Ib("g");r.appendChild(a),this._gradientManager=new tw(i,a),this._patternManager=new iw(i,a),this._clipPathManager=new ow(i,a),this._shadowManager=new aw(i,a);var s=document.createElement("div");s.style.cssText="overflow:hidden;position:relative",this._svgDom=r,this._svgRoot=a,this._backgroundRoot=o,this._viewport=s,t.appendChild(s),s.appendChild(r),this.resize(n.width,n.height),this._visibleList=[]}return t.prototype.getType=function(){return"svg"},t.prototype.getViewportRoot=function(){return this._viewport},t.prototype.getSvgDom=function(){return this._svgDom},t.prototype.getSvgRoot=function(){return this._svgRoot},t.prototype.getViewportRootOffset=function(){var t=this.getViewportRoot();if(t)return{offsetLeft:t.offsetLeft||0,offsetTop:t.offsetTop||0}},t.prototype.refresh=function(){var t=this.storage.getDisplayList(!0);this._paintList(t)},t.prototype.setBackgroundColor=function(t){this._backgroundRoot&&this._backgroundNode&&this._backgroundRoot.removeChild(this._backgroundNode);var e=Ib("rect");e.setAttribute("width",this.getWidth()),e.setAttribute("height",this.getHeight()),e.setAttribute("x",0),e.setAttribute("y",0),e.setAttribute("id",0);var n=Tb(t),i=n.color,r=n.opacity;e.setAttribute("fill",i),e.setAttribute("fill-opacity",r),this._backgroundRoot.appendChild(e),this._backgroundNode=e},t.prototype.createSVGElement=function(t){return Ib(t)},t.prototype.paintOne=function(t){var e=lw(t);return e&&e.brush(t),dw(t)},t.prototype._paintList=function(t){var e=this._gradientManager,n=this._patternManager,i=this._clipPathManager,r=this._shadowManager;e.markAllUnused(),n.markAllUnused(),i.markAllUnused(),r.markAllUnused();for(var o=this._svgRoot,a=this._visibleList,s=t.length,l=[],u=0;u\n\r<"))},t}();function gw(t){return function(){b('In SVG mode painter not support method "'+t+'"')}}function yw(){return!1}function vw(t,e,n){var i=C(),r=e.getWidth(),o=e.getHeight(),a=i.style;return a&&(a.position="absolute",a.left="0",a.top="0",a.width=r+"px",a.height=o+"px",i.setAttribute("data-zr-dom-id",t)),i.width=r*n,i.height=o*n,i}var mw=function(t){function e(e,n,i){var r,o=t.call(this)||this;o.motionBlur=!1,o.lastFrameAlpha=.7,o.dpr=1,o.virtual=!1,o.config={},o.incremental=!1,o.zlevel=0,o.maxRepaintRectCount=5,o.__dirty=!0,o.__firstTimePaint=!0,o.__used=!1,o.__drawIndex=0,o.__startIndex=0,o.__endIndex=0,o.__prevStartIndex=null,o.__prevEndIndex=null,i=i||En,"string"==typeof e?r=vw(e,n,i):X(e)&&(e=(r=e).id),o.id=e,o.dom=r;var a=r.style;return a&&(r.onselectstart=yw,a.webkitUserSelect="none",a.userSelect="none",a.webkitTapHighlightColor="rgba(0,0,0,0)",a["-webkit-touch-callout"]="none",a.padding="0",a.margin="0",a.borderWidth="0"),o.domBack=null,o.ctxBack=null,o.painter=n,o.config=null,o.dpr=i,o}return n(e,t),e.prototype.getElementCount=function(){return this.__endIndex-this.__startIndex},e.prototype.afterBrush=function(){this.__prevStartIndex=this.__startIndex,this.__prevEndIndex=this.__endIndex},e.prototype.initContext=function(){this.ctx=this.dom.getContext("2d"),this.ctx.dpr=this.dpr},e.prototype.setUnpainted=function(){this.__firstTimePaint=!0},e.prototype.createBackBuffer=function(){var t=this.dpr;this.domBack=vw("back-"+this.id,this.painter,t),this.ctxBack=this.domBack.getContext("2d"),1!==t&&this.ctxBack.scale(t,t)},e.prototype.createRepaintRects=function(t,e,n,i){if(this.__firstTimePaint)return this.__firstTimePaint=!1,null;var r,o=[],a=this.maxRepaintRectCount,s=!1,l=new yi(0,0,0,0);function u(t){if(t.isFinite()&&!t.isZero())if(0===o.length){(e=new yi(0,0,0,0)).copy(t),o.push(e)}else{for(var e,n=!1,i=1/0,r=0,u=0;u=a)}}for(var h=this.__startIndex;h15)break}n.prevElClipPaths&&u.restore()};if(p)if(0===p.length)s=l.__endIndex;else for(var x=d.dpr,b=0;b0&&t>i[0]){for(s=0;st);s++);a=n[i[s]]}if(i.splice(s+1,0,t),n[t]=e,!e.virtual)if(a){var l=a.dom;l.nextSibling?o.insertBefore(e.dom,l.nextSibling):o.appendChild(e.dom)}else o.firstChild?o.insertBefore(e.dom,o.firstChild):o.appendChild(e.dom);e.__painter=this}else b("Layer of zlevel "+t+" is not valid")},t.prototype.eachLayer=function(t,e){for(var n=this._zlevelList,i=0;i0?bw:0),this._needsManuallyCompositing),u.__builtin__||b("ZLevel "+l+" has been used by unkown layer "+u.id),u!==o&&(u.__used=!0,u.__startIndex!==r&&(u.__dirty=!0),u.__startIndex=r,u.incremental?u.__drawIndex=-1:u.__drawIndex=r,e(r),o=u),1&s.__dirty&&!s.__inHover&&(u.__dirty=!0,u.incremental&&u.__drawIndex<0&&(u.__drawIndex=r))}e(r),this.eachBuiltinLayer((function(t,e){!t.__used&&t.getElementCount()>0&&(t.__dirty=!0,t.__startIndex=t.__endIndex=t.__drawIndex=0),t.__dirty&&t.__drawIndex<0&&(t.__drawIndex=t.__startIndex)}))},t.prototype.clear=function(){return this.eachBuiltinLayer(this._clearLayer),this},t.prototype._clearLayer=function(t){t.clear()},t.prototype.setBackgroundColor=function(t){this._backgroundColor=t,P(this._layers,(function(t){t.setUnpainted()}))},t.prototype.configLayer=function(t,e){if(e){var n=this._layerConfig;n[t]?S(n[t],e,!0):n[t]=e;for(var i=0;i-1&&(s.style.stroke=s.style.fill,s.style.fill="#fff",s.style.lineWidth=2),e},e.type="series.line",e.dependencies=["grid","polar"],e.defaultOption={zlevel:0,z:3,coordinateSystem:"cartesian2d",legendHoverLink:!0,clip:!0,label:{position:"top"},endLabel:{show:!1,valueAnimation:!0,distance:8},lineStyle:{width:2,type:"solid"},emphasis:{scale:!0,lineStyle:{width:"bolder"}},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:4,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:"clone"}},e}(Of);function Iw(t,e){var n=t.mapDimensionsAll("defaultedLabel"),i=n.length;if(1===i){var r=Od(t,e,n[0]);return null!=r?r+"":null}if(i){for(var o=[],a=0;a=0&&i.push(e[o])}return i.join(" ")}var Cw=function(t){function e(e,n,i,r){var o=t.call(this)||this;return o.updateData(e,n,i,r),o}return n(e,t),e.prototype._createSymbol=function(t,e,n,i,r){this.removeAll();var o=Qg(t,-1,-1,2,2,null,r);o.attr({z2:100,culling:!0,scaleX:i[0]/2,scaleY:i[1]/2}),o.drift=Dw,this._symbolType=t,this.add(o)},e.prototype.stopSymbolAnimation=function(t){this.childAt(0).stopAnimation(null,t)},e.prototype.getSymbolType=function(){return this._symbolType},e.prototype.getSymbolPath=function(){return this.childAt(0)},e.prototype.highlight=function(){Js(this.childAt(0))},e.prototype.downplay=function(){Qs(this.childAt(0))},e.prototype.setZ=function(t,e){var n=this.childAt(0);n.zlevel=t,n.z=e},e.prototype.setDraggable=function(t){var e=this.childAt(0);e.draggable=t,e.cursor=t?"move":e.cursor},e.prototype.updateData=function(t,n,i,r){this.silent=!1;var o=t.getItemVisual(n,"symbol")||"circle",a=t.hostModel,s=e.getSymbolSize(t,n),l=o!==this._symbolType,u=r&&r.disableAnimation;if(l){var h=t.getItemVisual(n,"symbolKeepAspect");this._createSymbol(o,t,n,s,h)}else{(p=this.childAt(0)).silent=!1;var c={scaleX:s[0]/2,scaleY:s[1]/2};u?p.attr(c):zu(p,c,a,n),Hu(p)}if(this._updateCommon(t,n,s,i,r),l){var p=this.childAt(0);if(!u){c={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:p.style.opacity}};p.scaleX=p.scaleY=0,p.style.opacity=0,Eu(p,c,a,n)}}u&&this.childAt(0).stopAnimation("remove"),this._seriesModel=a},e.prototype._updateCommon=function(t,e,n,i,r){var o,a,s,l,u,h,c,p,d=this.childAt(0),f=t.hostModel;if(i&&(o=i.emphasisItemStyle,a=i.blurItemStyle,s=i.selectItemStyle,l=i.focus,u=i.blurScope,h=i.labelStatesModels,c=i.hoverScale,p=i.cursorStyle),!i||t.hasItemOption){var g=i&&i.itemModel?i.itemModel:t.getItemModel(e),y=g.getModel("emphasis");o=y.getModel("itemStyle").getItemStyle(),s=g.getModel(["select","itemStyle"]).getItemStyle(),a=g.getModel(["blur","itemStyle"]).getItemStyle(),l=y.get("focus"),u=y.get("blurScope"),h=xh(g),c=y.getShallow("scale"),p=g.getShallow("cursor")}var v=t.getItemVisual(e,"symbolRotate");d.attr("rotation",(v||0)*Math.PI/180||0);var m=ey(t.getItemVisual(e,"symbolOffset"),n);m&&(d.x=m[0],d.y=m[1]),p&&d.attr("cursor",p);var _=t.getItemVisual(e,"style"),x=_.fill;if(d instanceof is){var b=d.style;d.useStyle(I({image:b.image,x:b.x,y:b.y,width:b.width,height:b.height},_))}else d.__isEmptyBrush?d.useStyle(I({},_)):d.useStyle(_),d.style.decal=null,d.setColor(x,r&&r.symbolInnerColor),d.style.strokeNoScale=!0;var w=t.getItemVisual(e,"liftZ"),S=this._z2;null!=w?null==S&&(this._z2=d.z2,d.z2+=w):null!=S&&(d.z2=S,this._z2=null);var M=r&&r.useNameLabel;_h(d,h,{labelFetcher:f,labelDataIndex:e,defaultText:function(e){return M?t.getName(e):Iw(t,e)},inheritColor:x,defaultOpacity:_.opacity}),this._sizeX=n[0]/2,this._sizeY=n[1]/2;var T=d.ensureState("emphasis");if(T.style=o,d.ensureState("select").style=s,d.ensureState("blur").style=a,c){var C=Math.max(1.1,3/this._sizeY);T.scaleX=this._sizeX*C,T.scaleY=this._sizeY*C}this.setSymbolScale(1),cl(this,l,u)},e.prototype.setSymbolScale=function(t){this.scaleX=this.scaleY=t},e.prototype.fadeOut=function(t,e){var n=this.childAt(0),i=this._seriesModel,r=ws(this).dataIndex,o=e&&e.animation;if(this.silent=n.silent=!0,e&&e.fadeLabel){var a=n.getTextContent();a&&Vu(a,{style:{opacity:0}},i,{dataIndex:r,removeOpt:o,cb:function(){n.removeTextContent()}})}else n.removeTextContent();Vu(n,{style:{opacity:0},scaleX:0,scaleY:0},i,{dataIndex:r,cb:t,removeOpt:o})},e.getSymbolSize=function(t,e){return ty(t.getItemVisual(e,"symbolSize"))},e}(Bi);function Dw(t,e){this.parent.drift(t,e)}function Aw(t,e,n,i){return e&&!isNaN(e[0])&&!isNaN(e[1])&&!(i.isIgnore&&i.isIgnore(n))&&!(i.clipShape&&!i.clipShape.contain(e[0],e[1]))&&"none"!==t.getItemVisual(n,"symbol")}function kw(t){return null==t||X(t)||(t={isIgnore:t}),t||{}}function Lw(t){var e=t.hostModel,n=e.getModel("emphasis");return{emphasisItemStyle:n.getModel("itemStyle").getItemStyle(),blurItemStyle:e.getModel(["blur","itemStyle"]).getItemStyle(),selectItemStyle:e.getModel(["select","itemStyle"]).getItemStyle(),focus:n.get("focus"),blurScope:n.get("blurScope"),hoverScale:n.get("scale"),labelStatesModels:xh(e),cursorStyle:e.get("cursor")}}var Pw=function(){function t(t){this.group=new Bi,this._SymbolCtor=t||Cw}return t.prototype.updateData=function(t,e){e=kw(e);var n=this.group,i=t.hostModel,r=this._data,o=this._SymbolCtor,a=e.disableAnimation,s=Lw(t),l={disableAnimation:a},u=e.getSymbolPoint||function(e){return t.getItemLayout(e)};r||n.removeAll(),t.diff(r).add((function(i){var r=u(i);if(Aw(t,r,i,e)){var a=new o(t,i,s,l);a.setPosition(r),t.setItemGraphicEl(i,a),n.add(a)}})).update((function(h,c){var p=r.getItemGraphicEl(c),d=u(h);if(Aw(t,d,h,e)){var f=t.getItemVisual(h,"symbol")||"circle",g=p&&p.getSymbolType&&p.getSymbolType();if(!p||g&&g!==f)n.remove(p),(p=new o(t,h,s,l)).setPosition(d);else{p.updateData(t,h,s,l);var y={x:d[0],y:d[1]};a?p.attr(y):zu(p,y,i)}n.add(p),t.setItemGraphicEl(h,p)}else n.remove(p)})).remove((function(t){var e=r.getItemGraphicEl(t);e&&e.fadeOut((function(){n.remove(e)}))})).execute(),this._getSymbolPoint=u,this._data=t},t.prototype.isPersistent=function(){return!0},t.prototype.updateLayout=function(){var t=this,e=this._data;e&&e.eachItemGraphicEl((function(e,n){var i=t._getSymbolPoint(n);e.setPosition(i),e.markRedraw()}))},t.prototype.incrementalPrepareUpdate=function(t){this._seriesScope=Lw(t),this._data=null,this.group.removeAll()},t.prototype.incrementalUpdate=function(t,e,n){function i(t){t.isGroup||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}n=kw(n);for(var r=t.start;r0?n=i[0]:i[1]<0&&(n=i[1]);return n}(r,n),a=i.dim,s=r.dim,l=e.mapDimension(s),u=e.mapDimension(a),h="x"===s||"radius"===s?1:0,c=O(t.dimensions,(function(t){return e.mapDimension(t)})),p=!1,d=e.getCalculationInfo("stackResultDimension");return f_(e,c[0])&&(p=!0,c[0]=d),f_(e,c[1])&&(p=!0,c[1]=d),{dataDimsForPoint:c,valueStart:o,valueAxisDim:s,baseAxisDim:a,stacked:!!p,valueDim:l,baseDim:u,baseDataOffset:h,stackedOverDimension:e.getCalculationInfo("stackedOverDimension")}}function Rw(t,e,n,i){var r=NaN;t.stacked&&(r=n.get(n.getCalculationInfo("stackedOverDimension"),i)),isNaN(r)&&(r=t.valueStart);var o=t.baseDataOffset,a=[];return a[o]=n.get(t.baseDim,i),a[1-o]=r,e.dataToPoint(a)}var Nw="undefined"!=typeof Float32Array,zw=Nw?Float32Array:Array;function Ew(t){return G(t)?Nw?new Float32Array(t):t:new zw(t)}var Bw=Math.min,Vw=Math.max;function Gw(t,e){return isNaN(t)||isNaN(e)}function Fw(t,e,n,i,r,o,a,s,l){for(var u,h,c,p,d,f,g=n,y=0;y=r||g<0)break;if(Gw(v,m)){if(l){g+=o;continue}break}if(g===n)t[o>0?"moveTo":"lineTo"](v,m),c=v,p=m;else{var _=v-u,x=m-h;if(_*_+x*x<.5){g+=o;continue}if(a>0){var b=g+o,w=e[2*b],S=e[2*b+1],M=y+1;if(l)for(;Gw(w,S)&&M=i||Gw(w,S))d=v,f=m;else{T=w-u,C=S-h;var k=v-u,L=w-v,P=m-h,O=S-m,R=void 0,N=void 0;"x"===s?(R=Math.abs(k),N=Math.abs(L),d=v-R*a,f=m,D=v+R*a,A=m):"y"===s?(R=Math.abs(P),N=Math.abs(O),d=v,f=m-R*a,D=v,A=m+R*a):(R=Math.sqrt(k*k+P*P),d=v-T*a*(1-(I=(N=Math.sqrt(L*L+O*O))/(N+R))),f=m-C*a*(1-I),A=m+C*a*I,D=Bw(D=v+T*a*I,Vw(w,v)),A=Bw(A,Vw(S,m)),D=Vw(D,Bw(w,v)),f=m-(C=(A=Vw(A,Bw(S,m)))-m)*R/N,d=Bw(d=v-(T=D-v)*R/N,Vw(u,v)),f=Bw(f,Vw(h,m)),D=v+(T=v-(d=Vw(d,Bw(u,v))))*N/R,A=m+(C=m-(f=Vw(f,Bw(h,m))))*N/R)}t.bezierCurveTo(c,p,d,f,v,m),c=D,p=A}else t.lineTo(v,m)}u=v,h=m,g+=o}return y}var Hw=function(){this.smooth=0,this.smoothConstraint=!0},Ww=function(t){function e(e){var n=t.call(this,e)||this;return n.type="ec-polyline",n}return n(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new Hw},e.prototype.buildPath=function(t,e){var n=e.points,i=0,r=n.length/2;if(e.connectNulls){for(;r>0&&Gw(n[2*r-2],n[2*r-1]);r--);for(;i=0){var y=a?(h-i)*g+i:(u-n)*g+n;return a?[t,y]:[y,t]}n=u,i=h;break;case o.C:u=r[l++],h=r[l++],c=r[l++],p=r[l++],d=r[l++],f=r[l++];var v=a?Fo(n,u,c,d,t,s):Fo(i,h,p,f,t,s);if(v>0)for(var m=0;m=0){y=a?Vo(i,h,p,f,_):Vo(n,u,c,d,_);return a?[t,y]:[y,t]}}n=d,i=f}}},e}(Ja),Uw=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e}(Hw),Xw=function(t){function e(e){var n=t.call(this,e)||this;return n.type="ec-polygon",n}return n(e,t),e.prototype.getDefaultShape=function(){return new Uw},e.prototype.buildPath=function(t,e){var n=e.points,i=e.stackedOnPoints,r=0,o=n.length/2,a=e.smoothMonotone;if(e.connectNulls){for(;o>0&&Gw(n[2*o-2],n[2*o-1]);o--);for(;ri)return!1;return!0}(o,e))){var a=e.mapDimension(o.dim),s={};return P(o.getViewLabels(),(function(t){var e=o.scale.getRawOrdinalNumber(t.tickValue);s[e]=1})),function(t){return!s.hasOwnProperty(e.get(a,t))}}}}function nS(t,e){return[t[2*e],t[2*e+1]]}function iS(t){if(t.get(["endLabel","show"]))return!0;for(var e=0;e=0;o--){var a=t.getDimensionInfo(n[o].dimension);if("x"===(i=a&&a.coordDim)||"y"===i){r=n[o];break}}if(r){var s=e.getAxis(i),l=s.scale.getExtent(),u=O(r.stops,(function(t){var e=s.toGlobalCoord(s.dataToCoord(t.value));return isNaN(e)||isFinite(e)||(e=s.toGlobalCoord(s.dataToCoord(l[+(e<0)]))),{offset:0,coord:e,color:t.color}})),h=u.length,c=r.outerColors.slice();h&&u[0].coord>u[h-1].coord&&(u.reverse(),c.reverse());var p=u[0].coord-10,d=u[h-1].coord+10,f=d-p;if(f<.001)return"transparent";P(u,(function(t){t.offset=(t.coord-p)/f})),u.push({offset:h?u[h-1].offset:.5,color:c[1]||"transparent"}),u.unshift({offset:h?u[0].offset:.5,color:c[0]||"transparent"});var g=new Mu(0,0,0,0,u,!0);return g[i]=p,g[i+"2"]=d,g}}}(a,r)||a.getVisual("style")[a.getVisual("drawType")];d&&c.type===r.type&&I===this._step?(v&&!f?f=this._newPolygon(u,x):f&&!v&&(g.remove(f),f=this._polygon=null),h||this._initOrUpdateEndLabel(t,r,Gc(C)),g.setClipPath(rS(this,r,!1,t)),b&&p.updateData(a,{isIgnore:w,clipShape:M,disableAnimation:!0,getSymbolPoint:function(t){return[u[2*t],u[2*t+1]]}}),Kw(this._stackedOnPoints,x)&&Kw(this._points,u)||(y?this._doUpdateAnimation(a,x,r,n,I,m):(I&&(u=tS(u,r,I),x&&(x=tS(x,r,I))),d.setShape({points:u}),f&&f.setShape({points:u,stackedOnPoints:x})))):(b&&p.updateData(a,{isIgnore:w,clipShape:M,disableAnimation:!0,getSymbolPoint:function(t){return[u[2*t],u[2*t+1]]}}),y&&this._initSymbolLabelAnimation(a,r,M),I&&(u=tS(u,r,I),x&&(x=tS(x,r,I))),d=this._newPolyline(u),v&&(f=this._newPolygon(u,x)),h||this._initOrUpdateEndLabel(t,r,Gc(C)),g.setClipPath(rS(this,r,!0,t)));var D=t.get(["emphasis","focus"]),A=t.get(["emphasis","blurScope"]);(d.useStyle(T(s.getLineStyle(),{fill:"none",stroke:C,lineJoin:"bevel"})),gl(d,t,"lineStyle"),d.style.lineWidth>0&&"bolder"===t.get(["emphasis","lineStyle","width"]))&&(d.getState("emphasis").style.lineWidth=+d.style.lineWidth+1);ws(d).seriesIndex=t.seriesIndex,cl(d,D,A);var k=Qw(t.get("smooth")),L=t.get("smoothMonotone"),R=t.get("connectNulls");if(d.setShape({smooth:k,smoothMonotone:L,connectNulls:R}),f){var N=a.getCalculationInfo("stackedOnSeries"),z=0;f.useStyle(T(l.getAreaStyle(),{fill:C,opacity:.7,lineJoin:"bevel",decal:a.getVisual("style").decal})),N&&(z=Qw(N.get("smooth"))),f.setShape({smooth:k,stackedOnSmooth:z,smoothMonotone:L,connectNulls:R}),gl(f,t,"areaStyle"),ws(f).seriesIndex=t.seriesIndex,cl(f,D,A)}var E=function(t){i._changePolyState(t)};a.eachItemGraphicEl((function(t){t&&(t.onHoverStateChange=E)})),this._polyline.onHoverStateChange=E,this._data=a,this._coordSys=r,this._stackedOnPoints=x,this._points=u,this._step=I,this._valueOrigin=m},e.prototype.dispose=function(){},e.prototype.highlight=function(t,e,n,i){var r=t.getData(),o=Pr(r,i);if(this._changePolyState("emphasis"),!(o instanceof Array)&&null!=o&&o>=0){var a=r.getLayout("points"),s=r.getItemGraphicEl(o);if(!s){var l=a[2*o],u=a[2*o+1];if(isNaN(l)||isNaN(u))return;if(this._clipShapeForSymbol&&!this._clipShapeForSymbol.contain(l,u))return;var h=t.get("zlevel"),c=t.get("z");(s=new Cw(r,o)).x=l,s.y=u,s.setZ(h,c);var p=s.getSymbolPath().getTextContent();p&&(p.zlevel=h,p.z=c,p.z2=this._polyline.z2+1),s.__temp=!0,r.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else Xf.prototype.highlight.call(this,t,e,n,i)},e.prototype.downplay=function(t,e,n,i){var r=t.getData(),o=Pr(r,i);if(this._changePolyState("normal"),null!=o&&o>=0){var a=r.getItemGraphicEl(o);a&&(a.__temp?(r.setItemGraphicEl(o,null),this.group.remove(a)):a.downplay())}else Xf.prototype.downplay.call(this,t,e,n,i)},e.prototype._changePolyState=function(t){var e=this._polygon;Zs(this._polyline,t),e&&Zs(e,t)},e.prototype._newPolyline=function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new Ww({shape:{points:t},segmentIgnoreThreshold:2,z2:10}),this._lineGroup.add(e),this._polyline=e,e},e.prototype._newPolygon=function(t,e){var n=this._polygon;return n&&this._lineGroup.remove(n),n=new Xw({shape:{points:t,stackedOnPoints:e},segmentIgnoreThreshold:2}),this._lineGroup.add(n),this._polygon=n,n},e.prototype._initSymbolLabelAnimation=function(t,e,n){var i,r,o=e.getBaseAxis(),a=o.inverse;"cartesian2d"===e.type?(i=o.isHorizontal(),r=!1):"polar"===e.type&&(i="angle"===o.dim,r=!0);var s=t.hostModel,l=s.get("animationDuration");"function"==typeof l&&(l=l(null));var u=s.get("animationDelay")||0,h="function"==typeof u?u(null):u;t.eachItemGraphicEl((function(t,o){var s=t;if(s){var c=[t.x,t.y],p=void 0,d=void 0,f=void 0;if(n)if(r){var g=n,y=e.pointToCoord(c);i?(p=g.startAngle,d=g.endAngle,f=-y[1]/180*Math.PI):(p=g.r0,d=g.r,f=y[0])}else{var v=n;i?(p=v.x,d=v.x+v.width,f=t.x):(p=v.y+v.height,d=v.y,f=t.y)}var m=d===p?0:(f-p)/(d-p);a&&(m=1-m);var _="function"==typeof u?u(o):l*m+h,x=s.getSymbolPath(),b=x.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:_}),b&&b.animateFrom({style:{opacity:0}},{duration:300,delay:_}),x.disableLabelAnimation=!0}}))},e.prototype._initOrUpdateEndLabel=function(t,e,n){var i=t.getModel("endLabel");if(iS(t)){var r=t.getData(),o=this._polyline,a=this._endLabel;a||((a=this._endLabel=new ds({z2:200})).ignoreClip=!0,o.setTextContent(this._endLabel),o.disableLabelAnimation=!0);var s=function(t){for(var e,n,i=t.length/2;i>0&&(e=t[2*i-2],n=t[2*i-1],isNaN(e)||isNaN(n));i--);return i-1}(r.getLayout("points"));s>=0&&(_h(o,xh(t,"endLabel"),{inheritColor:n,labelFetcher:t,labelDataIndex:s,defaultText:function(t,e,n){return null!=n?Tw(r,n):Iw(r,t)},enableTextSetter:!0},function(t,e){var n=e.getBaseAxis(),i=n.isHorizontal(),r=n.inverse,o=i?r?"right":"left":"center",a=i?"middle":r?"top":"bottom";return{normal:{align:t.get("align")||o,verticalAlign:t.get("verticalAlign")||a}}}(i,e)),o.textConfig.position=null)}else this._endLabel&&(this._polyline.removeTextContent(),this._endLabel=null)},e.prototype._endLabelOnDuring=function(t,e,n,i,r,o,a){var s=this._endLabel,l=this._polyline;if(s){t<1&&null==i.originalX&&(i.originalX=s.x,i.originalY=s.y);var u=n.getLayout("points"),h=n.hostModel,c=h.get("connectNulls"),p=o.get("precision"),d=o.get("distance")||0,f=a.getBaseAxis(),g=f.isHorizontal(),y=f.inverse,v=e.shape,m=y?g?v.x:v.y+v.height:g?v.x+v.width:v.y,_=(g?d:0)*(y?-1:1),x=(g?0:-d)*(y?-1:1),b=g?"x":"y",w=function(t,e,n){for(var i,r,o=t.length/2,a="x"===n?0:1,s=0,l=-1,u=0;u=e||i>=e&&r<=e){l=u;break}s=u,i=r}else i=r;return{range:[s,l],t:(e-i)/(r-i)}}(u,m,b),S=w.range,M=S[1]-S[0],I=void 0;if(M>=1){if(M>1&&!c){var T=nS(u,S[0]);s.attr({x:T[0]+_,y:T[1]+x}),r&&(I=h.getRawValue(S[0]))}else{(T=l.getPointOn(m,b))&&s.attr({x:T[0]+_,y:T[1]+x});var C=h.getRawValue(S[0]),D=h.getRawValue(S[1]);r&&(I=Hr(n,p,C,D,w.t))}i.lastFrameIndex=S[0]}else{var A=1===t||i.lastFrameIndex>0?S[0]:0;T=nS(u,A);r&&(I=h.getRawValue(A)),s.attr({x:T[0]+_,y:T[1]+x})}r&&Dh(s).setLabelText(I)}},e.prototype._doUpdateAnimation=function(t,e,n,i,r,o){var a=this._polyline,s=this._polygon,l=t.hostModel,u=function(t,e,n,i,r,o,a,s){for(var l=function(t,e){var n=[];return e.diff(t).add((function(t){n.push({cmd:"+",idx:t})})).update((function(t,e){n.push({cmd:"=",idx:e,idx1:t})})).remove((function(t){n.push({cmd:"-",idx:t})})).execute(),n}(t,e),u=[],h=[],c=[],p=[],d=[],f=[],g=[],y=Ow(r,e,a),v=t.getLayout("points")||[],m=e.getLayout("points")||[],_=0;_3e3||s&&Jw(c,d)>3e3)return a.setShape({points:p}),void(s&&s.setShape({points:p,stackedOnPoints:d}));a.shape.__points=u.current,a.shape.points=h;var f={shape:{points:p}};u.current!==h&&(f.shape.__points=u.next),a.stopAnimation(),zu(a,f,l),s&&(s.setShape({points:h,stackedOnPoints:c}),s.stopAnimation(),zu(s,{shape:{stackedOnPoints:d}},l),a.shape.points!==s.shape.points&&(s.shape.points=a.shape.points));for(var g=[],y=u.status,v=0;ve&&(e=t[n]);return isFinite(e)?e:NaN},min:function(t){for(var e=1/0,n=0;n10&&"cartesian2d"===o.type&&r){var s=o.getBaseAxis(),l=o.getOtherAxis(s),u=s.getExtent(),h=n.getDevicePixelRatio(),c=Math.abs(u[1]-u[0])*(h||1),p=Math.round(a/c);if(p>1){"lttb"===r&&t.setData(i.lttbDownSample(i.mapDimension(l.dim),1/p));var d=void 0;"string"==typeof r?d=sS[r]:"function"==typeof r&&(d=r),d&&t.setData(i.downSample(i.mapDimension(l.dim),1/p,d,lS))}}}}}var hS=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.getInitialData=function(t,e){return y_(null,this,{useEncodeDefaulter:!0})},e.prototype.getMarkerPosition=function(t){var e=this.coordinateSystem;if(e&&e.clampData){var n=e.dataToPoint(e.clampData(t)),i=this.getData(),r=i.getLayout("offset"),o=i.getLayout("size");return n[e.getBaseAxis().isHorizontal()?0:1]+=r+o/2,n}return[NaN,NaN]},e.type="series.__base_bar__",e.defaultOption={zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod"},e}(Of);Of.registerClass(hS);var cS=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.getInitialData=function(){return y_(null,this,{useEncodeDefaulter:!0,createInvertedIndices:!!this.get("realtimeSort",!0)||null})},e.prototype.getProgressive=function(){return!!this.get("large")&&this.get("progressive")},e.prototype.getProgressiveThreshold=function(){var t=this.get("progressiveThreshold"),e=this.get("largeThreshold");return e>t&&(t=e),t},e.prototype.brushSelector=function(t,e,n){return n.rect(e.getItemLayout(t))},e.type="series.bar",e.dependencies=["grid","polar"],e.defaultOption=Xh(hS.defaultOption,{clip:!0,roundCap:!1,showBackground:!1,backgroundStyle:{color:"rgba(180, 180, 180, 0.2)",borderColor:null,borderWidth:0,borderType:"solid",borderRadius:0,shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,opacity:1},select:{itemStyle:{borderColor:"#212121"}},realtimeSort:!1}),e}(hS),pS=function(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0},dS=function(t){function e(e){var n=t.call(this,e)||this;return n.type="sausage",n}return n(e,t),e.prototype.getDefaultShape=function(){return new pS},e.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r0||0,0),o=Math.max(e.r,0),a=.5*(o-r),s=r+a,l=e.startAngle,u=e.endAngle,h=e.clockwise,c=Math.cos(l),p=Math.sin(l),d=Math.cos(u),f=Math.sin(u);(h?u-l<2*Math.PI:l-u<2*Math.PI)&&(t.moveTo(c*r+n,p*r+i),t.arc(c*s+n,p*s+i,a,-Math.PI+l,l,!h)),t.arc(n,i,o,l,u,!h),t.moveTo(d*o+n,f*o+i),t.arc(d*s+n,f*s+i,a,u-2*Math.PI,u-Math.PI,!h),0!==r&&(t.arc(n,i,r,u,l,h),t.moveTo(c*r+n,f*r+i)),t.closePath()},e}(Ja);function fS(t,e,n){return e*Math.sin(t)*(n?-1:1)}function gS(t,e,n){return e*Math.cos(t)*(n?1:-1)}var yS=[0,0],vS=Math.max,mS=Math.min;var _S=function(t){function e(){var n=t.call(this)||this;return n.type=e.type,n._isFirstFrame=!0,n}return n(e,t),e.prototype.render=function(t,e,n,i){this._model=t,this._removeOnRenderedListener(n),this._updateDrawMode(t);var r=t.get("coordinateSystem");("cartesian2d"===r||"polar"===r)&&(this._isLargeDraw?this._renderLarge(t,e,n):this._renderNormal(t,e,n,i))},e.prototype.incrementalPrepareRender=function(t){this._clear(),this._updateDrawMode(t),this._updateLargeClip(t)},e.prototype.incrementalRender=function(t,e){this._incrementalRenderLarge(t,e)},e.prototype._updateDrawMode=function(t){var e=t.pipelineContext.large;null!=this._isLargeDraw&&e===this._isLargeDraw||(this._isLargeDraw=e,this._clear())},e.prototype._renderNormal=function(t,e,n,i){var r,o=this.group,a=t.getData(),s=this._data,l=t.coordinateSystem,u=l.getBaseAxis();"cartesian2d"===l.type?r=u.isHorizontal():"polar"===l.type&&(r="angle"===u.dim);var h=t.isAnimationEnabled()?t:null,c=function(t,e){var n=t.get("realtimeSort",!0),i=e.getBaseAxis();0;if(n&&"category"===i.type&&"cartesian2d"===e.type)return{baseAxis:i,otherAxis:e.getOtherAxis(i)}}(t,l);c&&this._enableRealtimeSort(c,a,n);var p=t.get("clip",!0)||c,d=function(t,e){var n=t.getArea&&t.getArea();if(qw(t,"cartesian2d")){var i=t.getBaseAxis();if("category"!==i.type||!i.onBand){var r=e.getLayout("bandWidth");i.isHorizontal()?(n.x-=r,n.width+=2*r):(n.y-=r,n.height+=2*r)}}return n}(l,a);o.removeClipPath();var f=t.get("roundCap",!0),g=t.get("showBackground",!0),y=t.getModel("backgroundStyle"),v=y.get("borderRadius")||0,m=[],_=this._backgroundEls,x=i&&i.isInitSort,b=i&&"changeAxisOrder"===i.type;function w(t){var e=CS[l.type](a,t),n=function(t,e,n){return new("polar"===t.type?ru:hs)({shape:RS(e,n,t),silent:!0,z2:0})}(l,r,e);return n.useStyle(y.getItemStyle()),"cartesian2d"===l.type&&n.setShape("r",v),m[t]=n,n}a.diff(s).add((function(e){var n=a.getItemModel(e),i=CS[l.type](a,e,n);if(g&&w(e),a.hasValue(e)&&TS[l.type](i)){var s=!1;p&&(s=xS[l.type](d,i));var y=bS[l.type](t,a,e,i,r,h,u.model,!1,f);AS(y,a,e,n,i,t,r,"polar"===l.type),x?y.attr({shape:i}):c?wS(c,h,y,i,e,r,!1,!1):Eu(y,{shape:i},t,e),a.setItemGraphicEl(e,y),o.add(y),y.ignore=s}})).update((function(e,n){var i=a.getItemModel(e),S=CS[l.type](a,e,i);if(g){var M=void 0;0===_.length?M=w(n):((M=_[n]).useStyle(y.getItemStyle()),"cartesian2d"===l.type&&M.setShape("r",v),m[e]=M);var I=CS[l.type](a,e);zu(M,{shape:RS(r,I,l)},h,e)}var T=s.getItemGraphicEl(n);if(a.hasValue(e)&&TS[l.type](S)){var C=!1;p&&(C=xS[l.type](d,S))&&o.remove(T),T?Hu(T):T=bS[l.type](t,a,e,S,r,h,u.model,!!T,f),b||AS(T,a,e,i,S,t,r,"polar"===l.type),x?T.attr({shape:S}):c?wS(c,h,T,S,e,r,!0,b):zu(T,{shape:S},t,e,null),a.setItemGraphicEl(e,T),T.ignore=C,o.add(T)}else o.remove(T)})).remove((function(e){var n=s.getItemGraphicEl(e);n&&Fu(n,t,e)})).execute();var S=this._backgroundGroup||(this._backgroundGroup=new Bi);S.removeAll();for(var M=0;Mo)return!0;o=u}return!1},e.prototype._isOrderDifferentInView=function(t,e){for(var n=e.scale,i=n.getExtent(),r=Math.max(0,i[0]),o=Math.min(i[1],n.getOrdinalMeta().categories.length-1);r<=o;++r)if(t.ordinalNumbers[r]!==n.getRawOrdinalNumber(r))return!0},e.prototype._updateSortWithinSameData=function(t,e,n,i){if(this._isOrderChangedWithinSameData(t,e,n)){var r=this._dataSort(t,n,e);this._isOrderDifferentInView(r,n)&&(this._removeOnRenderedListener(i),i.dispatchAction({type:"changeAxisOrder",componentType:n.dim+"Axis",axisId:n.index,sortInfo:r}))}},e.prototype._dispatchInitSort=function(t,e,n){var i=e.baseAxis,r=this._dataSort(t,i,(function(n){return t.get(t.mapDimension(e.otherAxis.dim),n)}));n.dispatchAction({type:"changeAxisOrder",componentType:i.dim+"Axis",isInitSort:!0,axisId:i.index,sortInfo:r})},e.prototype.remove=function(t,e){this._clear(this._model),this._removeOnRenderedListener(e)},e.prototype.dispose=function(t,e){this._removeOnRenderedListener(e)},e.prototype._removeOnRenderedListener=function(t){this._onRendered&&(t.getZr().off("rendered",this._onRendered),this._onRendered=null)},e.prototype._clear=function(t){var e=this.group,n=this._data;t&&t.isAnimationEnabled()&&n&&!this._isLargeDraw?(this._removeBackground(),this._backgroundEls=[],n.eachItemGraphicEl((function(e){Fu(e,t,ws(e).dataIndex)}))):e.removeAll(),this._data=null,this._isFirstFrame=!0},e.prototype._removeBackground=function(){this.group.remove(this._backgroundGroup),this._backgroundGroup=null},e.type="bar",e}(Xf),xS={cartesian2d:function(t,e){var n=e.width<0?-1:1,i=e.height<0?-1:1;n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height);var r=t.x+t.width,o=t.y+t.height,a=vS(e.x,t.x),s=mS(e.x+e.width,r),l=vS(e.y,t.y),u=mS(e.y+e.height,o),h=sr?s:a,e.y=c&&l>o?u:l,e.width=h?0:s-a,e.height=c?0:u-l,n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height),h||c},polar:function(t,e){var n=e.r0<=e.r?1:-1;if(n<0){var i=e.r;e.r=e.r0,e.r0=i}var r=mS(e.r,t.r),o=vS(e.r0,t.r0);e.r=r,e.r0=o;var a=r-o<0;if(n<0){i=e.r;e.r=e.r0,e.r0=i}return a}},bS={cartesian2d:function(t,e,n,i,r,o,a,s,l){var u=new hs({shape:I({},i),z2:1});(u.__dataIndex=n,u.name="item",o)&&(u.shape[r?"height":"width"]=0);return u},polar:function(t,e,n,i,r,o,a,s,l){var u=i.startAngle0?1:-1,a=i.height>0?1:-1;return{x:i.x+o*r/2,y:i.y+a*r/2,width:i.width-o*r,height:i.height-a*r}},polar:function(t,e,n){var i=t.getItemLayout(e);return{cx:i.cx,cy:i.cy,r0:i.r0,r:i.r,startAngle:i.startAngle,endAngle:i.endAngle}}};function DS(t){return function(t){var e=t?"Arc":"Angle";return function(t){switch(t){case"start":case"insideStart":case"end":case"insideEnd":return t+e;default:return t}}}(t)}function AS(t,e,n,i,r,o,a,s){var l=e.getItemVisual(n,"style");s||t.setShape("r",i.get(["itemStyle","borderRadius"])||0),t.useStyle(l);var u=i.getShallow("cursor");u&&t.attr("cursor",u);var h=s?a?r.r>=r.r0?"endArc":"startArc":r.endAngle>=r.startAngle?"endAngle":"startAngle":a?r.height>=0?"bottom":"top":r.width>=0?"right":"left",c=xh(i);_h(t,c,{labelFetcher:o,labelDataIndex:n,defaultText:Iw(o.getData(),n),inheritColor:l.fill,defaultOpacity:l.opacity,defaultOutsidePosition:h});var p=t.getTextContent();if(s&&p){var d=i.get(["label","position"]);t.textConfig.inside="middle"===d||null,function(t,e,n,i){if("number"!=typeof i)if(G(e))t.setTextConfig({rotation:0});else{var r,o=t.shape,a=o.clockwise?o.startAngle:o.endAngle,s=o.clockwise?o.endAngle:o.startAngle,l=(a+s)/2,u=n(e);switch(u){case"startArc":case"insideStartArc":case"middle":case"insideEndArc":case"endArc":r=l;break;case"startAngle":case"insideStartAngle":r=a;break;case"endAngle":case"insideEndAngle":r=s;break;default:return void t.setTextConfig({rotation:0})}var h=1.5*Math.PI-r;"middle"===u&&h>Math.PI/2&&h<1.5*Math.PI&&(h-=Math.PI),t.setTextConfig({rotation:h})}else t.setTextConfig({rotation:i})}(t,"outside"===d?h:d,DS(a),i.get(["label","rotate"]))}Ah(p,c,o.getRawValue(n),(function(t){return Tw(e,t)}));var f=i.getModel(["emphasis"]);cl(t,f.get("focus"),f.get("blurScope")),gl(t,i),function(t){return null!=t.startAngle&&null!=t.endAngle&&t.startAngle===t.endAngle}(r)&&(t.style.fill="none",t.style.stroke="none",P(t.states,(function(t){t.style&&(t.style.fill=t.style.stroke="none")})))}var kS=function(){},LS=function(t){function e(e){var n=t.call(this,e)||this;return n.type="largeBar",n}return n(e,t),e.prototype.getDefaultShape=function(){return new kS},e.prototype.buildPath=function(t,e){for(var n=e.points,i=this.__startPoint,r=this.__baseDimIdx,o=0;o=c&&y<=p&&(l<=v?h>=l&&h<=v:h>=v&&h<=l))return a[d]}return-1}(this,t.offsetX,t.offsetY);ws(this).dataIndex=e>=0?e:null}),30,!1);function RS(t,e,n){if(qw(n,"cartesian2d")){var i=e,r=n.getArea();return{x:t?i.x:r.x,y:t?r.y:i.y,width:t?i.width:r.width,height:t?r.height:i.height}}var o=e;return{cx:(r=n.getArea()).cx,cy:r.cy,r0:t?r.r0:o.r0,r:t?r.r:o.r,startAngle:t?o.startAngle:0,endAngle:t?o.endAngle:2*Math.PI}}var NS=2*Math.PI,zS=Math.PI/180;function ES(t,e){return Zc(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}function BS(t,e){var n=ES(t,e),i=t.get("center"),r=t.get("radius");G(r)||(r=[0,r]),G(i)||(i=[i,i]);var o=ji(n.width,e.getWidth()),a=ji(n.height,e.getHeight()),s=Math.min(o,a);return{cx:ji(i[0],o)+n.x,cy:ji(i[1],a)+n.y,r0:ji(r[0],s/2),r:ji(r[1],s/2)}}function VS(t,e,n){e.eachSeriesByType(t,(function(t){var e=t.getData(),i=e.mapDimension("value"),r=ES(t,n),o=BS(t,n),a=o.cx,s=o.cy,l=o.r,u=o.r0,h=-t.get("startAngle")*zS,c=t.get("minAngle")*zS,p=0;e.each(i,(function(t){!isNaN(t)&&p++}));var d=e.getSum(i),f=Math.PI/(d||p)*2,g=t.get("clockwise"),y=t.get("roseType"),v=t.get("stillShowZeroSum"),m=e.getDataExtent(i);m[0]=0;var _=NS,x=0,b=h,w=g?1:-1;if(e.setLayout({viewRect:r,r:l}),e.each(i,(function(t,n){var i;if(isNaN(t))e.setItemLayout(n,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:g,cx:a,cy:s,r0:u,r:y?NaN:l});else{(i="area"!==y?0===d&&v?f:t*f:NS/p)n?a:o,h=Math.abs(l.label.y-n);if(h>u.maxY){var c=l.label.x-e-l.len2*r,p=i+l.len,f=Math.abs(c)0?"right":"left":k>0?"left":"right"}var G=y.get("rotate");if("number"==typeof G)O=G*(Math.PI/180);else if("center"===v)O=0;else{var F=k<0?-A+Math.PI:-A;"radial"===G||!0===G?O=F:"tangential"===G&&"outside"!==v&&"outer"!==v?(O=F+Math.PI/2)>Math.PI/2&&(O-=Math.PI):O=0}if(o=!!O,p.x=I,p.y=T,p.rotation=O,p.setStyle({verticalAlign:"middle"}),R){p.setStyle({align:D});var H=p.states.select;H&&(H.x+=p.x,H.y+=p.y)}else{var W=p.getBoundingRect().clone();W.applyTransform(p.getComputedTransform());var U=(p.style.margin||0)+2.1;W.y-=U/2,W.height+=U,r.push({label:p,labelLine:f,position:v,len:S,len2:M,minTurnAngle:w.get("minTurnAngle"),maxSurfaceAngle:w.get("maxSurfaceAngle"),surfaceNormal:new si(k,L),linePoints:C,textAlign:D,labelDistance:m,labelAlignTo:_,edgeDistance:x,bleedMargin:b,rect:W})}s.setTextConfig({inside:R})}})),!o&&t.get("avoidLabelOverlap")&&function(t,e,n,i,r,o,a,s){for(var l=[],u=[],h=Number.MAX_VALUE,c=-Number.MAX_VALUE,p=0;p0){for(var l=o.getItemLayout(0),u=1;isNaN(l&&l.startAngle)&&u=n.r0}},e.type="pie",e}(Xf);function jS(t,e,n){e=G(e)&&{coordDimensions:e}||I({encodeDefine:t.getEncode()},e);var i=t.getSource(),r=l_(i,e).dimensions,o=new s_(r,t);return o.initData(i,n),o}var qS=function(){function t(t,e){this._getDataWithEncodedVisual=t,this._getRawData=e}return t.prototype.getAllNames=function(){var t=this._getRawData();return t.mapArray(t.getName)},t.prototype.containName=function(t){return this._getRawData().indexOfName(t)>=0},t.prototype.indexOfName=function(t){return this._getDataWithEncodedVisual().indexOfName(t)},t.prototype.getItemVisual=function(t,e){return this._getDataWithEncodedVisual().getItemVisual(t,e)},t}(),KS=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.init=function(e){t.prototype.init.apply(this,arguments),this.legendVisualProvider=new qS(B(this.getData,this),B(this.getRawData,this)),this._defaultLabelLine(e)},e.prototype.mergeOption=function(){t.prototype.mergeOption.apply(this,arguments)},e.prototype.getInitialData=function(){return jS(this,{coordDimensions:["value"],encodeDefaulter:V(mp,this)})},e.prototype.getDataParams=function(e){var n=this.getData(),i=t.prototype.getDataParams.call(this,e),r=[];return n.each(n.mapDimension("value"),(function(t){r.push(t)})),i.percent=tr(r,e,n.hostModel.get("percentPrecision")),i.$vars.push("percent"),i},e.prototype._defaultLabelLine=function(t){wr(t,"labelLine",["show"]);var e=t.labelLine,n=t.emphasis.labelLine;e.show=e.show&&t.label.show,n.show=n.show&&t.emphasis.label.show},e.type="series.pie",e.defaultOption={zlevel:0,z:2,legendHoverLink:!0,colorBy:"data",center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,left:0,top:0,right:0,bottom:0,width:null,height:null,label:{rotate:0,show:!0,overflow:"truncate",position:"outer",alignTo:"none",edgeDistance:"25%",bleedMargin:10,distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:15,smooth:!1,minTurnAngle:90,maxSurfaceAngle:90,lineStyle:{width:1,type:"solid"}},itemStyle:{borderWidth:1,borderJoin:"round"},showEmptyCircle:!0,emptyCircleStyle:{color:"lightgray",opacity:1},labelLayout:{hideOverlap:!0},emphasis:{scale:!0,scaleSize:5},avoidLabelOverlap:!0,animationType:"expansion",animationDuration:1e3,animationTypeUpdate:"transition",animationEasingUpdate:"cubicInOut",animationDurationUpdate:500,animationEasing:"cubicInOut"},e}(Of);var $S=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.hasSymbolVisual=!0,n}return n(e,t),e.prototype.getInitialData=function(t,e){return y_(null,this,{useEncodeDefaulter:!0})},e.prototype.getProgressive=function(){var t=this.option.progressive;return null==t?this.option.large?5e3:this.get("progressive"):t},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?1e4:this.get("progressiveThreshold"):t},e.prototype.brushSelector=function(t,e,n){return n.point(e.getItemLayout(t))},e.type="series.scatter",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",zlevel:0,z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:"#212121"}},universalTransition:{divideShape:"clone"}},e}(Of),JS=function(){},QS=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new JS},e.prototype.buildPath=function(t,e){var n=e.points,i=e.size,r=this.symbolProxy,o=r.shape,a=t.getContext?t.getContext():t;if(a&&i[0]<4)this._ctx=a;else{this._ctx=null;for(var s=0;s=0;s--){var l=2*s,u=i[l]-o/2,h=i[l+1]-a/2;if(t>=u&&e>=h&&t<=u+o&&e<=h+a)return s}return-1},e}(Ja),tM=function(){function t(){this.group=new Bi}return t.prototype.isPersistent=function(){return!this._incremental},t.prototype.updateData=function(t,e){this.group.removeAll();var n=new QS({rectHover:!0,cursor:"default"});n.setShape({points:t.getLayout("points")}),this._setCommon(n,t,!1,e),this.group.add(n),this._incremental=null},t.prototype.updateLayout=function(t){if(!this._incremental){var e=t.getLayout("points");this.group.eachChild((function(t){if(null!=t.startIndex){var n=2*(t.endIndex-t.startIndex),i=4*t.startIndex*2;e=new Float32Array(e.buffer,i,n)}t.setShape("points",e)}))}},t.prototype.incrementalPrepareUpdate=function(t){this.group.removeAll(),this._clearIncremental(),t.count()>2e6?(this._incremental||(this._incremental=new Pu({silent:!0})),this.group.add(this._incremental)):this._incremental=null},t.prototype.incrementalUpdate=function(t,e,n){var i;this._incremental?(i=new QS,this._incremental.addDisplayable(i,!0)):((i=new QS({rectHover:!0,cursor:"default",startIndex:t.start,endIndex:t.end})).incremental=!0,this.group.add(i)),i.setShape({points:e.getLayout("points")}),this._setCommon(i,e,!!this._incremental,n)},t.prototype._setCommon=function(t,e,n,i){var r=e.hostModel;i=i||{};var o=e.getVisual("symbolSize");t.setShape("size",o instanceof Array?o:[o,o]),t.softClipShape=i.clipShape||null,t.symbolProxy=Qg(e.getVisual("symbol"),0,0,0,0),t.setColor=t.symbolProxy.setColor;var a=t.shape.size[0]<4;t.useStyle(r.getModel("itemStyle").getItemStyle(a?["color","shadowBlur","shadowColor"]:["color"]));var s=e.getVisual("style"),l=s&&s.fill;if(l&&t.setColor(l),!n){var u=ws(t);u.seriesIndex=r.seriesIndex,t.on("mousemove",(function(e){u.dataIndex=null;var n=t.findDataIndex(e.offsetX,e.offsetY);n>=0&&(u.dataIndex=n+(t.startIndex||0))}))}},t.prototype.remove=function(){this._clearIncremental(),this._incremental=null,this.group.removeAll()},t.prototype._clearIncremental=function(){var t=this._incremental;t&&t.clearDisplaybles()},t}(),eM=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).updateData(i,{clipShape:this._getClipShape(t)}),this._finished=!0},e.prototype.incrementalPrepareRender=function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).incrementalPrepareUpdate(i),this._finished=!1},e.prototype.incrementalRender=function(t,e,n){this._symbolDraw.incrementalUpdate(t,e.getData(),{clipShape:this._getClipShape(e)}),this._finished=t.end===e.getData().count()},e.prototype.updateTransform=function(t,e,n){var i=t.getData();if(this.group.dirty(),!this._finished||i.count()>1e4||!this._symbolDraw.isPersistent())return{update:!0};var r=aS("").reset(t,e,n);r.progress&&r.progress({start:0,end:i.count(),count:i.count()},i),this._symbolDraw.updateLayout(i)},e.prototype._getClipShape=function(t){var e=t.coordinateSystem,n=e&&e.getArea&&e.getArea();return t.get("clip",!0)?n:null},e.prototype._updateSymbolDraw=function(t,e){var n=this._symbolDraw,i=e.pipelineContext.large;return n&&i===this._isLargeDraw||(n&&n.remove(),n=this._symbolDraw=i?new tM:new Pw,this._isLargeDraw=i,this.group.removeAll()),this.group.add(n.group),n},e.prototype.remove=function(t,e){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},e.prototype.dispose=function(){},e.type="scatter",e}(Xf),nM=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.type="grid",e.dependencies=["xAxis","yAxis"],e.layoutMode="box",e.defaultOption={show:!1,zlevel:0,z:0,left:"10%",top:60,right:"10%",bottom:70,containLabel:!1,backgroundColor:"rgba(0,0,0,0)",borderWidth:1,borderColor:"#ccc"},e}(tp),iM=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",Er).models[0]},e.type="cartesian2dAxis",e}(tp);k(iM,Sx);var rM={show:!0,zlevel:0,z:0,inverse:!1,name:"",nameLocation:"end",nameRotate:null,nameTruncate:{maxWidth:null,ellipsis:"...",placeholder:"."},nameTextStyle:{},nameGap:15,silent:!1,triggerEvent:!1,tooltip:{show:!1},axisPointer:{},axisLine:{show:!0,onZero:!0,onZeroAxisIndex:null,lineStyle:{color:"#6E7079",width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15]},axisTick:{show:!0,inside:!1,length:5,lineStyle:{width:1}},axisLabel:{show:!0,inside:!1,rotate:0,showMinLabel:null,showMaxLabel:null,margin:8,fontSize:12},splitLine:{show:!0,lineStyle:{color:["#E0E6F1"],width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:["rgba(250,250,250,0.2)","rgba(210,219,238,0.2)"]}}},oM=S({boundaryGap:!0,deduplication:null,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto"},axisLabel:{interval:"auto"}},rM),aM=S({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:"#F4F7FD",width:1}}},rM),sM={category:oM,value:aM,time:S({scale:!0,splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},aM),log:T({scale:!0,logBase:10},aM)},lM={value:1,category:1,time:1,log:1};function uM(t,e,i,r){P(lM,(function(o,a){var s=S(S({},sM[a],!0),r,!0),l=function(t){function i(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e+"Axis."+a,n}return n(i,t),i.prototype.mergeDefaultAndTheme=function(t,e){var n=qc(this),i=n?$c(t):{};S(t,e.getTheme().get(a+"Axis")),S(t,this.getDefaultOption()),t.type=hM(t),n&&Kc(t,i,n)},i.prototype.optionUpdated=function(){"category"===this.option.type&&(this.__ordinalMeta=__.createByAxisModel(this))},i.prototype.getCategories=function(t){var e=this.option;if("category"===e.type)return t?e.data:this.__ordinalMeta.categories},i.prototype.getOrdinalMeta=function(){return this.__ordinalMeta},i.type=e+"Axis."+a,i.defaultOption=s,i}(i);t.registerComponentModel(l)})),t.registerSubTypeDefaulter(e+"Axis",hM)}function hM(t){return t.type||(t.data?"category":"value")}var cM=function(){function t(t){this.type="cartesian",this._dimList=[],this._axes={},this.name=t||""}return t.prototype.getAxis=function(t){return this._axes[t]},t.prototype.getAxes=function(){return O(this._dimList,(function(t){return this._axes[t]}),this)},t.prototype.getAxesByScale=function(t){return t=t.toLowerCase(),N(this.getAxes(),(function(e){return e.scale.type===t}))},t.prototype.addAxis=function(t){var e=t.dim;this._axes[e]=t,this._dimList.push(e)},t}(),pM=["x","y"];function dM(t){return"interval"===t.type||"time"===t.type}var fM=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="cartesian2d",e.dimensions=pM,e}return n(e,t),e.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var t=this.getAxis("x").scale,e=this.getAxis("y").scale;if(dM(t)&&dM(e)){var n=t.getExtent(),i=e.getExtent(),r=this.dataToPoint([n[0],i[0]]),o=this.dataToPoint([n[1],i[1]]),a=n[1]-n[0],s=i[1]-i[0];if(a&&s){var l=(o[0]-r[0])/a,u=(o[1]-r[1])/s,h=r[0]-n[0]*l,c=r[1]-i[0]*u,p=this._transform=[l,0,0,u,h,c];this._invTransform=Zn([],p)}}},e.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},e.prototype.containPoint=function(t){var e=this.getAxis("x"),n=this.getAxis("y");return e.contain(e.toLocalCoord(t[0]))&&n.contain(n.toLocalCoord(t[1]))},e.prototype.containData=function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},e.prototype.dataToPoint=function(t,e,n){n=n||[];var i=t[0],r=t[1];if(this._transform&&null!=i&&isFinite(i)&&null!=r&&isFinite(r))return Rt(n,t,this._transform);var o=this.getAxis("x"),a=this.getAxis("y");return n[0]=o.toGlobalCoord(o.dataToCoord(i,e)),n[1]=a.toGlobalCoord(a.dataToCoord(r,e)),n},e.prototype.clampData=function(t,e){var n=this.getAxis("x").scale,i=this.getAxis("y").scale,r=n.getExtent(),o=i.getExtent(),a=n.parse(t[0]),s=i.parse(t[1]);return(e=e||[])[0]=Math.min(Math.max(Math.min(r[0],r[1]),a),Math.max(r[0],r[1])),e[1]=Math.min(Math.max(Math.min(o[0],o[1]),s),Math.max(o[0],o[1])),e},e.prototype.pointToData=function(t,e){var n=[];if(this._invTransform)return Rt(n,t,this._invTransform);var i=this.getAxis("x"),r=this.getAxis("y");return n[0]=i.coordToData(i.toLocalCoord(t[0]),e),n[1]=r.coordToData(r.toLocalCoord(t[1]),e),n},e.prototype.getOtherAxis=function(t){return this.getAxis("x"===t.dim?"y":"x")},e.prototype.getArea=function(){var t=this.getAxis("x").getGlobalExtent(),e=this.getAxis("y").getGlobalExtent(),n=Math.min(t[0],t[1]),i=Math.min(e[0],e[1]),r=Math.max(t[0],t[1])-n,o=Math.max(e[0],e[1])-i;return new yi(n,i,r,o)},e}(cM),gM=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n,i)||this;return a.index=0,a.type=r||"value",a.position=o||"bottom",a}return n(e,t),e.prototype.isHorizontal=function(){var t=this.position;return"top"===t||"bottom"===t},e.prototype.getGlobalExtent=function(t){var e=this.getExtent();return e[0]=this.toGlobalCoord(e[0]),e[1]=this.toGlobalCoord(e[1]),t&&e[0]>e[1]&&e.reverse(),e},e.prototype.pointToData=function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},e.prototype.setCategorySortInfo=function(t){if("category"!==this.type)return!1;this.model.option.categorySortInfo=t,this.scale.setSortInfo(t)},e}(Fx);function yM(t,e,n){n=n||{};var i=t.coordinateSystem,r=e.axis,o={},a=r.getAxesOnZeroOf()[0],s=r.position,l=a?"onZero":s,u=r.dim,h=i.getRect(),c=[h.x,h.x+h.width,h.y,h.y+h.height],p={left:0,right:1,top:0,bottom:1,onZero:2},d=e.get("offset")||0,f="x"===u?[c[2]-d,c[3]+d]:[c[0]-d,c[1]+d];if(a){var g=a.toGlobalCoord(a.dataToCoord(0));f[p.onZero]=Math.max(Math.min(g,f[1]),f[0])}o.position=["y"===u?f[p[l]]:c[0],"x"===u?f[p[l]]:c[3]],o.rotation=Math.PI/2*("x"===u?0:1);o.labelDirection=o.tickDirection=o.nameDirection={top:-1,bottom:1,left:-1,right:1}[s],o.labelOffset=a?f[p[s]]-f[p.onZero]:0,e.get(["axisTick","inside"])&&(o.tickDirection=-o.tickDirection),Q(n.labelInside,e.get(["axisLabel","inside"]))&&(o.labelDirection=-o.labelDirection);var y=e.get(["axisLabel","rotate"]);return o.labelRotate="top"===l?-y:y,o.z2=1,o}function vM(t){return"cartesian2d"===t.get("coordinateSystem")}function mM(t){var e={xAxisModel:null,yAxisModel:null};return P(e,(function(n,i){var r=i.replace(/Model$/,""),o=t.getReferringComponents(r,Er).models[0];e[i]=o})),e}var _M=function(){function t(t,e,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=pM,this._initCartesian(t,e,n),this.model=t}return t.prototype.getRect=function(){return this._rect},t.prototype.update=function(t,e){var n=this._axesMap;this._updateScale(t,this.model),P(n.x,(function(t){fx(t.scale,t.model)})),P(n.y,(function(t){fx(t.scale,t.model)}));var i={};P(n.x,(function(t){bM(n,"y",t,i)})),P(n.y,(function(t){bM(n,"x",t,i)})),this.resize(this.model,e)},t.prototype.resize=function(t,e,n){var i=t.getBoxLayoutParams(),r=!n&&t.get("containLabel"),o=Zc(i,{width:e.getWidth(),height:e.getHeight()});this._rect=o;var a=this._axesList;function s(){P(a,(function(t){var e=t.isHorizontal(),n=e?[0,o.width]:[0,o.height],i=t.inverse?1:0;t.setExtent(n[i],n[1-i]),function(t,e){var n=t.getExtent(),i=n[0]+n[1];t.toGlobalCoord="x"===t.dim?function(t){return t+e}:function(t){return i-t+e},t.toLocalCoord="x"===t.dim?function(t){return t-e}:function(t){return i-t+e}}(t,e?o.x:o.y)}))}s(),r&&(P(a,(function(t){if(!t.model.get(["axisLabel","inside"])){var e=function(t){var e=t.model,n=t.scale;if(e.get(["axisLabel","show"])&&!n.isBlank()){var i,r,o=n.getExtent();r=n instanceof D_?n.count():(i=n.getTicks()).length;var a,s=t.getLabelModel(),l=yx(t),u=1;r>40&&(u=Math.ceil(r/40));for(var h=0;h0&&i>0||n<0&&i<0)}(t)}var SM=Math.PI,MM=function(){function t(t,e){this.group=new Bi,this.opt=e,this.axisModel=t,T(e,{labelOffset:0,nameDirection:1,tickDirection:1,labelDirection:1,silent:!0,handleAutoShown:function(){return!0}});var n=new Bi({x:e.position[0],y:e.position[1],rotation:e.rotation});n.updateTransform(),this._transformGroup=n}return t.prototype.hasBuilder=function(t){return!!IM[t]},t.prototype.add=function(t){IM[t](this.opt,this.axisModel,this.group,this._transformGroup)},t.prototype.getGroup=function(){return this.group},t.innerTextLayout=function(t,e,n){var i,r,o=ir(e-t);return rr(o)?(r=n>0?"top":"bottom",i="center"):rr(o-SM)?(r=n>0?"bottom":"top",i="center"):(r="middle",i=o>0&&o0?"right":"left":n>0?"left":"right"),{rotation:o,textAlign:i,textVerticalAlign:r}},t.makeAxisEventDataBase=function(t){var e={componentType:t.mainType,componentIndex:t.componentIndex};return e[t.mainType+"Index"]=t.componentIndex,e},t.isLabelSilent=function(t){var e=t.get("tooltip");return t.get("silent")||!(t.get("triggerEvent")||e&&e.show)},t}(),IM={axisLine:function(t,e,n,i){var r=e.get(["axisLine","show"]);if("auto"===r&&t.handleAutoShown&&(r=t.handleAutoShown("axisLine")),r){var o=e.axis.getExtent(),a=i.transform,s=[o[0],0],l=[o[1],0];a&&(Rt(s,s,a),Rt(l,l,a));var u=I({lineCap:"round"},e.getModel(["axisLine","lineStyle"]).getLineStyle()),h=new gu({subPixelOptimize:!0,shape:{x1:s[0],y1:s[1],x2:l[0],y2:l[1]},style:u,strokeContainThreshold:t.strokeContainThreshold||5,silent:!0,z2:1});h.anid="line",n.add(h);var c=e.get(["axisLine","symbol"]);if(null!=c){var p=e.get(["axisLine","symbolSize"]);"string"==typeof c&&(c=[c,c]),"string"!=typeof p&&"number"!=typeof p||(p=[p,p]);var d=ey(e.get(["axisLine","symbolOffset"])||0,p),f=p[0],g=p[1];P([{rotate:t.rotation+Math.PI/2,offset:d[0],r:0},{rotate:t.rotation-Math.PI/2,offset:d[1],r:Math.sqrt((s[0]-l[0])*(s[0]-l[0])+(s[1]-l[1])*(s[1]-l[1]))}],(function(e,i){if("none"!==c[i]&&null!=c[i]){var r=Qg(c[i],-f/2,-g/2,f,g,u.stroke,!0),o=e.r+e.offset;r.attr({rotation:e.rotate,x:s[0]+o*Math.cos(t.rotation),y:s[1]-o*Math.sin(t.rotation),silent:!0,z2:11}),n.add(r)}}))}}},axisTickLabel:function(t,e,n,i){var r=function(t,e,n,i){var r=n.axis,o=n.getModel("axisTick"),a=o.get("show");"auto"===a&&i.handleAutoShown&&(a=i.handleAutoShown("axisTick"));if(!a||r.scale.isBlank())return;for(var s=o.getModel("lineStyle"),l=i.tickDirection*o.get("length"),u=AM(r.getTicksCoords(),e.transform,l,T(s.getLineStyle(),{stroke:n.get(["axisLine","lineStyle","color"])}),"ticks"),h=0;hc[1]?-1:1,d=["start"===s?c[0]-p*h:"end"===s?c[1]+p*h:(c[0]+c[1])/2,DM(s)?t.labelOffset+l*h:0],f=e.get("nameRotate");null!=f&&(f=f*SM/180),DM(s)?o=MM.innerTextLayout(t.rotation,null!=f?f:t.rotation,l):(o=function(t,e,n,i){var r,o,a=ir(n-t),s=i[0]>i[1],l="start"===e&&!s||"start"!==e&&s;rr(a-SM/2)?(o=l?"bottom":"top",r="center"):rr(a-1.5*SM)?(o=l?"top":"bottom",r="center"):(o="middle",r=a<1.5*SM&&a>SM/2?l?"left":"right":l?"right":"left");return{rotation:a,textAlign:r,textVerticalAlign:o}}(t.rotation,s,f||0,c),null!=(a=t.axisNameAvailableWidth)&&(a=Math.abs(a/Math.sin(o.rotation)),!isFinite(a)&&(a=null)));var g=u.getFont(),y=e.get("nameTruncate",!0)||{},v=y.ellipsis,m=Q(t.nameTruncateMaxWidth,y.maxWidth,a),_=new ds({x:d[0],y:d[1],rotation:o.rotation,silent:MM.isLabelSilent(e),style:bh(u,{text:r,font:g,overflow:"truncate",width:m,ellipsis:v,fill:u.getTextColor()||e.get(["axisLine","lineStyle","color"]),align:u.get("align")||o.textAlign,verticalAlign:u.get("verticalAlign")||o.textVerticalAlign}),z2:1});if(fh({el:_,componentModel:e,itemName:r}),_.__fullText=r,_.anid="name",e.get("triggerEvent")){var x=MM.makeAxisEventDataBase(e);x.targetType="axisName",x.name=r,ws(_).eventData=x}i.add(_),_.updateTransform(),n.add(_),_.decomposeTransform()}}};function TM(t){t&&(t.ignore=!0)}function CM(t,e){var n=t&&t.getBoundingRect().clone(),i=e&&e.getBoundingRect().clone();if(n&&i){var r=Fn([]);return Xn(r,r,-t.rotation),n.applyTransform(Wn([],r,t.getLocalTransform())),i.applyTransform(Wn([],r,e.getLocalTransform())),n.intersect(i)}}function DM(t){return"middle"===t||"center"===t}function AM(t,e,n,i,r){for(var o=[],a=[],s=[],l=0;l=0||t===e}function PM(t){var e=OM(t);if(e){var n=e.axisPointerModel,i=e.axis.scale,r=n.option,o=n.get("status"),a=n.get("value");null!=a&&(a=i.parse(a));var s=RM(n);null==o&&(r.status=s?"show":"hide");var l=i.getExtent().slice();l[0]>l[1]&&l.reverse(),(null==a||a>l[1])&&(a=l[1]),a0&&!c.min?c.min=0:null!=c.min&&c.min<0&&!c.max&&(c.max=0);var p=a;null!=c.color&&(p=T({color:c.color},a));var d=S(w(c),{boundaryGap:t,splitNumber:e,scale:n,axisLine:i,axisTick:r,axisLabel:o,name:c.text,nameLocation:"end",nameGap:u,nameTextStyle:p,triggerEvent:h},!1);if(s||(d.name=""),"string"==typeof l){var f=d.name;d.name=l.replace("{value}",null!=f?f:"")}else"function"==typeof l&&(d.name=l(d.name,d));var g=new Hh(d,null,this.ecModel);return k(g,Sx.prototype),g.mainType="radar",g.componentIndex=this.componentIndex,g}),this);this._indicatorModels=c},e.prototype.getIndicatorModels=function(){return this._indicatorModels},e.type="radar",e.defaultOption={zlevel:0,z:0,center:["50%","50%"],radius:"75%",startAngle:90,axisName:{show:!0},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:"polygon",axisLine:S({lineStyle:{color:"#bbb"}},nI.axisLine),axisLabel:iI(nI.axisLabel,!1),axisTick:iI(nI.axisTick,!1),splitLine:iI(nI.splitLine,!0),splitArea:iI(nI.splitArea,!0),indicator:[]},e}(tp),oI=["axisLine","axisTickLabel","axisName"],aI=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){this.group.removeAll(),this._buildAxes(t),this._buildSplitLineAndArea(t)},e.prototype._buildAxes=function(t){var e=t.coordinateSystem;P(O(e.getIndicatorAxes(),(function(t){return new MM(t.model,{position:[e.cx,e.cy],rotation:t.angle,labelDirection:-1,tickDirection:-1,nameDirection:1})})),(function(t){P(oI,t.add,t),this.group.add(t.getGroup())}),this)},e.prototype._buildSplitLineAndArea=function(t){var e=t.coordinateSystem,n=e.getIndicatorAxes();if(n.length){var i=t.get("shape"),r=t.getModel("splitLine"),o=t.getModel("splitArea"),a=r.getModel("lineStyle"),s=o.getModel("areaStyle"),l=r.get("show"),u=o.get("show"),h=a.get("color"),c=s.get("color"),p=G(h)?h:[h],d=G(c)?c:[c],f=[],g=[];if("circle"===i)for(var y=n[0].getTicksCoords(),v=e.cx,m=e.cy,_=0;_n[0]&&isFinite(c)&&isFinite(n[0]))}else{a.getTicks().length-1>r&&(u=o(u));c=qi((h=Math.ceil(n[1]/u)*u)-u*r);a.setExtent(c,h),a.setInterval(u)}}))},t.prototype.convertToPixel=function(t,e,n){return console.warn("Not implemented."),null},t.prototype.convertFromPixel=function(t,e,n){return console.warn("Not implemented."),null},t.prototype.containPoint=function(t){return console.warn("Not implemented."),!1},t.create=function(e,n){var i=[];return e.eachComponent("radar",(function(r){var o=new t(r,e,n);i.push(o),r.coordinateSystem=o})),e.eachSeriesByType("radar",(function(t){"radar"===t.get("coordinateSystem")&&(t.coordinateSystem=i[t.get("radarIndex")||0])})),i},t.dimensions=[],t}();function uI(t){t.registerCoordinateSystem("radar",lI),t.registerComponentModel(rI),t.registerComponentView(aI),t.registerVisual({seriesType:"radar",reset:function(t){var e=t.getData();e.each((function(t){e.setItemVisual(t,"legendIcon","roundRect")})),e.setVisual("legendIcon","roundRect")}})}var hI="\0_ec_interaction_mutex";function cI(t,e){return!!pI(t)[e]}function pI(t){return t[hI]||(t[hI]={})}Sm({type:"takeGlobalCursor",event:"globalCursorTaken",update:"update"},(function(){}));var dI=function(t){function e(e){var n=t.call(this)||this;n._zr=e;var i=B(n._mousedownHandler,n),r=B(n._mousemoveHandler,n),o=B(n._mouseupHandler,n),a=B(n._mousewheelHandler,n),s=B(n._pinchHandler,n);return n.enable=function(t,n){this.disable(),this._opt=T(w(n)||{},{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),null==t&&(t=!0),!0!==t&&"move"!==t&&"pan"!==t||(e.on("mousedown",i),e.on("mousemove",r),e.on("mouseup",o)),!0!==t&&"scale"!==t&&"zoom"!==t||(e.on("mousewheel",a),e.on("pinch",s))},n.disable=function(){e.off("mousedown",i),e.off("mousemove",r),e.off("mouseup",o),e.off("mousewheel",a),e.off("pinch",s)},n}return n(e,t),e.prototype.isDragging=function(){return this._dragging},e.prototype.isPinching=function(){return this._pinching},e.prototype.setPointerChecker=function(t){this.pointerChecker=t},e.prototype.dispose=function(){this.disable()},e.prototype._mousedownHandler=function(t){if(!(ne(t)||t.target&&t.target.draggable)){var e=t.offsetX,n=t.offsetY;this.pointerChecker&&this.pointerChecker(t,e,n)&&(this._x=e,this._y=n,this._dragging=!0)}},e.prototype._mousemoveHandler=function(t){if(this._dragging&&yI("moveOnMouseMove",t,this._opt)&&"pinch"!==t.gestureEvent&&!cI(this._zr,"globalPan")){var e=t.offsetX,n=t.offsetY,i=this._x,r=this._y,o=e-i,a=n-r;this._x=e,this._y=n,this._opt.preventDefaultMouseMove&&ee(t.event),gI(this,"pan","moveOnMouseMove",t,{dx:o,dy:a,oldX:i,oldY:r,newX:e,newY:n,isAvailableBehavior:null})}},e.prototype._mouseupHandler=function(t){ne(t)||(this._dragging=!1)},e.prototype._mousewheelHandler=function(t){var e=yI("zoomOnMouseWheel",t,this._opt),n=yI("moveOnMouseWheel",t,this._opt),i=t.wheelDelta,r=Math.abs(i),o=t.offsetX,a=t.offsetY;if(0!==i&&(e||n)){if(e){var s=r>3?1.4:r>1?1.2:1.1;fI(this,"zoom","zoomOnMouseWheel",t,{scale:i>0?s:1/s,originX:o,originY:a,isAvailableBehavior:null})}if(n){var l=Math.abs(i);fI(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:(i>0?1:-1)*(l>3?.4:l>1?.15:.05),originX:o,originY:a,isAvailableBehavior:null})}}},e.prototype._pinchHandler=function(t){cI(this._zr,"globalPan")||fI(this,"zoom",null,t,{scale:t.pinchScale>1?1.1:1/1.1,originX:t.pinchX,originY:t.pinchY,isAvailableBehavior:null})},e}(Gt);function fI(t,e,n,i,r){t.pointerChecker&&t.pointerChecker(i,r.originX,r.originY)&&(ee(i.event),gI(t,e,n,i,r))}function gI(t,e,n,i,r){r.isAvailableBehavior=B(yI,null,n,i),t.trigger(e,r)}function yI(t,e,n){var i=n[t];return!t||i&&(!H(i)||e.event[i+"Key"])}function vI(t,e,n){var i=t.target;i.x+=e,i.y+=n,i.dirty()}function mI(t,e,n,i){var r=t.target,o=t.zoomLimit,a=t.zoom=t.zoom||1;if(a*=e,o){var s=o.min||0,l=o.max||1/0;a=Math.max(Math.min(l,a),s)}var u=a/t.zoom;t.zoom=a,r.x-=(n-r.x)*(u-1),r.y-=(i-r.y)*(u-1),r.scaleX*=u,r.scaleY*=u,r.dirty()}var _I={axisPointer:1,tooltip:1,brush:1};function xI(t,e,n){var i=e.getComponentByElement(t.topTarget),r=i&&i.coordinateSystem;return i&&i!==n&&!_I.hasOwnProperty(i.mainType)&&r&&r.model!==n}var bI=["rect","circle","line","ellipse","polygon","polyline","path"],wI=ht(bI),SI=ht(bI.concat(["g"])),MI=ht(bI.concat(["g"])),II=Or();function TI(t){var e=t.getItemStyle(),n=t.get("areaColor");return null!=n&&(e.fill=n),e}var CI=function(){function t(t){var e=new Bi;this.uid=Uh("ec_map_draw"),this._controller=new dI(t.getZr()),this._controllerHost={target:e},this.group=e,e.add(this._regionsGroup=new Bi),e.add(this._svgGroup=new Bi)}return t.prototype.draw=function(t,e,n,i,r){var o="geo"===t.mainType,a=t.getData&&t.getData();o&&e.eachComponent({mainType:"series",subType:"map"},(function(e){a||e.getHostGeoModel()!==t||(a=e.getData())}));var s=t.coordinateSystem,l=this._regionsGroup,u=this.group,h=s.getTransformInfo(),c=h.raw,p=h.roam;!l.childAt(0)||r?(u.x=p.x,u.y=p.y,u.scaleX=p.scaleX,u.scaleY=p.scaleY,u.dirty()):zu(u,p,t);var d=a&&a.getVisual("visualMeta")&&a.getVisual("visualMeta").length>0,f={api:n,geo:s,mapOrGeoModel:t,data:a,isVisualEncodedByVisualMap:d,isGeo:o,transformInfoRaw:c};"geoJSON"===s.resourceType?this._buildGeoJSON(f):"geoSVG"===s.resourceType&&this._buildSVG(f),this._updateController(t,e,n),this._updateMapSelectHandler(t,l,n,i)},t.prototype._buildGeoJSON=function(t){var e=this._regionsGroupByName=ht(),n=ht(),i=this._regionsGroup,r=t.transformInfoRaw,o=t.mapOrGeoModel,a=t.data,s=function(t){return[t[0]*r.scaleX+r.x,t[1]*r.scaleY+r.y]};i.removeAll(),P(t.geo.regions,(function(r){var l=r.name,u=e.get(l),h=n.get(l)||{},c=h.dataIdx,p=h.regionModel;u||(u=e.set(l,new Bi),i.add(u),c=a?a.indexOfName(l):null,p=t.isGeo?o.getRegionModel(l):a?a.getItemModel(c):null,n.set(l,{dataIdx:c,regionModel:p}));var d=new wu({segmentIgnoreThreshold:1,shape:{paths:[]}});u.add(d),P(r.geometries,(function(t){if("polygon"===t.type){for(var e=[],n=0;n=0)&&(p=r);var d=a?{normal:{align:"center",verticalAlign:"middle"}}:null;_h(e,xh(i),{labelFetcher:p,labelDataIndex:c,defaultText:n},d);var f=e.getTextContent();if(f&&(II(f).ignore=f.ignore,e.textConfig&&a)){var g=e.getBoundingRect().clone();e.textConfig.layoutRect=g,e.textConfig.position=[(a[0]-g.x)/g.width*100+"%",(a[1]-g.y)/g.height*100+"%"]}e.disableLabelAnimation=!0}else e.removeTextContent(),e.removeTextConfig(),e.disableLabelAnimation=null}function kI(t,e,n,i,r,o){t.data?t.data.setItemGraphicEl(o,e):ws(e).eventData={componentType:"geo",componentIndex:r.componentIndex,geoIndex:r.componentIndex,name:n,region:i&&i.option||{}}}function LI(t,e,n,i,r){t.data||fh({el:e,componentModel:r,itemName:n,itemTooltipOption:i.get("tooltip")})}function PI(t,e,n,i,r){e.highDownSilentOnTouch=!!r.get("selectedMode");var o=i.getModel("emphasis"),a=o.get("focus");return cl(e,a,o.get("blurScope")),t.isGeo&&function(t,e,n){var i=ws(t);i.componentMainType=e.mainType,i.componentIndex=e.componentIndex,i.componentHighDownName=n}(e,r,n),a}var OI=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n,i){if(!i||"mapToggleSelect"!==i.type||i.from!==this.uid){var r=this.group;if(r.removeAll(),!t.getHostGeoModel()){if(this._mapDraw&&i&&"geoRoam"===i.type&&this._mapDraw.resetForLabelLayout(),i&&"geoRoam"===i.type&&"series"===i.componentType&&i.seriesId===t.id)(o=this._mapDraw)&&r.add(o.group);else if(t.needsDrawMap){var o=this._mapDraw||new CI(n);r.add(o.group),o.draw(t,e,n,this,i),this._mapDraw=o}else this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null;t.get("showLegendSymbol")&&e.getComponent("legend")&&this._renderSymbols(t,e,n)}}},e.prototype.remove=function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null,this.group.removeAll()},e.prototype.dispose=function(){this._mapDraw&&this._mapDraw.remove(),this._mapDraw=null},e.prototype._renderSymbols=function(t,e,n){var i=t.originalData,r=this.group;i.each(i.mapDimension("value"),(function(e,n){if(!isNaN(e)){var o=i.getItemLayout(n);if(o&&o.point){var a=o.point,s=o.offset,l=new Fl({style:{fill:t.getData().getVisual("style").fill},shape:{cx:a[0]+9*s,cy:a[1],r:3},silent:!0,z2:8+(s?0:11)});if(!s){var u=t.mainSeries.getData(),h=i.getName(n),c=u.indexOfName(h),p=i.getItemModel(n),d=p.getModel("label"),f=u.getItemGraphicEl(c);_h(l,xh(p),{labelFetcher:{getFormattedLabel:function(e,n){return t.getFormattedLabel(c,n)}}}),l.disableLabelAnimation=!0,d.get("position")||l.setTextConfig({position:"bottom"}),f.onHoverStateChange=function(t){Zs(l,t)}}r.add(l)}}}))},e.type="map",e}(Xf),RI=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.needsDrawMap=!1,n.seriesGroup=[],n.getTooltipPosition=function(t){if(null!=t){var e=this.getData().getName(t),n=this.coordinateSystem,i=n.getRegion(e);return i&&n.dataToPoint(i.getCenter())}},n}return n(e,t),e.prototype.getInitialData=function(t){for(var e=jS(this,{coordDimensions:["value"],encodeDefaulter:V(mp,this)}),n=ht(),i=[],r=0,o=e.count();r-1&&(n.style.stroke=n.style.fill,n.style.fill="#fff",n.style.lineWidth=2),n},e.type="series.map",e.dependencies=["geo"],e.layoutMode="box",e.defaultOption={zlevel:0,z:2,coordinateSystem:"geo",map:"",left:"center",top:"center",aspectScale:null,showLegendSymbol:!0,boundingCoords:null,center:null,zoom:1,scaleLimit:null,selectedMode:!0,label:{show:!1,color:"#000"},itemStyle:{borderWidth:.5,borderColor:"#444",areaColor:"#eee"},emphasis:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{areaColor:"rgba(255,215,0,0.8)"}},select:{label:{show:!0,color:"rgb(100,0,0)"},itemStyle:{color:"rgba(255,215,0,0.8)"}},nameProperty:"name"},e}(Of);function NI(t){var e={};t.eachSeriesByType("map",(function(t){var n=t.getHostGeoModel(),i=n?"o"+n.id:"i"+t.getMapType();(e[i]=e[i]||[]).push(t)})),P(e,(function(t,e){for(var n,i,r,o=(n=O(t,(function(t){return t.getData()})),i=t[0].get("mapValueCalculation"),r={},P(n,(function(t){t.each(t.mapDimension("value"),(function(e,n){var i="ec-"+t.getName(n);r[i]=r[i]||[],isNaN(e)||r[i].push(e)}))})),n[0].map(n[0].mapDimension("value"),(function(t,e){for(var o="ec-"+n[0].getName(e),a=0,s=1/0,l=-1/0,u=r[o].length,h=0;h1?(s.width=a,s.height=a/d):(s.height=a,s.width=a*d),s.y=o[1]-s.height/2,s.x=o[0]-s.width/2;else{var g=t.getBoxLayoutParams();g.aspect=d,s=Zc(g,{width:c,height:p})}this.setViewRect(s.x,s.y,s.width,s.height),this.setCenter(t.get("center")),this.setZoom(t.get("zoom"))}k(HI,BI);var XI=new(function(){function t(){this.dimensions=FI}return t.prototype.create=function(t,e){var n=[];t.eachComponent("geo",(function(t,i){var r=t.get("map"),o=new HI(r+i,r,{nameMap:t.get("nameMap"),nameProperty:t.get("nameProperty"),aspectScale:t.get("aspectScale")});o.zoomLimit=t.get("scaleLimit"),n.push(o),t.coordinateSystem=o,o.model=t,o.resize=UI,o.resize(t,e)})),t.eachSeries((function(t){if("geo"===t.get("coordinateSystem")){var e=t.get("geoIndex")||0;t.coordinateSystem=n[e]}}));var i={};return t.eachSeriesByType("map",(function(t){if(!t.getHostGeoModel()){var e=t.getMapType();i[e]=i[e]||[],i[e].push(t)}})),P(i,(function(t,i){var r=O(t,(function(t){return t.get("nameMap")})),o=new HI(i,i,{nameMap:M(r),nameProperty:t[0].get("nameProperty"),aspectScale:t[0].get("aspectScale")});o.zoomLimit=Q.apply(null,O(t,(function(t){return t.get("scaleLimit")}))),n.push(o),o.resize=UI,o.resize(t[0],e),P(t,(function(t){t.coordinateSystem=o,function(t,e){P(e.get("geoCoord"),(function(e,n){t.addGeoCoord(n,e)}))}(o,t)}))})),n},t.prototype.getFilledRegions=function(t,e,n,i){for(var r=(t||[]).slice(),o=ht(),a=0;a=0;){var o=e[n];o.hierNode.prelim+=i,o.hierNode.modifier+=i,r+=o.hierNode.change,i+=o.hierNode.shift+r}}(t);var o=(n[0].hierNode.prelim+n[n.length-1].hierNode.prelim)/2;r?(t.hierNode.prelim=r.hierNode.prelim+e(t,r),t.hierNode.modifier=t.hierNode.prelim-o):t.hierNode.prelim=o}else r&&(t.hierNode.prelim=r.hierNode.prelim+e(t,r));t.parentNode.hierNode.defaultAncestor=function(t,e,n,i){if(e){for(var r=t,o=t,a=o.parentNode.children[0],s=e,l=r.hierNode.modifier,u=o.hierNode.modifier,h=a.hierNode.modifier,c=s.hierNode.modifier;s=tT(s),o=eT(o),s&&o;){r=tT(r),a=eT(a),r.hierNode.ancestor=t;var p=s.hierNode.prelim+c-o.hierNode.prelim-u+i(s,o);p>0&&(iT(nT(s,t,n),t,p),u+=p,l+=p),c+=s.hierNode.modifier,u+=o.hierNode.modifier,l+=r.hierNode.modifier,h+=a.hierNode.modifier}s&&!tT(r)&&(r.hierNode.thread=s,r.hierNode.modifier+=c-l),o&&!eT(a)&&(a.hierNode.thread=o,a.hierNode.modifier+=u-h,n=t)}return n}(t,r,t.parentNode.hierNode.defaultAncestor||i[0],e)}function $I(t){var e=t.hierNode.prelim+t.parentNode.hierNode.modifier;t.setLayout({x:e},!0),t.hierNode.modifier+=t.parentNode.hierNode.modifier}function JI(t){return arguments.length?t:rT}function QI(t,e){return t-=Math.PI/2,{x:e*Math.cos(t),y:e*Math.sin(t)}}function tT(t){var e=t.children;return e.length&&t.isExpand?e[e.length-1]:t.hierNode.thread}function eT(t){var e=t.children;return e.length&&t.isExpand?e[0]:t.hierNode.thread}function nT(t,e,n){return t.hierNode.ancestor.parentNode===e.parentNode?t.hierNode.ancestor:n}function iT(t,e,n){var i=n/(e.hierNode.i-t.hierNode.i);e.hierNode.change-=i,e.hierNode.shift+=n,e.hierNode.modifier+=n,e.hierNode.prelim+=n,t.hierNode.change+=i}function rT(t,e){return t.parentNode===e.parentNode?1:2}var oT=function(){this.parentPoint=[],this.childPoints=[]},aT=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new oT},e.prototype.buildPath=function(t,e){var n=e.childPoints,i=n.length,r=e.parentPoint,o=n[0],a=n[i-1];if(1===i)return t.moveTo(r[0],r[1]),void t.lineTo(o[0],o[1]);var s=e.orient,l="TB"===s||"BT"===s?0:1,u=1-l,h=ji(e.forkPosition,1),c=[];c[l]=r[l],c[u]=r[u]+(a[u]-r[u])*h,t.moveTo(r[0],r[1]),t.lineTo(c[0],c[1]),t.moveTo(o[0],o[1]),c[l]=o[l],t.lineTo(c[0],c[1]),c[l]=a[l],t.lineTo(c[0],c[1]),t.lineTo(a[0],a[1]);for(var p=1;pm.x)||(x-=Math.PI);var S=b?"left":"right",M=s.getModel("label"),I=M.get("rotate"),C=I*(Math.PI/180),D=y.getTextContent();D&&(y.setTextConfig({position:M.get("position")||S,rotation:null==I?-x:C,origin:"center"}),D.setStyle("verticalAlign","middle"))}var A=s.get(["emphasis","focus"]),k="ancestor"===A?a.getAncestorsIndices():"descendant"===A?a.getDescendantIndices():null;k&&(ws(n).focus=k),function(t,e,n,i,r,o,a,s){var l=e.getModel(),u=t.get("edgeShape"),h=t.get("layout"),c=t.getOrient(),p=t.get(["lineStyle","curveness"]),d=t.get("edgeForkPosition"),f=l.getModel("lineStyle").getLineStyle(),g=i.__edge;if("curve"===u)e.parentNode&&e.parentNode!==n&&(g||(g=i.__edge=new _u({shape:dT(h,c,p,r,r)})),zu(g,{shape:dT(h,c,p,o,a)},t));else if("polyline"===u)if("orthogonal"===h){if(e!==n&&e.children&&0!==e.children.length&&!0===e.isExpand){for(var y=e.children,v=[],m=0;me&&(e=i.height)}this.height=e+1},t.prototype.getNodeById=function(t){if(this.getId()===t)return this;for(var e=0,n=this.children,i=n.length;e=0&&this.hostTree.data.setItemLayout(this.dataIndex,t,e)},t.prototype.getLayout=function(){return this.hostTree.data.getItemLayout(this.dataIndex)},t.prototype.getModel=function(t){if(!(this.dataIndex<0))return this.hostTree.data.getItemModel(this.dataIndex).getModel(t)},t.prototype.getLevelModel=function(){return(this.hostTree.levelModels||[])[this.depth]},t.prototype.setVisual=function(t,e){this.dataIndex>=0&&this.hostTree.data.setItemVisual(this.dataIndex,t,e)},t.prototype.getVisual=function(t){return this.hostTree.data.getItemVisual(this.dataIndex,t)},t.prototype.getRawIndex=function(){return this.hostTree.data.getRawIndex(this.dataIndex)},t.prototype.getId=function(){return this.hostTree.data.getId(this.dataIndex)},t.prototype.getChildIndex=function(){if(this.parentNode){for(var t=this.parentNode.children,e=0;e=0){var i=n.getData().tree.root,r=t.targetNode;if("string"==typeof r&&(r=i.getNodeById(r)),r&&i.contains(r))return{node:r};var o=t.targetNodeId;if(null!=o&&(r=i.getNodeById(o)))return{node:r}}}function TT(t){for(var e=[];t;)(t=t.parentNode)&&e.push(t);return e.reverse()}function CT(t,e){return D(TT(t),e)>=0}function DT(t,e){for(var n=[];t;){var i=t.dataIndex;n.push({name:t.name,dataIndex:i,value:e.getRawValue(i)}),t=t.parentNode}return n.reverse(),n}var AT=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.hasSymbolVisual=!0,e.ignoreStyleOnData=!0,e}return n(e,t),e.prototype.getInitialData=function(t){var e={name:t.name,children:t.data},n=t.leaves||{},i=new Hh(n,this,this.ecModel),r=MT.createTree(e,this,(function(t){t.wrapMethod("getItemModel",(function(t,e){var n=r.getNodeByDataIndex(e);return n&&n.children.length&&n.isExpand||(t.parentModel=i),t}))}));var o=0;r.eachNode("preorder",(function(t){t.depth>o&&(o=t.depth)}));var a=t.expandAndCollapse&&t.initialTreeDepth>=0?t.initialTreeDepth:o;return r.root.eachNode("preorder",(function(t){var e=t.hostTree.data.getRawDataItem(t.dataIndex);t.isExpand=e&&null!=e.collapsed?!e.collapsed:t.depth<=a})),r.data},e.prototype.getOrient=function(){var t=this.get("orient");return"horizontal"===t?t="LR":"vertical"===t&&(t="TB"),t},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.formatTooltip=function(t,e,n){for(var i=this.getData().tree,r=i.root.children[0],o=i.getNodeByDataIndex(t),a=o.getValue(),s=o.name;o&&o!==r;)s=o.parentNode.name+"."+s,o=o.parentNode;return xf("nameValue",{name:s,value:a,noValue:isNaN(a)||null==a})},e.prototype.getDataParams=function(e){var n=t.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(e);return n.treeAncestors=DT(i,this),n},e.type="series.tree",e.layoutMode="box",e.defaultOption={zlevel:0,z:2,coordinateSystem:"view",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:"#ccc",width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderWidth:1.5},label:{show:!0},animationEasing:"linear",animationDuration:700,animationDurationUpdate:500},e}(Of);function kT(t,e){for(var n,i=[t];n=i.pop();)if(e(n),n.isExpand){var r=n.children;if(r.length)for(var o=r.length-1;o>=0;o--)i.push(r[o])}}function LT(t,e){t.eachSeriesByType("tree",(function(t){!function(t,e){var n=function(t,e){return Zc(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e);t.layoutInfo=n;var i=t.get("layout"),r=0,o=0,a=null;"radial"===i?(r=2*Math.PI,o=Math.min(n.height,n.width)/2,a=JI((function(t,e){return(t.parentNode===e.parentNode?1:2)/t.depth}))):(r=n.width,o=n.height,a=JI());var s=t.getData().tree.root,l=s.children[0];if(l){!function(t){var e=t;e.hierNode={defaultAncestor:null,ancestor:e,prelim:0,modifier:0,change:0,shift:0,i:0,thread:null};for(var n,i,r=[e];n=r.pop();)if(i=n.children,n.isExpand&&i.length)for(var o=i.length-1;o>=0;o--){var a=i[o];a.hierNode={defaultAncestor:null,ancestor:a,prelim:0,modifier:0,change:0,shift:0,i:o,thread:null},r.push(a)}}(s),function(t,e,n){for(var i,r=[t],o=[];i=r.pop();)if(o.push(i),i.isExpand){var a=i.children;if(a.length)for(var s=0;sh.getLayout().x&&(h=t),t.depth>c.depth&&(c=t)}));var p=u===h?1:a(u,h)/2,d=p-u.getLayout().x,f=0,g=0,y=0,v=0;if("radial"===i)f=r/(h.getLayout().x+p+d),g=o/(c.depth-1||1),kT(l,(function(t){y=(t.getLayout().x+d)*f,v=(t.depth-1)*g;var e=QI(y,v);t.setLayout({x:e.x,y:e.y,rawX:y,rawY:v},!0)}));else{var m=t.getOrient();"RL"===m||"LR"===m?(g=o/(h.getLayout().x+p+d),f=r/(c.depth-1||1),kT(l,(function(t){v=(t.getLayout().x+d)*g,y="LR"===m?(t.depth-1)*f:r-(t.depth-1)*f,t.setLayout({x:y,y:v},!0)}))):"TB"!==m&&"BT"!==m||(f=r/(h.getLayout().x+p+d),g=o/(c.depth-1||1),kT(l,(function(t){y=(t.getLayout().x+d)*f,v="TB"===m?(t.depth-1)*g:o-(t.depth-1)*g,t.setLayout({x:y,y:v},!0)})))}}}(t,e)}))}function PT(t){t.eachSeriesByType("tree",(function(t){var e=t.getData();e.tree.eachNode((function(t){var n=t.getModel().getModel("itemStyle").getItemStyle();I(e.ensureUniqueItemVisual(t.dataIndex,"style"),n)}))}))}var OT=function(){},RT=["treemapZoomToNode","treemapRender","treemapMove"];function NT(t){var e=t.getData().tree,n={};e.eachNode((function(e){for(var i=e;i&&i.depth>1;)i=i.parentNode;var r=Ap(t.ecModel,i.name||i.dataIndex+"",n);e.setVisual("decal",r)}))}var zT=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.preventUsingHoverLayer=!0,n}return n(e,t),e.prototype.getInitialData=function(t,e){var n={name:t.name,children:t.data};ET(n);var i=t.levels||[],r=this.designatedVisualItemStyle={},o=new Hh({itemStyle:r},this,e),a=O((i=t.levels=function(t,e){var n,i,r=br(e.get("color")),o=br(e.get(["aria","decal","decals"]));if(!r)return;P(t=t||[],(function(t){var e=new Hh(t),r=e.get("color"),o=e.get("decal");(e.get(["itemStyle","color"])||r&&"none"!==r)&&(n=!0),(e.get(["itemStyle","decal"])||o&&"none"!==o)&&(i=!0)}));var a=t[0]||(t[0]={});n||(a.color=r.slice());!i&&o&&(a.decal=o.slice());return t}(i,e))||[],(function(t){return new Hh(t,o,e)}),this),s=MT.createTree(n,this,(function(t){t.wrapMethod("getItemModel",(function(t,e){var n=s.getNodeByDataIndex(e),i=n?a[n.depth]:null;return t.parentModel=i||o,t}))}));return s.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.formatTooltip=function(t,e,n){var i=this.getData(),r=this.getRawValue(t);return xf("nameValue",{name:i.getName(t),value:r})},e.prototype.getDataParams=function(e){var n=t.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(e);return n.treeAncestors=DT(i,this),n.treePathInfo=n.treeAncestors,n},e.prototype.setLayoutInfo=function(t){this.layoutInfo=this.layoutInfo||{},I(this.layoutInfo,t)},e.prototype.mapIdToIndex=function(t){var e=this._idIndexMap;e||(e=this._idIndexMap=ht(),this._idIndexMapCount=0);var n=e.get(t);return null==n&&e.set(t,n=this._idIndexMapCount++),n},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)},e.prototype.enableAriaDecal=function(){NT(this)},e.type="series.treemap",e.layoutMode="box",e.defaultOption={progressive:0,left:"center",top:"middle",width:"80%",height:"80%",sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"▶",zoomToNodeRatio:.1024,roam:!0,nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",top:"bottom",emptyItemWidth:25,itemStyle:{color:"rgba(0,0,0,0.7)",textStyle:{color:"#fff"}}},label:{show:!0,distance:0,padding:5,position:"inside",color:"#fff",overflow:"truncate"},upperLabel:{show:!1,position:[0,"50%"],height:20,overflow:"truncate",verticalAlign:"middle"},itemStyle:{color:null,colorAlpha:null,colorSaturation:null,borderWidth:0,gapWidth:0,borderColor:"#fff",borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],ellipsis:!0,verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},e}(Of);function ET(t){var e=0;P(t.children,(function(t){ET(t);var n=t.value;G(n)&&(n=n[0]),e+=n}));var n=t.value;G(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=e),n<0&&(n=0),G(t.value)?t.value[0]=n:t.value=n}var BT=function(){function t(t){this.group=new Bi,t.add(this.group)}return t.prototype.render=function(t,e,n,i){var r=t.getModel("breadcrumb"),o=this.group;if(o.removeAll(),r.get("show")&&n){var a=r.getModel("itemStyle"),s=a.getModel("textStyle"),l={pos:{left:r.get("left"),right:r.get("right"),top:r.get("top"),bottom:r.get("bottom")},box:{width:e.getWidth(),height:e.getHeight()},emptyItemWidth:r.get("emptyItemWidth"),totalWidth:0,renderList:[]};this._prepare(n,l,s),this._renderContent(t,l,a,s,i),jc(o,l.pos,l.box)}},t.prototype._prepare=function(t,e,n){for(var i=t;i;i=i.parentNode){var r=Ar(i.getModel().get("name"),""),o=n.getTextRect(r),a=Math.max(o.width+16,e.emptyItemWidth);e.totalWidth+=a+8,e.renderList.push({node:i,text:r,width:a})}},t.prototype._renderContent=function(t,e,n,i,r){for(var o,a,s,l,u,h,c,p,d,f=0,g=e.emptyItemWidth,y=t.get(["breadcrumb","height"]),v=(o=e.pos,a=e.box,l=a.width,u=a.height,h=ji(o.left,l),c=ji(o.top,u),p=ji(o.right,l),d=ji(o.bottom,u),(isNaN(h)||isNaN(parseFloat(o.left)))&&(h=0),(isNaN(p)||isNaN(parseFloat(o.right)))&&(p=l),(isNaN(c)||isNaN(parseFloat(o.top)))&&(c=0),(isNaN(d)||isNaN(parseFloat(o.bottom)))&&(d=u),s=Lc(s||0),{width:Math.max(p-h-s[1]-s[3],0),height:Math.max(d-c-s[0]-s[2],0)}),m=e.totalWidth,_=e.renderList,x=_.length-1;x>=0;x--){var b=_[x],w=b.node,S=b.width,M=b.text;m>v.width&&(m-=S-g,S=g,M=null);var I=new hu({shape:{points:VT(f,0,S,y,x===_.length-1,0===x)},style:T(n.getItemStyle(),{lineJoin:"bevel"}),textContent:new ds({style:{text:M,fill:i.getTextColor(),font:i.getFont()}}),textConfig:{position:"inside"},z2:1e5,onclick:V(r,w)});I.disableLabelAnimation=!0,this.group.add(I),GT(I,t,w),f+=S+8}},t.prototype.remove=function(){this.group.removeAll()},t}();function VT(t,e,n,i,r,o){var a=[[r?t:t-5,e],[t+n,e],[t+n,e+i],[r?t:t-5,e+i]];return!o&&a.splice(2,0,[t+n+5,e+i/2]),!r&&a.push([t,e+i/2]),a}function GT(t,e,n){ws(t).eventData={componentType:"series",componentSubType:"treemap",componentIndex:e.componentIndex,seriesIndex:e.componentIndex,seriesName:e.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:n&&n.dataIndex,name:n&&n.name},treePathInfo:n&&DT(n,e)}}var FT=function(){function t(){this._storage=[],this._elExistsMap={}}return t.prototype.add=function(t,e,n,i,r){return!this._elExistsMap[t.id]&&(this._elExistsMap[t.id]=!0,this._storage.push({el:t,target:e,duration:n,delay:i,easing:r}),!0)},t.prototype.finished=function(t){return this._finishedCallback=t,this},t.prototype.start=function(){for(var t=this,e=this._storage.length,n=function(){--e<=0&&(t._storage.length=0,t._elExistsMap={},t._finishedCallback&&t._finishedCallback())},i=0,r=this._storage.length;i3||Math.abs(t.dy)>3)){var e=this.seriesModel.getData().tree.root;if(!e)return;var n=e.getLayout();if(!n)return;this.api.dispatchAction({type:"treemapMove",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:n.x+t.dx,y:n.y+t.dy,width:n.width,height:n.height}})}},e.prototype._onZoom=function(t){var e=t.originX,n=t.originY;if("animating"!==this._state){var i=this.seriesModel.getData().tree.root;if(!i)return;var r=i.getLayout();if(!r)return;var o=new yi(r.x,r.y,r.width,r.height),a=this.seriesModel.layoutInfo,s=[1,0,0,1,0,0];Un(s,s,[-(e-=a.x),-(n-=a.y)]),Yn(s,s,[t.scale,t.scale]),Un(s,s,[e,n]),o.applyTransform(s),this.api.dispatchAction({type:"treemapRender",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:o.x,y:o.y,width:o.width,height:o.height}})}},e.prototype._initEvents=function(t){var e=this;t.on("click",(function(t){if("ready"===e._state){var n=e.seriesModel.get("nodeClick",!0);if(n){var i=e.findTarget(t.offsetX,t.offsetY);if(i){var r=i.node;if(r.getLayout().isLeafRoot)e._rootToNode(i);else if("zoomToNode"===n)e._zoomToNode(i);else if("link"===n){var o=r.hostTree.data.getItemModel(r.dataIndex),a=o.get("link",!0),s=o.get("target",!0)||"blank";a&&Fc(a,s)}}}}}),this)},e.prototype._renderBreadcrumb=function(t,e,n){var i=this;n||(n=null!=t.get("leafDepth",!0)?{node:t.getViewRoot()}:this.findTarget(e.getWidth()/2,e.getHeight()/2))||(n={node:t.getData().tree.root}),(this._breadcrumb||(this._breadcrumb=new BT(this.group))).render(t,e,n.node,(function(e){"animating"!==i._state&&(CT(t.getViewRoot(),e)?i._rootToNode({node:e}):i._zoomToNode({node:e}))}))},e.prototype.remove=function(){this._clearController(),this._containerGroup&&this._containerGroup.removeAll(),this._storage={nodeGroup:[],background:[],content:[]},this._state="ready",this._breadcrumb&&this._breadcrumb.remove()},e.prototype.dispose=function(){this._clearController()},e.prototype._zoomToNode=function(t){this.api.dispatchAction({type:"treemapZoomToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype._rootToNode=function(t){this.api.dispatchAction({type:"treemapRootToNode",from:this.uid,seriesId:this.seriesModel.id,targetNode:t.node})},e.prototype.findTarget=function(t,e){var n;return this.seriesModel.getViewRoot().eachNode({attr:"viewChildren",order:"preorder"},(function(i){var r=this._storage.background[i.getRawIndex()];if(r){var o=r.transformCoordToLocal(t,e),a=r.shape;if(!(a.x<=o[0]&&o[0]<=a.x+a.width&&a.y<=o[1]&&o[1]<=a.y+a.height))return!1;n={node:i,offsetX:o[0],offsetY:o[1]}}}),this),n},e.type="treemap",e}(Xf);var KT=P,$T=X,JT=-1,QT=function(){function t(e){var n=e.mappingMethod,i=e.type,r=this.option=w(e);this.type=i,this.mappingMethod=n,this._normalizeData=uC[n];var o=t.visualHandlers[i];this.applyVisual=o.applyVisual,this.getColorMapper=o.getColorMapper,this._normalizedToVisual=o._normalizedToVisual[n],"piecewise"===n?(tC(r),function(t){var e=t.pieceList;t.hasSpecialVisual=!1,P(e,(function(e,n){e.originIndex=n,null!=e.visual&&(t.hasSpecialVisual=!0)}))}(r)):"category"===n?r.categories?function(t){var e=t.categories,n=t.categoryMap={},i=t.visual;if(KT(e,(function(t,e){n[t]=e})),!G(i)){var r=[];X(i)?KT(i,(function(t,e){var i=n[e];r[null!=i?i:JT]=t})):r[-1]=i,i=lC(t,r)}for(var o=e.length-1;o>=0;o--)null==i[o]&&(delete n[e[o]],e.pop())}(r):tC(r,!0):(rt("linear"!==n||r.dataExtent),tC(r))}return t.prototype.mapValueToVisual=function(t){var e=this._normalizeData(t);return this._normalizedToVisual(e,t)},t.prototype.getNormalizer=function(){return B(this._normalizeData,this)},t.listVisualTypes=function(){return E(t.visualHandlers)},t.isValidType=function(e){return t.visualHandlers.hasOwnProperty(e)},t.eachVisual=function(t,e,n){X(t)?P(t,e,n):e.call(n,t)},t.mapVisual=function(e,n,i){var r,o=G(e)?[]:X(e)?{}:(r=!0,null);return t.eachVisual(e,(function(t,e){var a=n.call(i,t,e);r?o=a:o[e]=a})),o},t.retrieveVisuals=function(e){var n,i={};return e&&KT(t.visualHandlers,(function(t,r){e.hasOwnProperty(r)&&(i[r]=e[r],n=!0)})),n?i:null},t.prepareVisualTypes=function(t){if(G(t))t=t.slice();else{if(!$T(t))return[];var e=[];KT(t,(function(t,n){e.push(n)})),t=e}return t.sort((function(t,e){return"color"===e&&"color"!==t&&0===t.indexOf("color")?1:-1})),t},t.dependsOn=function(t,e){return"color"===e?!(!t||0!==t.indexOf(e)):t===e},t.findPieceIndex=function(t,e,n){for(var i,r=1/0,o=0,a=e.length;ou[1]&&(u[1]=l);var h=e.get("colorMappingBy"),c={type:a.name,dataExtent:u,visual:a.range};"color"!==c.type||"index"!==h&&"id"!==h?c.mappingMethod="linear":(c.mappingMethod="category",c.loop=!0);var p=new QT(c);return cC(p).drColorMappingBy=h,p}(0,r,o,0,u,d);P(d,(function(t,e){if(t.depth>=n.length||t===n[t.depth]){var o=function(t,e,n,i,r,o){var a=I({},e);if(r){var s=r.type,l="color"===s&&cC(r).drColorMappingBy,u="index"===l?i:"id"===l?o.mapIdToIndex(n.getId()):n.getValue(t.get("visualDimension"));a[s]=r.mapValueToVisual(u)}return a}(r,u,t,e,f,i);dC(t,o,n,i)}}))}else s=fC(u),h.fill=s}}function fC(t){var e=gC(t,"color");if(e){var n=gC(t,"colorAlpha"),i=gC(t,"colorSaturation");return i&&(e=Ke(e,null,null,i)),n&&(e=$e(e,n)),e}}function gC(t,e){var n=t[e];if(null!=n&&"none"!==n)return n}function yC(t,e){var n=t.get(e);return G(n)&&n.length?{name:e,range:n}:null}var vC=Math.max,mC=Math.min,_C=Q,xC=P,bC=["itemStyle","borderWidth"],wC=["itemStyle","gapWidth"],SC=["upperLabel","show"],MC=["upperLabel","height"],IC={seriesType:"treemap",reset:function(t,e,n,i){var r=n.getWidth(),o=n.getHeight(),a=t.option,s=Zc(t.getBoxLayoutParams(),{width:n.getWidth(),height:n.getHeight()}),l=a.size||[],u=ji(_C(s.width,l[0]),r),h=ji(_C(s.height,l[1]),o),c=i&&i.type,p=IT(i,["treemapZoomToNode","treemapRootToNode"],t),d="treemapRender"===c||"treemapMove"===c?i.rootRect:null,f=t.getViewRoot(),g=TT(f);if("treemapMove"!==c){var y="treemapZoomToNode"===c?function(t,e,n,i,r){var o,a=(e||{}).node,s=[i,r];if(!a||a===n)return s;var l=i*r,u=l*t.option.zoomToNodeRatio;for(;o=a.parentNode;){for(var h=0,c=o.children,p=0,d=c.length;pnr&&(u=nr),a=o}ua[1]&&(a[1]=e)}))):a=[NaN,NaN];return{sum:i,dataExtent:a}}(e,a,s);if(0===u.sum)return t.viewChildren=[];if(u.sum=function(t,e,n,i,r){if(!i)return n;for(var o=t.get("visibleMin"),a=r.length,s=a,l=a-1;l>=0;l--){var u=r["asc"===i?a-l-1:l].getValue();u/n*ei&&(i=a));var l=t.area*t.area,u=e*e*n;return l?vC(u*i/l,l/(u*r)):1/0}function DC(t,e,n,i,r){var o=e===n.width?0:1,a=1-o,s=["x","y"],l=["width","height"],u=n[s[o]],h=e?t.area/e:0;(r||h>n[l[a]])&&(h=n[l[a]]);for(var c=0,p=t.length;ci&&(i=e);var o=i%2?i+2:i+3;r=[];for(var a=0;a0&&(m[0]=-m[0],m[1]=-m[1]);var x=v[0]<0?-1:1;if("start"!==i.__position&&"end"!==i.__position){var b=-Math.atan2(v[1],v[0]);u[0].8?"left":h[0]<-.8?"right":"center",p=h[1]>.8?"top":h[1]<-.8?"bottom":"middle";break;case"start":i.x=-h[0]*f+l[0],i.y=-h[1]*g+l[1],c=h[0]>.8?"right":h[0]<-.8?"left":"center",p=h[1]>.8?"bottom":h[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":i.x=f*x+l[0],i.y=l[1]+w,c=v[0]<0?"right":"left",i.originX=-f*x,i.originY=-w;break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":i.x=_[0],i.y=_[1]+w,c="center",i.originY=-w;break;case"insideEndTop":case"insideEnd":case"insideEndBottom":i.x=-f*x+u[0],i.y=u[1]+w,c=v[0]>=0?"right":"left",i.originX=f*x,i.originY=-w}i.scaleX=i.scaleY=r,i.setStyle({verticalAlign:i.__verticalAlign||p,align:i.__align||c})}}}function S(t,e){var n=t.__specifiedRotation;if(null==n){var i=a.tangentAt(e);t.attr("rotation",(1===e?-1:1)*Math.PI/2-Math.atan2(i[1],i[0]))}else t.attr("rotation",n)}},e}(Bi),cD=function(){function t(t){this.group=new Bi,this._LineCtor=t||hD}return t.prototype.isPersistent=function(){return!0},t.prototype.updateData=function(t){var e=this,n=this,i=n.group,r=n._lineData;n._lineData=t,r||i.removeAll();var o=pD(t);t.diff(r).add((function(n){e._doAdd(t,n,o)})).update((function(n,i){e._doUpdate(r,t,i,n,o)})).remove((function(t){i.remove(r.getItemGraphicEl(t))})).execute()},t.prototype.updateLayout=function(){var t=this._lineData;t&&t.eachItemGraphicEl((function(e,n){e.updateLayout(t,n)}),this)},t.prototype.incrementalPrepareUpdate=function(t){this._seriesScope=pD(t),this._lineData=null,this.group.removeAll()},t.prototype.incrementalUpdate=function(t,e){function n(t){t.isGroup||function(t){return t.animators&&t.animators.length>0}(t)||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}for(var i=t.start;i=0?i+=u:i-=u:f>=0?i-=u:i+=u}return i}function wD(t,e){var n=[],i=qo,r=[[],[],[]],o=[[],[]],a=[];e/=2,t.eachEdge((function(t,s){var l=t.getLayout(),u=t.getVisual("fromSymbol"),h=t.getVisual("toSymbol");l.__original||(l.__original=[mt(l[0]),mt(l[1])],l[2]&&l.__original.push(mt(l[2])));var c=l.__original;if(null!=l[2]){if(vt(r[0],c[0]),vt(r[1],c[2]),vt(r[2],c[1]),u&&"none"!==u){var p=YC(t.node1),d=bD(r,c[0],p*e);i(r[0][0],r[1][0],r[2][0],d,n),r[0][0]=n[3],r[1][0]=n[4],i(r[0][1],r[1][1],r[2][1],d,n),r[0][1]=n[3],r[1][1]=n[4]}if(h&&"none"!==h){p=YC(t.node2),d=bD(r,c[1],p*e);i(r[0][0],r[1][0],r[2][0],d,n),r[1][0]=n[1],r[2][0]=n[2],i(r[0][1],r[1][1],r[2][1],d,n),r[1][1]=n[1],r[2][1]=n[2]}vt(l[0],r[0]),vt(l[1],r[2]),vt(l[2],r[1])}else{if(vt(o[0],c[0]),vt(o[1],c[1]),wt(a,o[1],o[0]),Dt(a,a),u&&"none"!==u){p=YC(t.node1);bt(o[0],o[0],a,p*e)}if(h&&"none"!==h){p=YC(t.node2);bt(o[1],o[1],a,-p*e)}vt(l[0],o[0]),vt(l[1],o[1])}}))}function SD(t){return"view"===t.type}var MD=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(t,e){var n=new Pw,i=new cD,r=this.group;this._controller=new dI(e.getZr()),this._controllerHost={target:r},r.add(n.group),r.add(i.group),this._symbolDraw=n,this._lineDraw=i,this._firstRender=!0},e.prototype.render=function(t,e,n){var i=this,r=t.coordinateSystem;this._model=t;var o=this._symbolDraw,a=this._lineDraw,s=this.group;if(SD(r)){var l={x:r.x,y:r.y,scaleX:r.scaleX,scaleY:r.scaleY};this._firstRender?s.attr(l):zu(s,l,t)}wD(t.getGraph(),XC(t));var u=t.getData();o.updateData(u);var h=t.getEdgeData();a.updateData(h),this._updateNodeAndLinkScale(),this._updateController(t,e,n),clearTimeout(this._layoutTimeout);var c=t.forceLayout,p=t.get(["force","layoutAnimation"]);c&&this._startForceLayoutIteration(c,p),u.graph.eachNode((function(t){var e=t.dataIndex,n=t.getGraphicEl(),r=t.getModel();n.off("drag").off("dragend");var o=r.get("draggable");o&&n.on("drag",(function(){c&&(c.warmUp(),!i._layouting&&i._startForceLayoutIteration(c,p),c.setFixed(e),u.setItemLayout(e,[n.x,n.y]))})).on("dragend",(function(){c&&c.setUnfixed(e)})),n.setDraggable(o&&!!c),"adjacency"===r.get(["emphasis","focus"])&&(ws(n).focus=t.getAdjacentDataIndices())})),u.graph.eachEdge((function(t){var e=t.getGraphicEl();"adjacency"===t.getModel().get(["emphasis","focus"])&&(ws(e).focus={edge:[t.dataIndex],node:[t.node1.dataIndex,t.node2.dataIndex]})}));var d="circular"===t.get("layout")&&t.get(["circular","rotateLabel"]),f=u.getLayout("cx"),g=u.getLayout("cy");u.eachItemGraphicEl((function(t,e){var n=u.getItemModel(e).get(["label","rotate"])||0,i=t.getSymbolPath();if(d){var r=u.getItemLayout(e),o=Math.atan2(r[1]-g,r[0]-f);o<0&&(o=2*Math.PI+o);var a=r[0]=0&&t.call(e,n[r],r)},t.prototype.eachEdge=function(t,e){for(var n=this.edges,i=n.length,r=0;r=0&&n[r].node1.dataIndex>=0&&n[r].node2.dataIndex>=0&&t.call(e,n[r],r)},t.prototype.breadthFirstTraverse=function(t,e,n,i){if(e instanceof CD||(e=this._nodesMap[ID(e)]),e){for(var r="out"===n?"outEdges":"in"===n?"inEdges":"edges",o=0;o=0&&n.node2.dataIndex>=0}));for(r=0,o=i.length;r=0&&this[t][e].setItemVisual(this.dataIndex,n,i)},getVisual:function(n){return this[t][e].getItemVisual(this.dataIndex,n)},setLayout:function(n,i){this.dataIndex>=0&&this[t][e].setItemLayout(this.dataIndex,n,i)},getLayout:function(){return this[t][e].getItemLayout(this.dataIndex)},getGraphicEl:function(){return this[t][e].getItemGraphicEl(this.dataIndex)},getRawIndex:function(){return this[t][e].getRawIndex(this.dataIndex)}}}function kD(t,e,n,i,r){for(var o=new TD(i),a=0;a "+p)),u++)}var d,f=n.get("coordinateSystem");if("cartesian2d"===f||"polar"===f)d=y_(t,n);else{var g=Bp.get(f),y=g&&g.dimensions||[];D(y,"value")<0&&y.concat(["value"]);var v=l_(t,{coordDimensions:y,encodeDefine:n.getEncode()}).dimensions;(d=new s_(v,n)).initData(t)}var m=new s_(["value"],n);return m.initData(l,s),r&&r(d,m),gT({mainData:d,struct:o,structAttr:"graph",datas:{node:d,edge:m},datasAttr:{node:"data",edge:"edgeData"}}),o.update(),o}k(CD,AD("hostGraph","data")),k(DD,AD("hostGraph","edgeData"));var LD=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.hasSymbolVisual=!0,n}return n(e,t),e.prototype.init=function(e){t.prototype.init.apply(this,arguments);var n=this;function i(){return n._categoriesData}this.legendVisualProvider=new qS(i,i),this.fillDataTextStyle(e.edges||e.links),this._updateCategoriesData()},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(e.edges||e.links),this._updateCategoriesData()},e.prototype.mergeDefaultAndTheme=function(e){t.prototype.mergeDefaultAndTheme.apply(this,arguments),wr(e,"edgeLabel",["show"])},e.prototype.getInitialData=function(t,e){var n,i=t.edges||t.links||[],r=t.data||t.nodes||[],o=this;if(r&&i){zC(n=this)&&(n.__curvenessList=[],n.__edgeMap={},EC(n));var a=kD(r,i,this,!0,(function(t,e){t.wrapMethod("getItemModel",(function(t){var e=o._categoriesModels[t.getShallow("category")];return e&&(e.parentModel=t.parentModel,t.parentModel=e),t}));var n=Hh.prototype.getModel;function i(t,e){var i=n.call(this,t,e);return i.resolveParentPath=r,i}function r(t){if(t&&("label"===t[0]||"label"===t[1])){var e=t.slice();return"label"===t[0]?e[0]="edgeLabel":"label"===t[1]&&(e[1]="edgeLabel"),e}return t}e.wrapMethod("getItemModel",(function(t){return t.resolveParentPath=r,t.getModel=i,t}))}));return P(a.edges,(function(t){!function(t,e,n,i){if(zC(n)){var r=BC(t,e,n),o=n.__edgeMap,a=o[VC(r)];o[r]&&!a?o[r].isForward=!0:a&&o[r]&&(a.isForward=!0,o[r].isForward=!1),o[r]=o[r]||[],o[r].push(i)}}(t.node1,t.node2,this,t.dataIndex)}),this),a.data}},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.getCategoriesData=function(){return this._categoriesData},e.prototype.formatTooltip=function(t,e,n){if("edge"===n){var i=this.getData(),r=this.getDataParams(t,n),o=i.graph.getEdgeByIndex(t),a=i.getName(o.node1.dataIndex),s=i.getName(o.node2.dataIndex),l=[];return null!=a&&l.push(a),null!=s&&l.push(s),xf("nameValue",{name:l.join(" > "),value:r.value,noValue:null==r.value})}return kf({series:this,dataIndex:t,multipleSeries:e})},e.prototype._updateCategoriesData=function(){var t=O(this.option.categories||[],(function(t){return null!=t.value?t:I({value:0},t)})),e=new s_(["value"],this);e.initData(t),this._categoriesData=e,this._categoriesModels=e.mapArray((function(t){return e.getItemModel(t)}))},e.prototype.setZoom=function(t){this.option.zoom=t},e.prototype.setCenter=function(t){this.option.center=t},e.prototype.isAnimationEnabled=function(){return t.prototype.isAnimationEnabled.call(this)&&!("force"===this.get("layout")&&this.get(["force","layoutAnimation"]))},e.type="series.graph",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={zlevel:0,z:2,coordinateSystem:"view",legendHoverLink:!0,layout:null,circular:{rotateLabel:!1},force:{initLayout:null,repulsion:[0,50],gravity:.1,friction:.6,edgeLength:30,layoutAnimation:!0},left:"center",top:"center",symbol:"circle",symbolSize:10,edgeSymbol:["none","none"],edgeSymbolSize:10,edgeLabel:{position:"middle",distance:5},draggable:!1,roam:!1,center:null,zoom:1,nodeScaleRatio:.6,label:{show:!1,formatter:"{b}"},itemStyle:{},lineStyle:{color:"#aaa",width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:"#212121"}}},e}(Of),PD={type:"graphRoam",event:"graphRoam",update:"none"};var OD=function(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0},RD=function(t){function e(e){var n=t.call(this,e)||this;return n.type="pointer",n}return n(e,t),e.prototype.getDefaultShape=function(){return new OD},e.prototype.buildPath=function(t,e){var n=Math.cos,i=Math.sin,r=e.r,o=e.width,a=e.angle,s=e.x-n(a)*o*(o>=r/3?1:2),l=e.y-i(a)*o*(o>=r/3?1:2);a=e.angle-Math.PI/2,t.moveTo(s,l),t.lineTo(e.x+n(a)*o,e.y+i(a)*o),t.lineTo(e.x+n(e.angle)*r,e.y+i(e.angle)*r),t.lineTo(e.x-n(a)*o,e.y-i(a)*o),t.lineTo(s,l)},e}(Ja);function ND(t,e){var n=null==t?"":t+"";return e&&("string"==typeof e?n=e.replace("{value}",n):"function"==typeof e&&(n=e(t))),n}var zD=2*Math.PI,ED=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){this.group.removeAll();var i=t.get(["axisLine","lineStyle","color"]),r=function(t,e){var n=t.get("center"),i=e.getWidth(),r=e.getHeight(),o=Math.min(i,r);return{cx:ji(n[0],e.getWidth()),cy:ji(n[1],e.getHeight()),r:ji(t.get("radius"),o/2)}}(t,n);this._renderMain(t,e,n,i,r),this._data=t.getData()},e.prototype.dispose=function(){},e.prototype._renderMain=function(t,e,n,i,r){for(var o=this.group,a=t.get("clockwise"),s=-t.get("startAngle")/180*Math.PI,l=-t.get("endAngle")/180*Math.PI,u=t.getModel("axisLine"),h=u.get("roundCap")?dS:ru,c=u.get("show"),p=u.getModel("lineStyle"),d=p.get("width"),f=(l-s)%zD||l===s?(l-s)%zD:zD,g=s,y=0;c&&y=t&&(0===e?0:i[e-1][0]).8?"bottom":"middle",align:u<-.4?"left":u>.4?"right":"center"},{inheritColor:R}),silent:!0}))}if(m.get("show")&&k!==x){P=(P=m.get("distance"))?P+l:l;for(var N=0;N<=b;N++){u=Math.cos(M),h=Math.sin(M);var z=new gu({shape:{x1:u*(f-P)+p,y1:h*(f-P)+d,x2:u*(f-S-P)+p,y2:h*(f-S-P)+d},silent:!0,style:D});"auto"===D.stroke&&z.setStyle({stroke:i((k+N/b)/x)}),c.add(z),M+=T}M-=T}else M+=I}},e.prototype._renderPointer=function(t,e,n,i,r,o,a,s,l){var u=this.group,h=this._data,c=this._progressEls,p=[],d=t.get(["pointer","show"]),f=t.getModel("progress"),g=f.get("show"),y=t.getData(),v=y.mapDimension("value"),m=+t.get("min"),_=+t.get("max"),x=[m,_],b=[o,a];function w(e,n){var i,o=y.getItemModel(e).getModel("pointer"),a=ji(o.get("width"),r.r),s=ji(o.get("length"),r.r),l=t.get(["pointer","icon"]),u=o.get("offsetCenter"),h=ji(u[0],r.r),c=ji(u[1],r.r),p=o.get("keepAspect");return(i=l?Qg(l,h-a/2,c-s,a,s,null,p):new RD({shape:{angle:-Math.PI/2,width:a,r:s,x:h,y:c}})).rotation=-(n+Math.PI/2),i.x=r.cx,i.y=r.cy,i}function S(t,e){var n=f.get("roundCap")?dS:ru,i=f.get("overlap"),a=i?f.get("width"):l/y.count(),u=i?r.r-a:r.r-(t+1)*a,h=i?r.r:r.r-t*a,c=new n({shape:{startAngle:o,endAngle:e,cx:r.cx,cy:r.cy,clockwise:s,r0:u,r:h}});return i&&(c.z2=_-y.get(v,t)%_),c}(g||d)&&(y.diff(h).add((function(e){if(d){var n=w(e,o);Eu(n,{rotation:-(Zi(y.get(v,e),x,b,!0)+Math.PI/2)},t),u.add(n),y.setItemGraphicEl(e,n)}if(g){var i=S(e,o),r=f.get("clip");Eu(i,{shape:{endAngle:Zi(y.get(v,e),x,b,r)}},t),u.add(i),Ss(t.seriesIndex,y.dataType,e,i),p[e]=i}})).update((function(e,n){if(d){var i=h.getItemGraphicEl(n),r=i?i.rotation:o,a=w(e,r);a.rotation=r,zu(a,{rotation:-(Zi(y.get(v,e),x,b,!0)+Math.PI/2)},t),u.add(a),y.setItemGraphicEl(e,a)}if(g){var s=c[n],l=S(e,s?s.shape.endAngle:o),m=f.get("clip");zu(l,{shape:{endAngle:Zi(y.get(v,e),x,b,m)}},t),u.add(l),Ss(t.seriesIndex,y.dataType,e,l),p[e]=l}})).execute(),y.each((function(t){var e=y.getItemModel(t),n=e.getModel("emphasis");if(d){var r=y.getItemGraphicEl(t),o=y.getItemVisual(t,"style"),a=o.fill;if(r instanceof is){var s=r.style;r.useStyle(I({image:s.image,x:s.x,y:s.y,width:s.width,height:s.height},o))}else r.useStyle(o),"pointer"!==r.type&&r.setColor(a);r.setStyle(e.getModel(["pointer","itemStyle"]).getItemStyle()),"auto"===r.style.fill&&r.setStyle("fill",i(Zi(y.get(v,t),x,[0,1],!0))),r.z2EmphasisLift=0,gl(r,e),cl(r,n.get("focus"),n.get("blurScope"))}if(g){var l=p[t];l.useStyle(y.getItemVisual(t,"style")),l.setStyle(e.getModel(["progress","itemStyle"]).getItemStyle()),l.z2EmphasisLift=0,gl(l,e),cl(l,n.get("focus"),n.get("blurScope"))}})),this._progressEls=p)},e.prototype._renderAnchor=function(t,e){var n=t.getModel("anchor");if(n.get("show")){var i=n.get("size"),r=n.get("icon"),o=n.get("offsetCenter"),a=n.get("keepAspect"),s=Qg(r,e.cx-i/2+ji(o[0],e.r),e.cy-i/2+ji(o[1],e.r),i,i,null,a);s.z2=n.get("showAbove")?1:0,s.setStyle(n.getModel("itemStyle").getItemStyle()),this.group.add(s)}},e.prototype._renderTitleAndDetail=function(t,e,n,i,r){var o=this,a=t.getData(),s=a.mapDimension("value"),l=+t.get("min"),u=+t.get("max"),h=new Bi,c=[],p=[],d=t.isAnimationEnabled(),f=t.get(["pointer","showAbove"]);a.diff(this._data).add((function(t){c[t]=new ds({silent:!0}),p[t]=new ds({silent:!0})})).update((function(t,e){c[t]=o._titleEls[e],p[t]=o._detailEls[e]})).execute(),a.each((function(e){var n=a.getItemModel(e),o=a.get(s,e),g=new Bi,y=i(Zi(o,[l,u],[0,1],!0)),v=n.getModel("title");if(v.get("show")){var m=v.get("offsetCenter"),_=r.cx+ji(m[0],r.r),x=r.cy+ji(m[1],r.r);(D=c[e]).attr({z2:f?0:2,style:bh(v,{x:_,y:x,text:a.getName(e),align:"center",verticalAlign:"middle"},{inheritColor:y})}),g.add(D)}var b=n.getModel("detail");if(b.get("show")){var w=b.get("offsetCenter"),S=r.cx+ji(w[0],r.r),M=r.cy+ji(w[1],r.r),I=ji(b.get("width"),r.r),T=ji(b.get("height"),r.r),C=t.get(["progress","show"])?a.getItemVisual(e,"style").fill:y,D=p[e],A=b.get("formatter");D.attr({z2:f?0:2,style:bh(b,{x:S,y:M,text:ND(o,A),width:isNaN(I)?null:I,height:isNaN(T)?null:T,align:"center",verticalAlign:"middle"},{inheritColor:C})}),Ah(D,{normal:b},o,(function(t){return ND(t,A)})),d&&kh(D,e,a,t,{getFormattedLabel:function(t,e,n,i,r,a){return ND(a?a.interpolatedValue:o,A)}}),g.add(D)}h.add(g)})),this.group.add(h),this._titleEls=c,this._detailEls=p},e.type="gauge",e}(Xf),BD=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.visualStyleAccessPath="itemStyle",n}return n(e,t),e.prototype.getInitialData=function(t,e){return jS(this,["value"])},e.type="series.gauge",e.defaultOption={zlevel:0,z:2,colorBy:"data",center:["50%","50%"],legendHoverLink:!0,radius:"75%",startAngle:225,endAngle:-45,clockwise:!0,min:0,max:100,splitNumber:10,axisLine:{show:!0,roundCap:!1,lineStyle:{color:[[1,"#E6EBF8"]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:"#63677A",width:3,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:"#63677A",width:1,type:"solid"}},axisLabel:{show:!0,distance:15,color:"#464646",fontSize:12},pointer:{icon:null,offsetCenter:[0,0],show:!0,showAbove:!0,length:"60%",width:6,keepAspect:!1},anchor:{show:!1,showAbove:!1,size:6,icon:"circle",offsetCenter:[0,0],keepAspect:!1,itemStyle:{color:"#fff",borderWidth:0,borderColor:"#5470c6"}},title:{show:!0,offsetCenter:[0,"20%"],color:"#464646",fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:"rgba(0,0,0,0)",borderWidth:0,borderColor:"#ccc",width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:"#464646",fontSize:30,fontWeight:"bold",lineHeight:30,valueAnimation:!1}},e}(Of);var VD=["itemStyle","opacity"],GD=function(t){function e(e,n){var i=t.call(this)||this,r=i,o=new pu,a=new ds;return r.setTextContent(a),i.setTextGuideLine(o),i.updateData(e,n,!0),i}return n(e,t),e.prototype.updateData=function(t,e,n){var i=this,r=t.hostModel,o=t.getItemModel(e),a=t.getItemLayout(e),s=o.getModel("emphasis"),l=o.get(VD);l=null==l?1:l,n||Hu(i),i.useStyle(t.getItemVisual(e,"style")),i.style.lineJoin="round",n?(i.setShape({points:a.points}),i.style.opacity=0,Eu(i,{style:{opacity:l}},r,e)):zu(i,{style:{opacity:l},shape:{points:a.points}},r,e),gl(i,o),this._updateLabel(t,e),cl(this,s.get("focus"),s.get("blurScope"))},e.prototype._updateLabel=function(t,e){var n=this,i=this.getTextGuideLine(),r=n.getTextContent(),o=t.hostModel,a=t.getItemModel(e),s=t.getItemLayout(e).label,l=t.getItemVisual(e,"style"),u=l.fill;_h(r,xh(a),{labelFetcher:t.hostModel,labelDataIndex:e,defaultOpacity:l.opacity,defaultText:t.getName(e)},{normal:{align:s.textAlign,verticalAlign:s.verticalAlign}}),n.setTextConfig({local:!0,inside:!!s.inside,insideStroke:u,outsideFill:u});var h=s.linePoints;i.setShape({points:h}),n.textGuideLineConfig={anchor:h?new si(h[0][0],h[0][1]):null},zu(r,{style:{x:s.x,y:s.y}},o,e),r.attr({rotation:s.rotation,originX:s.x,originY:s.y,z2:10}),cb(n,pb(a),{stroke:u})},e}(hu),FD=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.ignoreLabelLineUpdate=!0,n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData(),r=this._data,o=this.group;i.diff(r).add((function(t){var e=new GD(i,t);i.setItemGraphicEl(t,e),o.add(e)})).update((function(t,e){var n=r.getItemGraphicEl(e);n.updateData(i,t),o.add(n),i.setItemGraphicEl(t,n)})).remove((function(e){Fu(r.getItemGraphicEl(e),t,e)})).execute(),this._data=i},e.prototype.remove=function(){this.group.removeAll(),this._data=null},e.prototype.dispose=function(){},e.type="funnel",e}(Xf),HD=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(e){t.prototype.init.apply(this,arguments),this.legendVisualProvider=new qS(B(this.getData,this),B(this.getRawData,this)),this._defaultLabelLine(e)},e.prototype.getInitialData=function(t,e){return jS(this,{coordDimensions:["value"],encodeDefaulter:V(mp,this)})},e.prototype._defaultLabelLine=function(t){wr(t,"labelLine",["show"]);var e=t.labelLine,n=t.emphasis.labelLine;e.show=e.show&&t.label.show,n.show=n.show&&t.emphasis.label.show},e.prototype.getDataParams=function(e){var n=this.getData(),i=t.prototype.getDataParams.call(this,e),r=n.mapDimension("value"),o=n.getSum(r);return i.percent=o?+(n.get(r,e)/o*100).toFixed(2):0,i.$vars.push("percent"),i},e.type="series.funnel",e.defaultOption={zlevel:0,z:2,legendHoverLink:!0,colorBy:"data",left:80,top:60,right:80,bottom:60,minSize:"0%",maxSize:"100%",sort:"descending",orient:"vertical",gap:0,funnelAlign:"center",label:{show:!0,position:"outer"},labelLine:{show:!0,length:20,lineStyle:{width:1}},itemStyle:{borderColor:"#fff",borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:"#212121"}}},e}(Of);function WD(t,e){t.eachSeriesByType("funnel",(function(t){var n=t.getData(),i=n.mapDimension("value"),r=t.get("sort"),o=function(t,e){return Zc(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e),a=t.get("orient"),s=o.width,l=o.height,u=function(t,e){for(var n=t.mapDimension("value"),i=t.mapArray(n,(function(t){return t})),r=[],o="ascending"===e,a=0,s=t.count();a5)return;var i=this._model.coordinateSystem.getSlidedAxisExpandWindow([t.offsetX,t.offsetY]);"none"!==i.behavior&&this._dispatchExpand({axisExpandWindow:i.axisExpandWindow})}this._mouseDownPoint=null},mousemove:function(t){if(!this._mouseDownPoint&&nA(this,"mousemove")){var e=this._model,n=e.coordinateSystem.getSlidedAxisExpandWindow([t.offsetX,t.offsetY]),i=n.behavior;"jump"===i&&this._throttledDispatchExpand.debounceNextCall(e.get("axisExpandDebounce")),this._throttledDispatchExpand("none"===i?null:{axisExpandWindow:n.axisExpandWindow,animation:"jump"===i?null:{duration:0}})}}};function nA(t,e){var n=t._model;return n.get("axisExpandable")&&n.get("axisExpandTriggerOn")===e}var iA=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(){t.prototype.init.apply(this,arguments),this.mergeOption({})},e.prototype.mergeOption=function(t){var e=this.option;t&&S(e,t,!0),this._initDimensions()},e.prototype.contains=function(t,e){var n=t.get("parallelIndex");return null!=n&&e.getComponent("parallel",n)===this},e.prototype.setAxisExpand=function(t){P(["axisExpandable","axisExpandCenter","axisExpandCount","axisExpandWidth","axisExpandWindow"],(function(e){t.hasOwnProperty(e)&&(this.option[e]=t[e])}),this)},e.prototype._initDimensions=function(){var t=this.dimensions=[],e=this.parallelAxisIndex=[];P(N(this.ecModel.queryComponents({mainType:"parallelAxis"}),(function(t){return(t.get("parallelIndex")||0)===this.componentIndex}),this),(function(n){t.push("dim"+n.get("dim")),e.push(n.componentIndex)}))},e.type="parallel",e.dependencies=["parallelAxis"],e.layoutMode="box",e.defaultOption={zlevel:0,z:0,left:80,top:60,right:80,bottom:60,layout:"horizontal",axisExpandable:!1,axisExpandCenter:null,axisExpandCount:0,axisExpandWidth:50,axisExpandRate:17,axisExpandDebounce:50,axisExpandSlideTriggerArea:[-.15,.05,.4],axisExpandTriggerOn:"click",parallelAxisDefault:null},e}(tp),rA=function(t){function e(e,n,i,r,o){var a=t.call(this,e,n,i)||this;return a.type=r||"value",a.axisIndex=o,a}return n(e,t),e.prototype.isHorizontal=function(){return"horizontal"!==this.coordinateSystem.getModel().get("layout")},e}(Fx);function oA(t,e,n,i,r,o){t=t||0;var a=n[1]-n[0];if(null!=r&&(r=sA(r,[0,a])),null!=o&&(o=Math.max(o,null!=r?r:0)),"all"===i){var s=Math.abs(e[1]-e[0]);s=sA(s,[0,a]),r=o=sA(s,[r,o]),i=0}e[0]=sA(e[0],n),e[1]=sA(e[1],n);var l=aA(e,i);e[i]+=t;var u,h=r||0,c=n.slice();return l.sign<0?c[0]+=h:c[1]-=h,e[i]=sA(e[i],c),u=aA(e,i),null!=r&&(u.sign!==l.sign||u.spano&&(e[1-i]=e[i]+u.sign*o),e}function aA(t,e){var n=t[e]-t[1-e];return{span:Math.abs(n),sign:n>0?-1:n<0?1:e?-1:1}}function sA(t,e){return Math.min(null!=e[1]?e[1]:1/0,Math.max(null!=e[0]?e[0]:-1/0,t))}var lA=P,uA=Math.min,hA=Math.max,cA=Math.floor,pA=Math.ceil,dA=qi,fA=Math.PI,gA=function(){function t(t,e,n){this.type="parallel",this._axesMap=ht(),this._axesLayout={},this.dimensions=t.dimensions,this._model=t,this._init(t,e,n)}return t.prototype._init=function(t,e,n){var i=t.dimensions,r=t.parallelAxisIndex;lA(i,(function(t,n){var i=r[n],o=e.getComponent("parallelAxis",i),a=this._axesMap.set(t,new rA(t,gx(o),[0,0],o.get("type"),i)),s="category"===a.type;a.onBand=s&&o.get("boundaryGap"),a.inverse=o.get("inverse"),o.axis=a,a.model=o,a.coordinateSystem=o.coordinateSystem=this}),this)},t.prototype.update=function(t,e){this._updateAxesFromSeries(this._model,t)},t.prototype.containPoint=function(t){var e=this._makeLayoutInfo(),n=e.axisBase,i=e.layoutBase,r=e.pixelDimIndex,o=t[1-r],a=t[r];return o>=n&&o<=n+e.axisLength&&a>=i&&a<=i+e.layoutLength},t.prototype.getModel=function(){return this._model},t.prototype._updateAxesFromSeries=function(t,e){e.eachSeries((function(n){if(t.contains(n,e)){var i=n.getData();lA(this.dimensions,(function(t){var e=this._axesMap.get(t);e.scale.unionExtentFromData(i,i.mapDimension(t)),fx(e.scale,e.model)}),this)}}),this)},t.prototype.resize=function(t,e){this._rect=Zc(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()}),this._layoutAxes()},t.prototype.getRect=function(){return this._rect},t.prototype._makeLayoutInfo=function(){var t,e=this._model,n=this._rect,i=["x","y"],r=["width","height"],o=e.get("layout"),a="horizontal"===o?0:1,s=n[r[a]],l=[0,s],u=this.dimensions.length,h=yA(e.get("axisExpandWidth"),l),c=yA(e.get("axisExpandCount")||0,[0,u]),p=e.get("axisExpandable")&&u>3&&u>c&&c>1&&h>0&&s>0,d=e.get("axisExpandWindow");d?(t=yA(d[1]-d[0],l),d[1]=d[0]+t):(t=yA(h*(c-1),l),(d=[h*(e.get("axisExpandCenter")||cA(u/2))-t/2])[1]=d[0]+t);var f=(s-t)/(u-c);f<3&&(f=0);var g=[cA(dA(d[0]/h,1))+1,pA(dA(d[1]/h,1))-1],y=f/h*d[0];return{layout:o,pixelDimIndex:a,layoutBase:n[i[a]],layoutLength:s,axisBase:n[i[1-a]],axisLength:n[r[1-a]],axisExpandable:p,axisExpandWidth:h,axisCollapseWidth:f,axisExpandWindow:d,axisCount:u,winInnerIndices:g,axisExpandWindow0Pos:y}},t.prototype._layoutAxes=function(){var t=this._rect,e=this._axesMap,n=this.dimensions,i=this._makeLayoutInfo(),r=i.layout;e.each((function(t){var e=[0,i.axisLength],n=t.inverse?1:0;t.setExtent(e[n],e[1-n])})),lA(n,(function(e,n){var o=(i.axisExpandable?mA:vA)(n,i),a={horizontal:{x:o.position,y:i.axisLength},vertical:{x:0,y:o.position}},s={horizontal:fA/2,vertical:0},l=[a[r].x+t.x,a[r].y+t.y],u=s[r],h=[1,0,0,1,0,0];Xn(h,h,u),Un(h,h,l),this._axesLayout[e]={position:l,rotation:u,transform:h,axisNameAvailableWidth:o.axisNameAvailableWidth,axisLabelShow:o.axisLabelShow,nameTruncateMaxWidth:o.nameTruncateMaxWidth,tickDirection:1,labelDirection:1}}),this)},t.prototype.getAxis=function(t){return this._axesMap.get(t)},t.prototype.dataToPoint=function(t,e){return this.axisCoordToPoint(this._axesMap.get(e).dataToCoord(t),e)},t.prototype.eachActiveState=function(t,e,n,i){null==n&&(n=0),null==i&&(i=t.count());var r=this._axesMap,o=this.dimensions,a=[],s=[];P(o,(function(e){a.push(t.mapDimension(e)),s.push(r.get(e).model)}));for(var l=this.hasAxisBrushed(),u=n;ur*(1-h[0])?(l="jump",a=s-r*(1-h[2])):(a=s-r*h[1])>=0&&(a=s-r*(1-h[1]))<=0&&(a=0),(a*=e.axisExpandWidth/u)?oA(a,i,o,"all"):l="none";else{var p=i[1]-i[0];(i=[hA(0,o[1]*s/p-p/2)])[1]=uA(o[1],i[0]+p),i[0]=i[1]-p}return{axisExpandWindow:i,behavior:l}},t}();function yA(t,e){return uA(hA(t,e[0]),e[1])}function vA(t,e){var n=e.layoutLength/(e.axisCount-1);return{position:n*t,axisNameAvailableWidth:n,axisLabelShow:!0}}function mA(t,e){var n,i,r=e.layoutLength,o=e.axisExpandWidth,a=e.axisCount,s=e.axisCollapseWidth,l=e.winInnerIndices,u=s,h=!1;return t=0;n--)Ki(e[n])},e.prototype.getActiveState=function(t){var e=this.activeIntervals;if(!e.length)return"normal";if(null==t||isNaN(+t))return"inactive";if(1===e.length){var n=e[0];if(n[0]<=t&&t<=n[1])return"active"}else for(var i=0,r=e.length;i6}(t)||o){if(a&&!o){"single"===s.brushMode&&VA(t);var l=w(s);l.brushType=nk(l.brushType,a),l.panelId=a===bA?null:a.panelId,o=t._creatingCover=LA(t,l),t._covers.push(o)}if(o){var u=ok[nk(t._brushType,a)];o.__brushOption.range=u.getCreatingRange(JA(t,o,t._track)),i&&(PA(t,o),u.updateCommon(t,o)),OA(t,o),r={isEnd:i}}}else i&&"single"===s.brushMode&&s.removeOnClick&&EA(t,e,n)&&VA(t)&&(r={isEnd:i,removeOnClick:!0});return r}function nk(t,e){return"auto"===t?e.defaultBrushType:t}var ik={mousedown:function(t){if(this._dragging)rk(this,t);else if(!t.target||!t.target.draggable){QA(t);var e=this.group.transformCoordToLocal(t.offsetX,t.offsetY);this._creatingCover=null,(this._creatingPanel=EA(this,t,e))&&(this._dragging=!0,this._track=[e.slice()])}},mousemove:function(t){var e=t.offsetX,n=t.offsetY,i=this.group.transformCoordToLocal(e,n);if(function(t,e,n){if(t._brushType&&!function(t,e,n){var i=t._zr;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}(t,e.offsetX,e.offsetY)){var i=t._zr,r=t._covers,o=EA(t,e,n);if(!t._dragging)for(var a=0;a=0&&(o[r[a].depth]=new Hh(r[a],this,e));if(i&&n)return kD(i,n,this,!0,(function(t,e){t.wrapMethod("getItemModel",(function(t,e){var n=t.parentModel,i=n.getData().getItemLayout(e);if(i){var r=i.depth,o=n.levelModels[r];o&&(t.parentModel=o)}return t})),e.wrapMethod("getItemModel",(function(t,e){var n=t.parentModel,i=n.getGraph().getEdgeByIndex(e).node1.getLayout();if(i){var r=i.depth,o=n.levelModels[r];o&&(t.parentModel=o)}return t}))})).data},e.prototype.setNodePosition=function(t,e){var n=(this.option.data||this.option.nodes)[t];n.localX=e[0],n.localY=e[1]},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.formatTooltip=function(t,e,n){function i(t){return isNaN(t)||null==t}if("edge"===n){var r=this.getDataParams(t,n),o=r.data,a=r.value;return xf("nameValue",{name:o.source+" -- "+o.target,value:a,noValue:i(a)})}var s=this.getGraph().getNodeByIndex(t).getLayout().value,l=this.getDataParams(t,n).data.name;return xf("nameValue",{name:null!=l?l+"":null,value:s,noValue:i(s)})},e.prototype.optionUpdated=function(){},e.prototype.getDataParams=function(e,n){var i=t.prototype.getDataParams.call(this,e,n);if(null==i.value&&"node"===n){var r=this.getGraph().getNodeByIndex(e).getLayout().value;i.value=r}return i},e.type="series.sankey",e.defaultOption={zlevel:0,z:2,coordinateSystem:"view",left:"5%",top:"5%",right:"20%",bottom:"5%",orient:"horizontal",nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,label:{show:!0,position:"right",fontSize:12},levels:[],nodeAlign:"justify",lineStyle:{color:"#314656",opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:"#212121"}},animationEasing:"linear",animationDuration:1e3},e}(Of);function xk(t,e){t.eachSeriesByType("sankey",(function(t){var n=t.get("nodeWidth"),i=t.get("nodeGap"),r=function(t,e){return Zc(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()})}(t,e);t.layoutInfo=r;var o=r.width,a=r.height,s=t.getGraph(),l=s.nodes,u=s.edges;!function(t){P(t,(function(t){var e=kk(t.outEdges,Ak),n=kk(t.inEdges,Ak),i=t.getValue()||0,r=Math.max(e,n,i);t.setLayout({value:r},!0)}))}(l),function(t,e,n,i,r,o,a,s,l){(function(t,e,n,i,r,o,a){for(var s=[],l=[],u=[],h=[],c=0,p=0;p=0;v&&y.depth>d&&(d=y.depth),g.setLayout({depth:v?y.depth:c},!0),"vertical"===o?g.setLayout({dy:n},!0):g.setLayout({dx:n},!0);for(var m=0;mc-1?d:c-1;a&&"left"!==a&&function(t,e,n,i){if("right"===e){for(var r=[],o=t,a=0;o.length;){for(var s=0;s0;o--)Sk(s,l*=.99,a),wk(s,r,n,i,a),Lk(s,l,a),wk(s,r,n,i,a)}(t,e,o,r,i,a,s),function(t,e){var n="vertical"===e?"x":"y";P(t,(function(t){t.outEdges.sort((function(t,e){return t.node2.getLayout()[n]-e.node2.getLayout()[n]})),t.inEdges.sort((function(t,e){return t.node1.getLayout()[n]-e.node1.getLayout()[n]}))})),P(t,(function(t){var e=0,n=0;P(t.outEdges,(function(t){t.setLayout({sy:e},!0),e+=t.getLayout().dy})),P(t.inEdges,(function(t){t.setLayout({ty:n},!0),n+=t.getLayout().dy}))}))}(t,s)}(l,u,n,i,o,a,0!==N(l,(function(t){return 0===t.getLayout().value})).length?0:t.get("layoutIterations"),t.get("orient"),t.get("nodeAlign"))}))}function bk(t){var e=t.hostGraph.data.getRawDataItem(t.dataIndex);return null!=e.depth&&e.depth>=0}function wk(t,e,n,i,r){var o="vertical"===r?"x":"y";P(t,(function(t){var a,s,l;t.sort((function(t,e){return t.getLayout()[o]-e.getLayout()[o]}));for(var u=0,h=t.length,c="vertical"===r?"dx":"dy",p=0;p0&&(a=s.getLayout()[o]+l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0)),u=s.getLayout()[o]+s.getLayout()[c]+e;if((l=u-e-("vertical"===r?i:n))>0){a=s.getLayout()[o]-l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0),u=a;for(p=h-2;p>=0;--p)(l=(s=t[p]).getLayout()[o]+s.getLayout()[c]+e-u)>0&&(a=s.getLayout()[o]-l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0)),u=s.getLayout()[o]}}))}function Sk(t,e,n){P(t.slice().reverse(),(function(t){P(t,(function(t){if(t.outEdges.length){var i=kk(t.outEdges,Mk,n)/kk(t.outEdges,Ak);if(isNaN(i)){var r=t.outEdges.length;i=r?kk(t.outEdges,Ik,n)/r:0}if("vertical"===n){var o=t.getLayout().x+(i-Dk(t,n))*e;t.setLayout({x:o},!0)}else{var a=t.getLayout().y+(i-Dk(t,n))*e;t.setLayout({y:a},!0)}}}))}))}function Mk(t,e){return Dk(t.node2,e)*t.getValue()}function Ik(t,e){return Dk(t.node2,e)}function Tk(t,e){return Dk(t.node1,e)*t.getValue()}function Ck(t,e){return Dk(t.node1,e)}function Dk(t,e){return"vertical"===e?t.getLayout().x+t.getLayout().dx/2:t.getLayout().y+t.getLayout().dy/2}function Ak(t){return t.getValue()}function kk(t,e,n){for(var i=0,r=t.length,o=-1;++oi&&(i=e)})),P(e,(function(e){var r=new QT({type:"color",mappingMethod:"linear",dataExtent:[n,i],visual:t.get("color")}).mapValueToVisual(e.getLayout().value),o=e.getModel().get(["itemStyle","color"]);null!=o?(e.setVisual("color",o),e.setVisual("style",{fill:o})):(e.setVisual("color",r),e.setVisual("style",{fill:r}))}))}}))}var Ok=function(){function t(){}return t.prototype.getInitialData=function(t,e){var n,i,r=e.getComponent("xAxis",this.get("xAxisIndex")),o=e.getComponent("yAxis",this.get("yAxisIndex")),a=r.get("type"),s=o.get("type");"category"===a?(t.layout="horizontal",n=r.getOrdinalMeta(),i=!0):"category"===s?(t.layout="vertical",n=o.getOrdinalMeta(),i=!0):t.layout=t.layout||"horizontal";var l=["x","y"],u="horizontal"===t.layout?0:1,h=this._baseAxisDim=l[u],c=l[1-u],p=[r,o],d=p[u].get("type"),f=p[1-u].get("type"),g=t.data;if(g&&i){var y=[];P(g,(function(t,e){var n;G(t)?(n=t.slice(),t.unshift(e)):G(t.value)?((n=I({},t)).value=n.value.slice(),t.value.unshift(e)):n=t,y.push(n)})),t.data=y}var v=this.defaultValueDimensions,m=[{name:h,type:Gm(d),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:["base"]},{name:c,type:Gm(f),dimsDef:v.slice()}];return jS(this,{coordDimensions:m,dimensionsCount:v.length+1,encodeDefaulter:V(vp,m,this)})},t.prototype.getBaseAxis=function(){var t=this._baseAxisDim;return this.ecModel.getComponent(t+"Axis",this.get(t+"AxisIndex")).axis},t}(),Rk=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.defaultValueDimensions=[{name:"min",defaultTooltip:!0},{name:"Q1",defaultTooltip:!0},{name:"median",defaultTooltip:!0},{name:"Q3",defaultTooltip:!0},{name:"max",defaultTooltip:!0}],n.visualDrawType="stroke",n}return n(e,t),e.type="series.boxplot",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,boxWidth:[7,50],itemStyle:{color:"#fff",borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2,shadowBlur:5,shadowOffsetX:1,shadowOffsetY:1,shadowColor:"rgba(0,0,0,0.2)"}},animationDuration:800},e}(Of);k(Rk,Ok,!0);var Nk=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData(),r=this.group,o=this._data;this._data||r.removeAll();var a="horizontal"===t.get("layout")?1:0;i.diff(o).add((function(t){if(i.hasValue(t)){var e=Bk(i.getItemLayout(t),i,t,a,!0);i.setItemGraphicEl(t,e),r.add(e)}})).update((function(t,e){var n=o.getItemGraphicEl(e);if(i.hasValue(t)){var s=i.getItemLayout(t);n?(Hu(n),Vk(s,n,i,t)):n=Bk(s,i,t,a),r.add(n),i.setItemGraphicEl(t,n)}else r.remove(n)})).remove((function(t){var e=o.getItemGraphicEl(t);e&&r.remove(e)})).execute(),this._data=i},e.prototype.remove=function(t){var e=this.group,n=this._data;this._data=null,n&&n.eachItemGraphicEl((function(t){t&&e.remove(t)}))},e.type="boxplot",e}(Xf),zk=function(){},Ek=function(t){function e(e){var n=t.call(this,e)||this;return n.type="boxplotBoxPath",n}return n(e,t),e.prototype.getDefaultShape=function(){return new zk},e.prototype.buildPath=function(t,e){var n=e.points,i=0;for(t.moveTo(n[i][0],n[i][1]),i++;i<4;i++)t.lineTo(n[i][0],n[i][1]);for(t.closePath();ig){var x=[v,_];i.push(x)}}}return{boxData:n,outliers:i}}(e.getRawData(),t.config);return[{dimensions:["ItemName","Low","Q1","Q2","Q3","High"],data:i.boxData},{data:i.outliers}]}};var Xk=["color","borderColor"],Yk=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){this.group.removeClipPath(),this._updateDrawMode(t),this._isLargeDraw?this._renderLarge(t):this._renderNormal(t)},e.prototype.incrementalPrepareRender=function(t,e,n){this._clear(),this._updateDrawMode(t)},e.prototype.incrementalRender=function(t,e,n,i){this._isLargeDraw?this._incrementalRenderLarge(t,e):this._incrementalRenderNormal(t,e)},e.prototype._updateDrawMode=function(t){var e=t.pipelineContext.large;null!=this._isLargeDraw&&e===this._isLargeDraw||(this._isLargeDraw=e,this._clear())},e.prototype._renderNormal=function(t){var e=t.getData(),n=this._data,i=this.group,r=e.getLayout("isSimpleBox"),o=t.get("clip",!0),a=t.coordinateSystem,s=a.getArea&&a.getArea();this._data||i.removeAll(),e.diff(n).add((function(n){if(e.hasValue(n)){var a=e.getItemLayout(n);if(o&&Kk(s,a))return;var l=qk(a,n,!0);Eu(l,{shape:{points:a.ends}},t,n),$k(l,e,n,r),i.add(l),e.setItemGraphicEl(n,l)}})).update((function(a,l){var u=n.getItemGraphicEl(l);if(e.hasValue(a)){var h=e.getItemLayout(a);o&&Kk(s,h)?i.remove(u):(u?(zu(u,{shape:{points:h.ends}},t,a),Hu(u)):u=qk(h),$k(u,e,a,r),i.add(u),e.setItemGraphicEl(a,u))}else i.remove(u)})).remove((function(t){var e=n.getItemGraphicEl(t);e&&i.remove(e)})).execute(),this._data=e},e.prototype._renderLarge=function(t){this._clear(),eL(t,this.group);var e=t.get("clip",!0)?jw(t.coordinateSystem,!1,t):null;e?this.group.setClipPath(e):this.group.removeClipPath()},e.prototype._incrementalRenderNormal=function(t,e){for(var n,i=e.getData(),r=i.getLayout("isSimpleBox");null!=(n=t.next());){var o=qk(i.getItemLayout(n));$k(o,i,n,r),o.incremental=!0,this.group.add(o)}},e.prototype._incrementalRenderLarge=function(t,e){eL(e,this.group,!0)},e.prototype.remove=function(t){this._clear()},e.prototype._clear=function(){this.group.removeAll(),this._data=null},e.type="candlestick",e}(Xf),Zk=function(){},jk=function(t){function e(e){var n=t.call(this,e)||this;return n.type="normalCandlestickBox",n}return n(e,t),e.prototype.getDefaultShape=function(){return new Zk},e.prototype.buildPath=function(t,e){var n=e.points;this.__simpleBox?(t.moveTo(n[4][0],n[4][1]),t.lineTo(n[6][0],n[6][1])):(t.moveTo(n[0][0],n[0][1]),t.lineTo(n[1][0],n[1][1]),t.lineTo(n[2][0],n[2][1]),t.lineTo(n[3][0],n[3][1]),t.closePath(),t.moveTo(n[4][0],n[4][1]),t.lineTo(n[5][0],n[5][1]),t.moveTo(n[6][0],n[6][1]),t.lineTo(n[7][0],n[7][1]))},e}(Ja);function qk(t,e,n){var i=t.ends;return new jk({shape:{points:n?Jk(i,t):i},z2:100})}function Kk(t,e){for(var n=!0,i=0;i0?"borderColor":"borderColor0"])||n.get(["itemStyle",t>0?"color":"color0"]),o=n.getModel("itemStyle").getItemStyle(Xk);e.useStyle(o),e.style.fill=null,e.style.stroke=r}var iL=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.defaultValueDimensions=[{name:"open",defaultTooltip:!0},{name:"close",defaultTooltip:!0},{name:"lowest",defaultTooltip:!0},{name:"highest",defaultTooltip:!0}],n}return n(e,t),e.prototype.getShadowDim=function(){return"open"},e.prototype.brushSelector=function(t,e,n){var i=e.getItemLayout(t);return i&&n.rect(i.brushRect)},e.type="series.candlestick",e.dependencies=["xAxis","yAxis","grid"],e.defaultOption={zlevel:0,z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,clip:!0,itemStyle:{color:"#eb5454",color0:"#47b262",borderColor:"#eb5454",borderColor0:"#47b262",borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2}},barMaxWidth:null,barMinWidth:null,barWidth:null,large:!0,largeThreshold:600,progressive:3e3,progressiveThreshold:1e4,progressiveChunkMode:"mod",animationEasing:"linear",animationDuration:300},e}(Of);function rL(t){t&&G(t.series)&&P(t.series,(function(t){X(t)&&"k"===t.type&&(t.type="candlestick")}))}k(iL,Ok,!0);var oL=["itemStyle","borderColor"],aL=["itemStyle","borderColor0"],sL=["itemStyle","color"],lL=["itemStyle","color0"],uL={seriesType:"candlestick",plan:Hf(),performRawSeries:!0,reset:function(t,e){function n(t,e){return e.get(t>0?sL:lL)}function i(t,e){return e.get(t>0?oL:aL)}if(!e.isSeriesFiltered(t))return!t.pipelineContext.large&&{progress:function(t,e){for(var r;null!=(r=t.next());){var o=e.getItemModel(r),a=e.getItemLayout(r).sign,s=o.getItemStyle();s.fill=n(a,o),s.stroke=i(a,o)||s.fill,I(e.ensureUniqueItemVisual(r,"style"),s)}}}}},hL="undefined"!=typeof Float32Array?Float32Array:Array,cL={seriesType:"candlestick",plan:Hf(),reset:function(t){var e=t.coordinateSystem,n=t.getData(),i=function(t,e){var n,i=t.getBaseAxis(),r="category"===i.type?i.getBandWidth():(n=i.getExtent(),Math.abs(n[1]-n[0])/e.count()),o=ji(tt(t.get("barMaxWidth"),r),r),a=ji(tt(t.get("barMinWidth"),1),r),s=t.get("barWidth");return null!=s?ji(s,r):Math.max(Math.min(r/2,o),a)}(t,n),r=["x","y"],o=n.getDimensionIndex(n.mapDimension(r[0])),a=O(n.mapDimensionsAll(r[1]),n.getDimensionIndex,n),s=a[0],l=a[1],u=a[2],h=a[3];if(n.setLayout({candleWidth:i,isSimpleBox:i<=1.3}),!(o<0||a.length<4))return{progress:t.pipelineContext.large?function(t,n){var i,r,a=new hL(4*t.count),c=0,p=[],d=[],f=n.getStore();for(;null!=(r=t.next());){var g=f.get(o,r),y=f.get(s,r),v=f.get(l,r),m=f.get(u,r),_=f.get(h,r);isNaN(g)||isNaN(m)||isNaN(_)?(a[c++]=NaN,c+=3):(a[c++]=pL(f,r,y,v,l),p[0]=g,p[1]=m,i=e.dataToPoint(p,null,d),a[c++]=i?i[0]:NaN,a[c++]=i?i[1]:NaN,p[1]=_,i=e.dataToPoint(p,null,d),a[c++]=i?i[1]:NaN)}n.setLayout("largePoints",a)}:function(t,n){var r,a=n.getStore();for(;null!=(r=t.next());){var c=a.get(o,r),p=a.get(s,r),d=a.get(l,r),f=a.get(u,r),g=a.get(h,r),y=Math.min(p,d),v=Math.max(p,d),m=S(y,c),_=S(v,c),x=S(f,c),b=S(g,c),w=[];M(w,_,0),M(w,m,1),w.push(T(b),T(_),T(x),T(m)),n.setItemLayout(r,{sign:pL(a,r,p,d,l),initBaseline:p>d?_[1]:m[1],ends:w,brushRect:I(f,g,c)})}function S(t,n){var i=[];return i[0]=n,i[1]=t,isNaN(n)||isNaN(t)?[NaN,NaN]:e.dataToPoint(i)}function M(t,e,n){var r=e.slice(),o=e.slice();r[0]=nh(r[0]+i/2,1,!1),o[0]=nh(o[0]-i/2,1,!0),n?t.push(r,o):t.push(o,r)}function I(t,e,n){var r=S(t,n),o=S(e,n);return r[0]-=i/2,o[0]-=i/2,{x:r[0],y:r[1],width:i,height:o[1]-r[1]}}function T(t){return t[0]=nh(t[0],1),t}}}}};function pL(t,e,n,i,r){return n>i?-1:n0?t.get(r,e-1)<=i?1:-1:1}function dL(t,e){var n=e.rippleEffectColor||e.color;t.eachChild((function(t){t.attr({z:e.z,zlevel:e.zlevel,style:{stroke:"stroke"===e.brushType?n:null,fill:"fill"===e.brushType?n:null}})}))}var fL=function(t){function e(e,n){var i=t.call(this)||this,r=new Cw(e,n),o=new Bi;return i.add(r),i.add(o),i.updateData(e,n),i}return n(e,t),e.prototype.stopEffectAnimation=function(){this.childAt(1).removeAll()},e.prototype.startEffectAnimation=function(t){for(var e=t.symbolType,n=t.color,i=t.rippleNumber,r=this.childAt(1),o=0;o0&&(a=this._getLineLength(i)/l*1e3),(a!==this._period||s!==this._loop)&&(i.stopAnimation(),a>0)){var h=void 0;h="function"==typeof u?u(n):u,i.__t>0&&(h=-a*i.__t),i.__t=0;var c=i.animate("",s).when(a,{__t:1}).delay(h).during((function(){r._updateSymbolPosition(i)}));s||c.done((function(){r.remove(i)})),c.start()}this._period=a,this._loop=s}},e.prototype._getLineLength=function(t){return kt(t.__p1,t.__cp1)+kt(t.__cp1,t.__p2)},e.prototype._updateAnimationPoints=function(t,e){t.__p1=e[0],t.__p2=e[1],t.__cp1=e[2]||[(e[0][0]+e[1][0])/2,(e[0][1]+e[1][1])/2]},e.prototype.updateData=function(t,e,n){this.childAt(0).updateData(t,e,n),this._updateEffectSymbol(t,e)},e.prototype._updateSymbolPosition=function(t){var e=t.__p1,n=t.__p2,i=t.__cp1,r=t.__t,o=[t.x,t.y],a=o.slice(),s=Yo,l=Zo;o[0]=s(e[0],i[0],n[0],r),o[1]=s(e[1],i[1],n[1],r);var u=l(e[0],i[0],n[0],r),h=l(e[1],i[1],n[1],r);t.rotation=-Math.atan2(h,u)-Math.PI/2,"line"!==this._symbolType&&"rect"!==this._symbolType&&"roundRect"!==this._symbolType||(void 0!==t.__lastT&&t.__lastT=0&&!(i[o]<=e);o--);o=Math.min(o,r-2)}else{for(o=a;oe);o++);o=Math.min(o-1,r-2)}var s=(e-i[o])/(i[o+1]-i[o]),l=n[o],u=n[o+1];t.x=l[0]*(1-s)+s*u[0],t.y=l[1]*(1-s)+s*u[1];var h=u[0]-l[0],c=u[1]-l[1];t.rotation=-Math.atan2(c,h)-Math.PI/2,this._lastFrame=o,this._lastFramePercent=e,t.ignore=!1}},e}(vL),xL=function(){this.polyline=!1,this.curveness=0,this.segs=[]},bL=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new xL},e.prototype.buildPath=function(t,e){var n=e.segs,i=e.curveness;if(e.polyline)for(var r=0;r0){t.moveTo(n[r++],n[r++]);for(var a=1;a0){var c=(s+u)/2-(l-h)*i,p=(l+h)/2-(u-s)*i;t.quadraticCurveTo(c,p,u,h)}else t.lineTo(u,h)}},e.prototype.findDataIndex=function(t,e){var n=this.shape,i=n.segs,r=n.curveness,o=this.style.lineWidth;if(n.polyline)for(var a=0,s=0;s0)for(var u=i[s++],h=i[s++],c=1;c0){if(Na(u,h,(u+p)/2-(h-d)*r,(h+d)/2-(p-u)*r,p,d,o,t,e))return a}else if(Oa(u,h,p,d,o,t,e))return a;a++}return-1},e}(Ja),wL=function(){function t(){this.group=new Bi}return t.prototype.isPersistent=function(){return!this._incremental},t.prototype.updateData=function(t){this.group.removeAll();var e=new bL({rectHover:!0,cursor:"default"});e.setShape({segs:t.getLayout("linesPoints")}),this._setCommon(e,t),this.group.add(e),this._incremental=null},t.prototype.incrementalPrepareUpdate=function(t){this.group.removeAll(),this._clearIncremental(),t.count()>5e5?(this._incremental||(this._incremental=new Pu({silent:!0})),this.group.add(this._incremental)):this._incremental=null},t.prototype.incrementalUpdate=function(t,e){var n=new bL;n.setShape({segs:e.getLayout("linesPoints")}),this._setCommon(n,e,!!this._incremental),this._incremental?this._incremental.addDisplayable(n,!0):(n.rectHover=!0,n.cursor="default",n.__startIndex=t.start,this.group.add(n))},t.prototype.remove=function(){this._clearIncremental(),this._incremental=null,this.group.removeAll()},t.prototype._setCommon=function(t,e,n){var i=e.hostModel;t.setShape({polyline:i.get("polyline"),curveness:i.get(["lineStyle","curveness"])}),t.useStyle(i.getModel("lineStyle").getLineStyle()),t.style.strokeNoScale=!0;var r=e.getVisual("style");if(r&&r.stroke&&t.setStyle("stroke",r.stroke),t.setStyle("fill",null),!n){var o=ws(t);o.seriesIndex=i.seriesIndex,t.on("mousemove",(function(e){o.dataIndex=null;var n=t.findDataIndex(e.offsetX,e.offsetY);n>0&&(o.dataIndex=n+t.__startIndex)}))}},t.prototype._clearIncremental=function(){var t=this._incremental;t&&t.clearDisplaybles()},t}(),SL={seriesType:"lines",plan:Hf(),reset:function(t){var e=t.coordinateSystem,n=t.get("polyline"),i=t.pipelineContext.large;return{progress:function(r,o){var a=[];if(i){var s=void 0,l=r.end-r.start;if(n){for(var u=0,h=r.start;h ")})},e.prototype.preventIncremental=function(){return!!this.get(["effect","show"])},e.prototype.getProgressive=function(){var t=this.option.progressive;return null==t?this.option.large?1e4:this.get("progressive"):t},e.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?2e4:this.get("progressiveThreshold"):t},e.type="series.lines",e.dependencies=["grid","polar","geo","calendar"],e.defaultOption={coordinateSystem:"geo",zlevel:0,z:2,legendHoverLink:!0,xAxisIndex:0,yAxisIndex:0,symbol:["none","none"],symbolSize:[10,10],geoIndex:0,effect:{show:!1,period:4,constantSpeed:0,symbol:"circle",symbolSize:3,loop:!0,trailLength:.2},large:!1,largeThreshold:2e3,polyline:!1,clip:!0,label:{show:!1,position:"end"},lineStyle:{opacity:.5}},e}(Of);function AL(t){return t instanceof Array||(t=[t,t]),t}var kL={seriesType:"lines",reset:function(t){var e=AL(t.get("symbol")),n=AL(t.get("symbolSize")),i=t.getData();return i.setVisual("fromSymbol",e&&e[0]),i.setVisual("toSymbol",e&&e[1]),i.setVisual("fromSymbolSize",n&&n[0]),i.setVisual("toSymbolSize",n&&n[1]),{dataEach:i.hasItemOption?function(t,e){var n=t.getItemModel(e),i=AL(n.getShallow("symbol",!0)),r=AL(n.getShallow("symbolSize",!0));i[0]&&t.setItemVisual(e,"fromSymbol",i[0]),i[1]&&t.setItemVisual(e,"toSymbol",i[1]),r[0]&&t.setItemVisual(e,"fromSymbolSize",r[0]),r[1]&&t.setItemVisual(e,"toSymbolSize",r[1])}:null}}};var LL=function(){function t(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var t=C();this.canvas=t}return t.prototype.update=function(t,e,n,i,r,o){var a=this._getBrush(),s=this._getGradient(r,"inRange"),l=this._getGradient(r,"outOfRange"),u=this.pointSize+this.blurSize,h=this.canvas,c=h.getContext("2d"),p=t.length;h.width=e,h.height=n;for(var d=0;d0){var I=o(v)?s:l;v>0&&(v=v*S+w),_[x++]=I[M],_[x++]=I[M+1],_[x++]=I[M+2],_[x++]=I[M+3]*v*256}else x+=4}return c.putImageData(m,0,0),h},t.prototype._getBrush=function(){var t=this._brushCanvas||(this._brushCanvas=C()),e=this.pointSize+this.blurSize,n=2*e;t.width=n,t.height=n;var i=t.getContext("2d");return i.clearRect(0,0,n,n),i.shadowOffsetX=n,i.shadowBlur=this.blurSize,i.shadowColor="#000",i.beginPath(),i.arc(-e,e,this.pointSize,0,2*Math.PI,!0),i.closePath(),i.fill(),t},t.prototype._getGradient=function(t,e){for(var n=this._gradientPixels,i=n[e]||(n[e]=new Uint8ClampedArray(1024)),r=[0,0,0,0],o=0,a=0;a<256;a++)t[e](a/255,!0,r),i[o++]=r[0],i[o++]=r[1],i[o++]=r[2],i[o++]=r[3];return i},t}();function PL(t){var e=t.dimensions;return"lng"===e[0]&&"lat"===e[1]}var OL=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i;e.eachComponent("visualMap",(function(e){e.eachTargetSeries((function(n){n===t&&(i=e)}))})),this.group.removeAll(),this._incrementalDisplayable=null;var r=t.coordinateSystem;"cartesian2d"===r.type||"calendar"===r.type?this._renderOnCartesianAndCalendar(t,n,0,t.getData().count()):PL(r)&&this._renderOnGeo(r,t,i,n)},e.prototype.incrementalPrepareRender=function(t,e,n){this.group.removeAll()},e.prototype.incrementalRender=function(t,e,n,i){var r=e.coordinateSystem;r&&(PL(r)?this.render(e,n,i):this._renderOnCartesianAndCalendar(e,i,t.start,t.end,!0))},e.prototype._renderOnCartesianAndCalendar=function(t,e,n,i,r){var o,a,s,l,u=t.coordinateSystem;if(qw(u,"cartesian2d")){var h=u.getAxis("x"),c=u.getAxis("y");0,o=h.getBandWidth(),a=c.getBandWidth(),s=h.scale.getExtent(),l=c.scale.getExtent()}for(var p=this.group,d=t.getData(),f=t.getModel(["emphasis","itemStyle"]).getItemStyle(),g=t.getModel(["blur","itemStyle"]).getItemStyle(),y=t.getModel(["select","itemStyle"]).getItemStyle(),v=xh(t),m=t.get(["emphasis","focus"]),_=t.get(["emphasis","blurScope"]),x=qw(u,"cartesian2d")?[d.mapDimension("x"),d.mapDimension("y"),d.mapDimension("value")]:[d.mapDimension("time"),d.mapDimension("value")],b=n;bs[1]||Il[1])continue;var T=u.dataToPoint([M,I]);w=new hs({shape:{x:Math.floor(Math.round(T[0])-o/2),y:Math.floor(Math.round(T[1])-a/2),width:Math.ceil(o),height:Math.ceil(a)},style:S})}else{if(isNaN(d.get(x[1],b)))continue;w=new hs({z2:1,shape:u.dataToRect([d.get(x[0],b)]).contentShape,style:S})}var C=d.getItemModel(b);if(d.hasItemOption){var D=C.getModel("emphasis");f=D.getModel("itemStyle").getItemStyle(),g=C.getModel(["blur","itemStyle"]).getItemStyle(),y=C.getModel(["select","itemStyle"]).getItemStyle(),m=D.get("focus"),_=D.get("blurScope"),v=xh(C)}var A=t.getRawValue(b),k="-";A&&null!=A[2]&&(k=A[2]+""),_h(w,v,{labelFetcher:t,labelDataIndex:b,defaultOpacity:S.opacity,defaultText:k}),w.ensureState("emphasis").style=f,w.ensureState("blur").style=g,w.ensureState("select").style=y,cl(w,m,_),w.incremental=r,r&&(w.states.emphasis.hoverLayer=!0),p.add(w),d.setItemGraphicEl(b,w)}},e.prototype._renderOnGeo=function(t,e,n,i){var r=n.targetVisuals.inRange,o=n.targetVisuals.outOfRange,a=e.getData(),s=this._hmLayer||this._hmLayer||new LL;s.blurSize=e.get("blurSize"),s.pointSize=e.get("pointSize"),s.minOpacity=e.get("minOpacity"),s.maxOpacity=e.get("maxOpacity");var l=t.getViewRect().clone(),u=t.getRoamTransform();l.applyTransform(u);var h=Math.max(l.x,0),c=Math.max(l.y,0),p=Math.min(l.width+l.x,i.getWidth()),d=Math.min(l.height+l.y,i.getHeight()),f=p-h,g=d-c,y=[a.mapDimension("lng"),a.mapDimension("lat"),a.mapDimension("value")],v=a.mapArray(y,(function(e,n,i){var r=t.dataToPoint([e,n]);return r[0]-=h,r[1]-=c,r.push(i),r})),m=n.getExtent(),_="visualMap.continuous"===n.type?function(t,e){var n=t[1]-t[0];return e=[(e[0]-t[0])/n,(e[1]-t[0])/n],function(t){return t>=e[0]&&t<=e[1]}}(m,n.option.range):function(t,e,n){var i=t[1]-t[0],r=(e=O(e,(function(e){return{interval:[(e.interval[0]-t[0])/i,(e.interval[1]-t[0])/i]}}))).length,o=0;return function(t){var i;for(i=o;i=0;i--){var a;if((a=e[i].interval)[0]<=t&&t<=a[1]){o=i;break}}return i>=0&&i0?1:o<0?-1:0}(n,o,r,i,c),function(t,e,n,i,r,o,a,s,l,u){var h,c=l.valueDim,p=l.categoryDim,d=Math.abs(n[p.wh]),f=t.getItemVisual(e,"symbolSize");h=G(f)?f.slice():null==f?["100%","100%"]:[f,f];h[p.index]=ji(h[p.index],d),h[c.index]=ji(h[c.index],i?d:Math.abs(o)),u.symbolSize=h,(u.symbolScale=[h[0]/s,h[1]/s])[c.index]*=(l.isHorizontal?-1:1)*a}(t,e,r,o,0,c.boundingLength,c.pxSign,u,i,c),function(t,e,n,i,r){var o=t.get(NL)||0;o&&(EL.attr({scaleX:e[0],scaleY:e[1],rotation:n}),EL.updateTransform(),o/=EL.getLineScale(),o*=e[i.valueDim.index]);r.valueLineWidth=o}(n,c.symbolScale,l,i,c);var p=c.symbolSize,d=ey(n.get("symbolOffset"),p);return function(t,e,n,i,r,o,a,s,l,u,h,c){var p=h.categoryDim,d=h.valueDim,f=c.pxSign,g=Math.max(e[d.index]+s,0),y=g;if(i){var v=Math.abs(l),m=Q(t.get("symbolMargin"),"15%")+"",_=!1;m.lastIndexOf("!")===m.length-1&&(_=!0,m=m.slice(0,m.length-1));var x=ji(m,e[d.index]),b=Math.max(g+2*x,0),w=_?0:2*x,S=dr(i),M=S?i:eP((v+w)/b);b=g+2*(x=(v-M*g)/2/(_?M:Math.max(M-1,1))),w=_?0:2*x,S||"fixed"===i||(M=u?eP((Math.abs(u)+w)/b):0),y=M*b-w,c.repeatTimes=M,c.symbolMargin=x}var T=f*(y/2),C=c.pathPosition=[];C[p.index]=n[p.wh]/2,C[d.index]="start"===a?T:"end"===a?l-T:l/2,o&&(C[0]+=o[0],C[1]+=o[1]);var D=c.bundlePosition=[];D[p.index]=n[p.xy],D[d.index]=n[d.xy];var A=c.barRectShape=I({},n);A[d.wh]=f*Math.max(Math.abs(n[d.wh]),Math.abs(C[d.index]+T)),A[p.wh]=n[p.wh];var k=c.clipShape={};k[p.xy]=-n[p.xy],k[p.wh]=h.ecSize[p.wh],k[d.xy]=0,k[d.wh]=n[d.wh]}(n,p,r,o,0,d,s,c.valueLineWidth,c.boundingLength,c.repeatCutLength,i,c),c}function GL(t,e){return t.toGlobalCoord(t.dataToCoord(t.scale.parse(e)))}function FL(t){var e=t.symbolPatternSize,n=Qg(t.symbolType,-e/2,-e/2,e,e);return n.attr({culling:!0}),"image"!==n.type&&n.setStyle({strokeNoScale:!0}),n}function HL(t,e,n,i){var r=t.__pictorialBundle,o=n.symbolSize,a=n.valueLineWidth,s=n.pathPosition,l=e.valueDim,u=n.repeatTimes||0,h=0,c=o[e.valueDim.index]+a+2*n.symbolMargin;for(JL(t,(function(t){t.__pictorialAnimationIndex=h,t.__pictorialRepeatTimes=u,h0:i<0)&&(r=u-1-t),e[l.index]=c*(r-u/2+.5)+s[l.index],{x:e[0],y:e[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation}}}function WL(t,e,n,i){var r=t.__pictorialBundle,o=t.__pictorialMainPath;o?QL(o,null,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:n.symbolScale[0],scaleY:n.symbolScale[1],rotation:n.rotation},n,i):(o=t.__pictorialMainPath=FL(n),r.add(o),QL(o,{x:n.pathPosition[0],y:n.pathPosition[1],scaleX:0,scaleY:0,rotation:n.rotation},{scaleX:n.symbolScale[0],scaleY:n.symbolScale[1]},n,i))}function UL(t,e,n){var i=I({},e.barRectShape),r=t.__pictorialBarRect;r?QL(r,null,{shape:i},e,n):((r=t.__pictorialBarRect=new hs({z2:2,shape:i,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}})).disableMorphing=!0,t.add(r))}function XL(t,e,n,i){if(n.symbolClip){var r=t.__pictorialClipPath,o=I({},n.clipShape),a=e.valueDim,s=n.animationModel,l=n.dataIndex;if(r)zu(r,{shape:o},s,l);else{o[a.wh]=0,r=new hs({shape:o}),t.__pictorialBundle.setClipPath(r),t.__pictorialClipPath=r;var u={};u[a.wh]=n.clipShape[a.wh],gh[i?"updateProps":"initProps"](r,{shape:u},s,l)}}}function YL(t,e){var n=t.getItemModel(e);return n.getAnimationDelayParams=ZL,n.isAnimationEnabled=jL,n}function ZL(t){return{index:t.__pictorialAnimationIndex,count:t.__pictorialRepeatTimes}}function jL(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function qL(t,e,n,i){var r=new Bi,o=new Bi;return r.add(o),r.__pictorialBundle=o,o.x=n.bundlePosition[0],o.y=n.bundlePosition[1],n.symbolRepeat?HL(r,e,n):WL(r,0,n),UL(r,n,i),XL(r,e,n,i),r.__pictorialShapeStr=$L(t,n),r.__pictorialSymbolMeta=n,r}function KL(t,e,n,i){var r=i.__pictorialBarRect;r&&r.removeTextContent();var o=[];JL(i,(function(t){o.push(t)})),i.__pictorialMainPath&&o.push(i.__pictorialMainPath),i.__pictorialClipPath&&(n=null),P(o,(function(t){Vu(t,{scaleX:0,scaleY:0},n,e,(function(){i.parent&&i.parent.remove(i)}))})),t.setItemGraphicEl(e,null)}function $L(t,e){return[t.getItemVisual(e.dataIndex,"symbol")||"none",!!e.symbolRepeat,!!e.symbolClip].join(":")}function JL(t,e,n){P(t.__pictorialBundle.children(),(function(i){i!==t.__pictorialBarRect&&e.call(n,i)}))}function QL(t,e,n,i,r,o){e&&t.attr(e),i.symbolClip&&!r?n&&t.attr(n):n&&gh[r?"updateProps":"initProps"](t,n,i.animationModel,i.dataIndex,o)}function tP(t,e,n){var i=n.dataIndex,r=n.itemModel,o=r.getModel("emphasis"),a=o.getModel("itemStyle").getItemStyle(),s=r.getModel(["blur","itemStyle"]).getItemStyle(),l=r.getModel(["select","itemStyle"]).getItemStyle(),u=r.getShallow("cursor"),h=o.get("focus"),c=o.get("blurScope"),p=o.get("scale");JL(t,(function(t){if(t instanceof is){var e=t.style;t.useStyle(I({image:e.image,x:e.x,y:e.y,width:e.width,height:e.height},n.style))}else t.useStyle(n.style);var i=t.ensureState("emphasis");i.style=a,p&&(i.scaleX=1.1*t.scaleX,i.scaleY=1.1*t.scaleY),t.ensureState("blur").style=s,t.ensureState("select").style=l,u&&(t.cursor=u),t.z2=n.z2}));var d=e.valueDim.posDesc[+(n.boundingLength>0)];_h(t.__pictorialBarRect,xh(r),{labelFetcher:e.seriesModel,labelDataIndex:i,defaultText:Iw(e.seriesModel.getData(),i),inheritColor:n.style.fill,defaultOpacity:n.style.opacity,defaultOutsidePosition:d}),cl(t,h,c)}function eP(t){var e=Math.round(t);return Math.abs(t-e)<1e-4?e:Math.ceil(t)}var nP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.hasSymbolVisual=!0,n.defaultSymbol="roundRect",n}return n(e,t),e.prototype.getInitialData=function(e){return e.stack=null,t.prototype.getInitialData.apply(this,arguments)},e.type="series.pictorialBar",e.dependencies=["grid"],e.defaultOption=Xh(hS.defaultOption,{symbol:"circle",symbolSize:null,symbolRotate:null,symbolPosition:null,symbolOffset:null,symbolMargin:null,symbolRepeat:!1,symbolRepeatDirection:"end",symbolClip:!1,symbolBoundingData:null,symbolPatternSize:400,barGap:"-100%",progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:"#212121"}}}),e}(hS);var iP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._layers=[],n}return n(e,t),e.prototype.render=function(t,e,n){var i=t.getData(),r=this,o=this.group,a=t.getLayerSeries(),s=i.getLayout("layoutInfo"),l=s.rect,u=s.boundaryGap;function h(t){return t.name}o.x=0,o.y=l.y+u[0];var c=new Em(this._layersSeries||[],a,h,h),p=[];function d(e,n,s){var l=r._layers;if("remove"!==e){for(var u,h,c=[],d=[],f=a[n].indices,g=0;go&&(o=s),i.push(s)}for(var u=0;uo&&(o=c)}return{y0:r,max:o}}(l),h=u.y0,c=n/u.max,p=o.length,d=o[0].indices.length,f=0;fMath.PI/2?"right":"left"):w&&"center"!==w?"left"===w?(v=r.r0+b,a>Math.PI/2&&(w="right")):"right"===w&&(v=r.r-b,a>Math.PI/2&&(w="left")):(v=(r.r+r.r0)/2,w="center"),d.style.align=w,d.style.verticalAlign=f(o,"verticalAlign")||"middle",d.x=v*s+r.cx,d.y=v*l+r.cy;var S=f(o,"rotate"),M=0;"radial"===S?(M=-a)<-Math.PI/2&&(M+=Math.PI):"tangential"===S?(M=Math.PI/2-a)>Math.PI/2?M-=Math.PI:M<-Math.PI/2&&(M+=Math.PI):"number"==typeof S&&(M=S*Math.PI/180),d.rotation=M})),h.dirtyStyle()},e}(ru),lP="sunburstRootToNode",uP="sunburstHighlight";var hP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n,i){var r=this;this.seriesModel=t,this.api=n,this.ecModel=e;var o=t.getData(),a=o.tree.root,s=t.getViewRoot(),l=this.group,u=t.get("renderLabelForZeroData"),h=[];s.eachNode((function(t){h.push(t)}));var c=this._oldChildren||[];!function(i,r){if(0===i.length&&0===r.length)return;function s(t){return t.getId()}function h(s,h){!function(i,r){u||!i||i.getValue()||(i=null);if(i!==a&&r!==a)if(r&&r.piece)i?(r.piece.updateData(!1,i,t,e,n),o.setItemGraphicEl(i.dataIndex,r.piece)):function(t){if(!t)return;t.piece&&(l.remove(t.piece),t.piece=null)}(r);else if(i){var s=new sP(i,t,e,n);l.add(s),o.setItemGraphicEl(i.dataIndex,s)}}(null==s?null:i[s],null==h?null:r[h])}new Em(r,i,s,s).add(h).update(h).remove(V(h,null)).execute()}(h,c),function(i,o){o.depth>0?(r.virtualPiece?r.virtualPiece.updateData(!1,i,t,e,n):(r.virtualPiece=new sP(i,t,e,n),l.add(r.virtualPiece)),o.piece.off("click"),r.virtualPiece.on("click",(function(t){r._rootToNode(o.parentNode)}))):r.virtualPiece&&(l.remove(r.virtualPiece),r.virtualPiece=null)}(a,s),this._initEvents(),this._oldChildren=h},e.prototype._initEvents=function(){var t=this;this.group.off("click"),this.group.on("click",(function(e){var n=!1;t.seriesModel.getViewRoot().eachNode((function(i){if(!n&&i.piece&&i.piece===e.target){var r=i.getModel().get("nodeClick");if("rootToNode"===r)t._rootToNode(i);else if("link"===r){var o=i.getModel(),a=o.get("link");if(a)Fc(a,o.get("target",!0)||"_blank")}n=!0}}))}))},e.prototype._rootToNode=function(t){t!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:lP,from:this.uid,seriesId:this.seriesModel.id,targetNode:t})},e.prototype.containPoint=function(t,e){var n=e.getData().getItemLayout(0);if(n){var i=t[0]-n.cx,r=t[1]-n.cy,o=Math.sqrt(i*i+r*r);return o<=n.r&&o>=n.r0}},e.type="sunburst",e}(Xf),cP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.ignoreStyleOnData=!0,n}return n(e,t),e.prototype.getInitialData=function(t,e){var n={name:t.name,children:t.data};pP(n);var i=O(t.levels||[],(function(t){return new Hh(t,this,e)}),this),r=MT.createTree(n,this,(function(t){t.wrapMethod("getItemModel",(function(t,e){var n=r.getNodeByDataIndex(e),o=i[n.depth];return o&&(t.parentModel=o),t}))}));return r.data},e.prototype.optionUpdated=function(){this.resetViewRoot()},e.prototype.getDataParams=function(e){var n=t.prototype.getDataParams.apply(this,arguments),i=this.getData().tree.getNodeByDataIndex(e);return n.treePathInfo=DT(i,this),n},e.prototype.getViewRoot=function(){return this._viewRoot},e.prototype.resetViewRoot=function(t){t?this._viewRoot=t:t=this._viewRoot;var e=this.getRawData().tree.root;t&&(t===e||e.contains(t))||(this._viewRoot=e)},e.prototype.enableAriaDecal=function(){NT(this)},e.type="series.sunburst",e.defaultOption={zlevel:0,z:2,center:["50%","50%"],radius:[0,"75%"],clockwise:!0,startAngle:90,minAngle:0,stillShowZeroSum:!0,nodeClick:"rootToNode",renderLabelForZeroData:!1,label:{rotate:"radial",show:!0,opacity:1,align:"center",position:"inside",distance:5,silent:!0},itemStyle:{borderWidth:1,borderColor:"white",borderType:"solid",shadowBlur:0,shadowColor:"rgba(0, 0, 0, 0.2)",shadowOffsetX:0,shadowOffsetY:0,opacity:1},emphasis:{focus:"descendant"},blur:{itemStyle:{opacity:.2},label:{opacity:.1}},animationType:"expansion",animationDuration:1e3,animationDurationUpdate:500,data:[],sort:"desc"},e}(Of);function pP(t){var e=0;P(t.children,(function(t){pP(t);var n=t.value;G(n)&&(n=n[0]),e+=n}));var n=t.value;G(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=e),n<0&&(n=0),G(t.value)?t.value[0]=n:t.value=n}var dP=Math.PI/180;function fP(t,e,n){e.eachSeriesByType(t,(function(t){var e=t.get("center"),i=t.get("radius");G(i)||(i=[0,i]),G(e)||(e=[e,e]);var r=n.getWidth(),o=n.getHeight(),a=Math.min(r,o),s=ji(e[0],r),l=ji(e[1],o),u=ji(i[0],a/2),h=ji(i[1],a/2),c=-t.get("startAngle")*dP,p=t.get("minAngle")*dP,d=t.getData().tree.root,f=t.getViewRoot(),g=f.depth,y=t.get("sort");null!=y&&gP(f,y);var v=0;P(f.children,(function(t){!isNaN(t.getValue())&&v++}));var m=f.getValue(),_=Math.PI/(m||v)*2,x=f.depth>0,b=f.height-(x?-1:1),w=(h-u)/(b||1),S=t.get("clockwise"),M=t.get("stillShowZeroSum"),I=S?1:-1,T=function(t,e){if(t){var n=e;if(t!==d){var i=t.getValue(),r=0===m&&M?_:i*_;r1;)r=r.parentNode;var o=n.getColorFromPalette(r.name||r.dataIndex+"",e);return t.depth>1&&"string"==typeof o&&(o=Ue(o,(t.depth-1)/(i-1)*.5)),o}(r,t,i.root.height)),I(n.ensureUniqueItemVisual(r.dataIndex,"style"),o)}))}))}var vP={x:1,y:1,scaleX:1,scaleY:1,originX:1,originY:1,rotation:1},mP={color:"fill",borderColor:"stroke"},_P={symbol:1,symbolSize:1,symbolKeepAspect:1,legendIcon:1,visualMeta:1,liftZ:1,decal:1},xP=Or(),bP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.optionUpdated=function(){this.currentZLevel=this.get("zlevel",!0),this.currentZ=this.get("z",!0)},e.prototype.getInitialData=function(t,e){return y_(null,this)},e.prototype.getDataParams=function(e,n,i){var r=t.prototype.getDataParams.call(this,e,n);return i&&(r.info=xP(i).info),r},e.type="series.custom",e.dependencies=["grid","polar","geo","singleAxis","calendar"],e.defaultOption={coordinateSystem:"cartesian2d",zlevel:0,z:2,legendHoverLink:!0,clip:!1},e}(Of);function wP(t,e){return e=e||[0,0],O(["x","y"],(function(n,i){var r=this.getAxis(n),o=e[i],a=t[i]/2;return"category"===r.type?r.getBandWidth():Math.abs(r.dataToCoord(o-a)-r.dataToCoord(o+a))}),this)}function SP(t,e){return e=e||[0,0],O([0,1],(function(n){var i=e[n],r=t[n]/2,o=[],a=[];return o[n]=i-r,a[n]=i+r,o[1-n]=a[1-n]=e[1-n],Math.abs(this.dataToPoint(o)[n]-this.dataToPoint(a)[n])}),this)}function MP(t,e){var n=this.getAxis(),i=e instanceof Array?e[0]:e,r=(t instanceof Array?t[0]:t)/2;return"category"===n.type?n.getBandWidth():Math.abs(n.dataToCoord(i-r)-n.dataToCoord(i+r))}function IP(t,e){return e=e||[0,0],O(["Radius","Angle"],(function(n,i){var r=this["get"+n+"Axis"](),o=e[i],a=t[i]/2,s="category"===r.type?r.getBandWidth():Math.abs(r.dataToCoord(o-a)-r.dataToCoord(o+a));return"Angle"===n&&(s=s*Math.PI/180),s}),this)}function TP(t,e,n,i){return t&&(t.legacy||!1!==t.legacy&&!n&&!i&&"tspan"!==e&&("text"===e||dt(t,"text")))}function CP(t,e,n){var i,r,o,a=t;if("text"===e)o=a;else{o={},dt(a,"text")&&(o.text=a.text),dt(a,"rich")&&(o.rich=a.rich),dt(a,"textFill")&&(o.fill=a.textFill),dt(a,"textStroke")&&(o.stroke=a.textStroke),dt(a,"fontFamily")&&(o.fontFamily=a.fontFamily),dt(a,"fontSize")&&(o.fontSize=a.fontSize),dt(a,"fontStyle")&&(o.fontStyle=a.fontStyle),dt(a,"fontWeight")&&(o.fontWeight=a.fontWeight),r={type:"text",style:o,silent:!0},i={};var s=dt(a,"textPosition");n?i.position=s?a.textPosition:"inside":s&&(i.position=a.textPosition),dt(a,"textPosition")&&(i.position=a.textPosition),dt(a,"textOffset")&&(i.offset=a.textOffset),dt(a,"textRotation")&&(i.rotation=a.textRotation),dt(a,"textDistance")&&(i.distance=a.textDistance)}return DP(o,t),P(o.rich,(function(t){DP(t,t)})),{textConfig:i,textContent:r}}function DP(t,e){e&&(e.font=e.textFont||e.font,dt(e,"textStrokeWidth")&&(t.lineWidth=e.textStrokeWidth),dt(e,"textAlign")&&(t.align=e.textAlign),dt(e,"textVerticalAlign")&&(t.verticalAlign=e.textVerticalAlign),dt(e,"textLineHeight")&&(t.lineHeight=e.textLineHeight),dt(e,"textWidth")&&(t.width=e.textWidth),dt(e,"textHeight")&&(t.height=e.textHeight),dt(e,"textBackgroundColor")&&(t.backgroundColor=e.textBackgroundColor),dt(e,"textPadding")&&(t.padding=e.textPadding),dt(e,"textBorderColor")&&(t.borderColor=e.textBorderColor),dt(e,"textBorderWidth")&&(t.borderWidth=e.textBorderWidth),dt(e,"textBorderRadius")&&(t.borderRadius=e.textBorderRadius),dt(e,"textBoxShadowColor")&&(t.shadowColor=e.textBoxShadowColor),dt(e,"textBoxShadowBlur")&&(t.shadowBlur=e.textBoxShadowBlur),dt(e,"textBoxShadowOffsetX")&&(t.shadowOffsetX=e.textBoxShadowOffsetX),dt(e,"textBoxShadowOffsetY")&&(t.shadowOffsetY=e.textBoxShadowOffsetY))}function AP(t,e,n){var i=t;i.textPosition=i.textPosition||n.position||"inside",null!=n.offset&&(i.textOffset=n.offset),null!=n.rotation&&(i.textRotation=n.rotation),null!=n.distance&&(i.textDistance=n.distance);var r=i.textPosition.indexOf("inside")>=0,o=t.fill||"#000";kP(i,e);var a=null==i.textFill;return r?a&&(i.textFill=n.insideFill||"#fff",!i.textStroke&&n.insideStroke&&(i.textStroke=n.insideStroke),!i.textStroke&&(i.textStroke=o),null==i.textStrokeWidth&&(i.textStrokeWidth=2)):(a&&(i.textFill=t.fill||n.outsideFill||"#000"),!i.textStroke&&n.outsideStroke&&(i.textStroke=n.outsideStroke)),i.text=e.text,i.rich=e.rich,P(e.rich,(function(t){kP(t,t)})),i}function kP(t,e){e&&(dt(e,"fill")&&(t.textFill=e.fill),dt(e,"stroke")&&(t.textStroke=e.fill),dt(e,"lineWidth")&&(t.textStrokeWidth=e.lineWidth),dt(e,"font")&&(t.font=e.font),dt(e,"fontStyle")&&(t.fontStyle=e.fontStyle),dt(e,"fontWeight")&&(t.fontWeight=e.fontWeight),dt(e,"fontSize")&&(t.fontSize=e.fontSize),dt(e,"fontFamily")&&(t.fontFamily=e.fontFamily),dt(e,"align")&&(t.textAlign=e.align),dt(e,"verticalAlign")&&(t.textVerticalAlign=e.verticalAlign),dt(e,"lineHeight")&&(t.textLineHeight=e.lineHeight),dt(e,"width")&&(t.textWidth=e.width),dt(e,"height")&&(t.textHeight=e.height),dt(e,"backgroundColor")&&(t.textBackgroundColor=e.backgroundColor),dt(e,"padding")&&(t.textPadding=e.padding),dt(e,"borderColor")&&(t.textBorderColor=e.borderColor),dt(e,"borderWidth")&&(t.textBorderWidth=e.borderWidth),dt(e,"borderRadius")&&(t.textBorderRadius=e.borderRadius),dt(e,"shadowColor")&&(t.textBoxShadowColor=e.shadowColor),dt(e,"shadowBlur")&&(t.textBoxShadowBlur=e.shadowBlur),dt(e,"shadowOffsetX")&&(t.textBoxShadowOffsetX=e.shadowOffsetX),dt(e,"shadowOffsetY")&&(t.textBoxShadowOffsetY=e.shadowOffsetY),dt(e,"textShadowColor")&&(t.textShadowColor=e.textShadowColor),dt(e,"textShadowBlur")&&(t.textShadowBlur=e.textShadowBlur),dt(e,"textShadowOffsetX")&&(t.textShadowOffsetX=e.textShadowOffsetX),dt(e,"textShadowOffsetY")&&(t.textShadowOffsetY=e.textShadowOffsetY))}var LP={position:["x","y"],scale:["scaleX","scaleY"],origin:["originX","originY"]};function PP(t,e,n){var i=t[n],r=LP[n];i&&(e[r[0]]=i[0],e[r[1]]=i[1])}function OP(t,e,n){null!=t[n]&&(e[n]=t[n])}function RP(t,e,n){n&&(t[e]=n[e])}function NP(t,e,n,i,r){var o=n[t];if(o){var a,s=e[t],l=o.enterFrom;if(r&&l){!a&&(a=i[t]={});for(var u=E(l),h=0;h=0){!a&&(a=i[t]={});var d=E(s);for(h=0;hi[1]&&i.reverse(),{coordSys:{type:"polar",cx:t.cx,cy:t.cy,r:i[1],r0:i[0]},api:{coord:function(i){var r=e.dataToRadius(i[0]),o=n.dataToAngle(i[1]),a=t.coordToPoint([r,o]);return a.push(r,o*Math.PI/180),a},size:B(IP,t)}}},calendar:function(t){var e=t.getRect(),n=t.getRangeInfo();return{coordSys:{type:"calendar",x:e.x,y:e.y,width:e.width,height:e.height,cellWidth:t.getCellWidth(),cellHeight:t.getCellHeight(),rangeInfo:{start:n.start,end:n.end,weeks:n.weeks,dayCount:n.allDay}},api:{coord:function(e,n){return t.dataToPoint(e,n)}}}}};function jP(t){return t instanceof Ja}function qP(t){return t instanceof Io}var KP=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n,i){var r=this._data,o=t.getData(),a=this.group,s=rO(t,o,e,n);r||a.removeAll(),o.diff(r).add((function(e){aO(n,null,e,s(e,i),t,a,o)})).remove((function(e){gO(r.getItemGraphicEl(e),t,a)})).update((function(e,l){var u=r.getItemGraphicEl(l);aO(n,u,e,s(e,i),t,a,o)})).execute();var l=t.get("clip",!0)?jw(t.coordinateSystem,!1,t):null;l?a.setClipPath(l):a.removeClipPath(),this._data=o},e.prototype.incrementalPrepareRender=function(t,e,n){this.group.removeAll(),this._data=null},e.prototype.incrementalRender=function(t,e,n,i,r){var o=e.getData(),a=rO(e,o,n,i);function s(t){t.isGroup||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}for(var l=t.start;l=0){var p=t.getAnimationStyleProps(),d=p?p.style:null;if(d){!o&&(o=i.style={});var f=E(n);for(u=0;u=0?e.getStore().get(r,n):void 0}var o=e.get(i.name,n),a=i&&i.ordinalMeta;return a?a.categories[o]:o},styleEmphasis:function(n,i){0;null==i&&(i=s);var r=m(i,VP).getItemStyle(),o=_(i,VP),a=bh(o,null,null,!0,!0);a.text=o.getShallow("show")?et(t.getFormattedLabel(i,VP),t.getFormattedLabel(i,GP),Iw(e,i)):null;var l=wh(o,null,!0);return b(n,r),r=AP(r,a,l),n&&x(r,n),r.legacy=!0,r},visual:function(t,n){if(null==n&&(n=s),dt(mP,t)){var i=e.getItemVisual(n,"style");return i?i[mP[t]]:null}if(dt(_P,t))return e.getItemVisual(n,t)},barLayout:function(t){if("cartesian2d"===o.type){return function(t){var e=[],n=t.axis,i="axis0";if("category"===n.type){for(var r=n.getBandWidth(),o=0;o=c;p--)gO(e.childAt(p),r,e)}(t,p,n,i,r),s>=0?o.replaceAt(p,s):o.add(p),p}function lO(t,e,n){var i,r=xP(t),o=e.type,a=e.shape,s=e.style;return n.isUniversalTransitionEnabled()||null!=o&&o!==r.customGraphicType||"path"===o&&((i=a)&&(dt(i,"pathData")||dt(i,"d")))&&yO(a)!==r.customPathData||"image"===o&&dt(s,"image")&&s.image!==r.customImagePath}function uO(t,e,n){var i=e?hO(t,e):t,r=e?cO(t,i,VP):t.style,o=t.type,a=i?i.textConfig:null,s=t.textContent,l=s?e?hO(s,e):s:null;if(r&&(n.isLegacy||TP(r,o,!!a,!!l))){n.isLegacy=!0;var u=CP(r,o,!e);!a&&u.textConfig&&(a=u.textConfig),!l&&u.textContent&&(l=u.textContent)}if(!e&&l){var h=l;!h.type&&(h.type="text")}var c=e?n[e]:n.normal;c.cfg=a,c.conOpt=l}function hO(t,e){return e?t?t[e]:null:t}function cO(t,e,n){var i=e&&e.style;return null==i&&n===VP&&t&&(i=t.styleEmphasis),i}function pO(t,e){var n=t&&t.name;return null!=n?n:"e\0\0"+e}function dO(t,e){var n=this.context,i=null!=t?n.newChildren[t]:null,r=null!=e?n.oldChildren[e]:null;sO(n.api,r,n.dataIndex,i,n.seriesModel,n.group)}function fO(t){var e=this.context;gO(e.oldChildren[t],e.seriesModel,e.group)}function gO(t,e,n){if(t){var i=xP(t).leaveToProps;i?zu(t,i,e,{cb:function(){n.remove(t)}}):n.remove(t)}}function yO(t){return t&&(t.pathData||t.d)}var vO=Or(),mO=w,_O=B,xO=function(){function t(){this._dragging=!1,this.animationThreshold=15}return t.prototype.render=function(t,e,n,i){var r=e.get("value"),o=e.get("status");if(this._axisModel=t,this._axisPointerModel=e,this._api=n,i||this._lastValue!==r||this._lastStatus!==o){this._lastValue=r,this._lastStatus=o;var a=this._group,s=this._handle;if(!o||"hide"===o)return a&&a.hide(),void(s&&s.hide());a&&a.show(),s&&s.show();var l={};this.makeElOption(l,r,t,e,n);var u=l.graphicKey;u!==this._lastGraphicKey&&this.clear(n),this._lastGraphicKey=u;var h=this._moveAnimation=this.determineAnimation(t,e);if(a){var c=V(bO,e,h);this.updatePointerEl(a,l,c),this.updateLabelEl(a,l,c,e)}else a=this._group=new Bi,this.createPointerEl(a,l,t,e),this.createLabelEl(a,l,t,e),n.getZr().add(a);IO(a,e,!0),this._renderHandle(r)}},t.prototype.remove=function(t){this.clear(t)},t.prototype.dispose=function(t){this.clear(t)},t.prototype.determineAnimation=function(t,e){var n=e.get("animation"),i=t.axis,r="category"===i.type,o=e.get("snap");if(!o&&!r)return!1;if("auto"===n||null==n){var a=this.animationThreshold;if(r&&i.getBandWidth()>a)return!0;if(o){var s=OM(t).seriesDataCount,l=i.getExtent();return Math.abs(l[0]-l[1])/s>a}return!1}return!0===n},t.prototype.makeElOption=function(t,e,n,i,r){},t.prototype.createPointerEl=function(t,e,n,i){var r=e.pointer;if(r){var o=vO(t).pointerEl=new gh[r.type](mO(e.pointer));t.add(o)}},t.prototype.createLabelEl=function(t,e,n,i){if(e.label){var r=vO(t).labelEl=new ds(mO(e.label));t.add(r),SO(r,i)}},t.prototype.updatePointerEl=function(t,e,n){var i=vO(t).pointerEl;i&&e.pointer&&(i.setStyle(e.pointer.style),n(i,{shape:e.pointer.shape}))},t.prototype.updateLabelEl=function(t,e,n,i){var r=vO(t).labelEl;r&&(r.setStyle(e.label.style),n(r,{x:e.label.x,y:e.label.y}),SO(r,i))},t.prototype._renderHandle=function(t){if(!this._dragging&&this.updateHandleTransform){var e,n=this._axisPointerModel,i=this._api.getZr(),r=this._handle,o=n.getModel("handle"),a=n.get("status");if(!o.get("show")||!a||"hide"===a)return r&&i.remove(r),void(this._handle=null);this._handle||(e=!0,r=this._handle=hh(o.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){ee(t.event)},onmousedown:_O(this._onHandleDragMove,this,0,0),drift:_O(this._onHandleDragMove,this),ondragend:_O(this._onHandleDragEnd,this)}),i.add(r)),IO(r,n,!1),r.setStyle(o.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var s=o.get("size");G(s)||(s=[s,s]),r.scaleX=s[0]/2,r.scaleY=s[1]/2,eg(this,"_doDispatchAxisPointer",o.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},t.prototype._moveHandleToValue=function(t,e){bO(this._axisPointerModel,!e&&this._moveAnimation,this._handle,MO(this.getHandleTransform(t,this._axisModel,this._axisPointerModel)))},t.prototype._onHandleDragMove=function(t,e){var n=this._handle;if(n){this._dragging=!0;var i=this.updateHandleTransform(MO(n),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=i,n.stopAnimation(),n.attr(MO(i)),vO(n).lastProp=null,this._doDispatchAxisPointer()}},t.prototype._doDispatchAxisPointer=function(){if(this._handle){var t=this._payloadInfo,e=this._axisModel;this._api.dispatchAction({type:"updateAxisPointer",x:t.cursorPoint[0],y:t.cursorPoint[1],tooltipOption:t.tooltipOption,axesInfo:[{axisDim:e.axis.dim,axisIndex:e.componentIndex}]})}},t.prototype._onHandleDragEnd=function(){if(this._dragging=!1,this._handle){var t=this._axisPointerModel.get("value");this._moveHandleToValue(t),this._api.dispatchAction({type:"hideTip"})}},t.prototype.clear=function(t){this._lastValue=null,this._lastStatus=null;var e=t.getZr(),n=this._group,i=this._handle;e&&n&&(this._lastGraphicKey=null,n&&e.remove(n),i&&e.remove(i),this._group=null,this._handle=null,this._payloadInfo=null)},t.prototype.doClear=function(){},t.prototype.buildLabel=function(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}},t}();function bO(t,e,n,i){wO(vO(n).lastProp,i)||(vO(n).lastProp=i,e?zu(n,i,t):(n.stopAnimation(),n.attr(i)))}function wO(t,e){if(X(t)&&X(e)){var n=!0;return P(e,(function(e,i){n=n&&wO(t[i],e)})),!!n}return t===e}function SO(t,e){t[e.get(["label","show"])?"show":"hide"]()}function MO(t){return{x:t.x||0,y:t.y||0,rotation:t.rotation||0}}function IO(t,e,n){var i=e.get("z"),r=e.get("zlevel");t&&t.traverse((function(t){"group"!==t.type&&(null!=i&&(t.z=i),null!=r&&(t.zlevel=r),t.silent=n)}))}function TO(t){var e,n=t.get("type"),i=t.getModel(n+"Style");return"line"===n?(e=i.getLineStyle()).fill=null:"shadow"===n&&((e=i.getAreaStyle()).stroke=null),e}function CO(t,e,n,i,r){var o=DO(n.get("value"),e.axis,e.ecModel,n.get("seriesDataIndices"),{precision:n.get(["label","precision"]),formatter:n.get(["label","formatter"])}),a=n.getModel("label"),s=Lc(a.get("padding")||0),l=a.getFont(),u=wi(o,l),h=r.position,c=u.width+s[1]+s[3],p=u.height+s[0]+s[2],d=r.align;"right"===d&&(h[0]-=c),"center"===d&&(h[0]-=c/2);var f=r.verticalAlign;"bottom"===f&&(h[1]-=p),"middle"===f&&(h[1]-=p/2),function(t,e,n,i){var r=i.getWidth(),o=i.getHeight();t[0]=Math.min(t[0]+e,r)-e,t[1]=Math.min(t[1]+n,o)-n,t[0]=Math.max(t[0],0),t[1]=Math.max(t[1],0)}(h,c,p,i);var g=a.get("backgroundColor");g&&"auto"!==g||(g=e.get(["axisLine","lineStyle","color"])),t.label={x:h[0],y:h[1],style:bh(a,{text:o,font:l,fill:a.getTextColor(),padding:s,backgroundColor:g}),z2:10}}function DO(t,e,n,i,r){t=e.scale.parse(t);var o=e.scale.getLabel({value:t},{precision:r.precision}),a=r.formatter;if(a){var s={value:vx(e,{value:t}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};P(i,(function(t){var e=n.getSeriesByIndex(t.seriesIndex),i=t.dataIndexInside,r=e&&e.getDataParams(i);r&&s.seriesData.push(r)})),H(a)?o=a.replace("{value}",o):F(a)&&(o=a(s))}return o}function AO(t,e,n){var i=[1,0,0,1,0,0];return Xn(i,i,n.rotation),Un(i,i,n.position),rh([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}function kO(t,e,n,i,r,o){var a=MM.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=r.get(["label","margin"]),CO(e,i,r,o,{position:AO(i.axis,t,n),align:a.textAlign,verticalAlign:a.textVerticalAlign})}function LO(t,e,n){return{x1:t[n=n||0],y1:t[1-n],x2:e[n],y2:e[1-n]}}function PO(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}}function OO(t,e,n,i,r,o){return{cx:t,cy:e,r0:n,r:i,startAngle:r,endAngle:o,clockwise:!0}}var RO=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis,a=o.grid,s=i.get("type"),l=NO(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(e,!0));if(s&&"none"!==s){var h=TO(i),c=zO[s](o,u,l);c.style=h,t.graphicKey=c.type,t.pointer=c}kO(e,t,yM(a.model,n),n,i,r)},e.prototype.getHandleTransform=function(t,e,n){var i=yM(e.axis.grid.model,e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=AO(e.axis,t,i);return{x:r[0],y:r[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,e,n,i){var r=n.axis,o=r.grid,a=r.getGlobalExtent(!0),s=NO(o,r).getOtherAxis(r).getGlobalExtent(),l="x"===r.dim?0:1,u=[t.x,t.y];u[l]+=e[l],u[l]=Math.min(a[1],u[l]),u[l]=Math.max(a[0],u[l]);var h=(s[1]+s[0])/2,c=[h,h];c[l]=u[l];return{x:u[0],y:u[1],rotation:t.rotation,cursorPoint:c,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][l]}},e}(xO);function NO(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}var zO={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:LO([e,n[0]],[e,n[1]],EO(t))}},shadow:function(t,e,n){var i=Math.max(1,t.getBandWidth()),r=n[1]-n[0];return{type:"Rect",shape:PO([e-i/2,n[0]],[i,r],EO(t))}}};function EO(t){return"x"===t.dim?0:1}var BO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="axisPointer",e.defaultOption={show:"auto",zlevel:0,z:50,type:"line",snap:!1,triggerTooltip:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:"#B9BEC9",width:1,type:"dashed"},shadowStyle:{color:"rgba(210,219,238,0.2)"},label:{show:!0,formatter:null,precision:"auto",margin:3,color:"#fff",padding:[5,7,5,7],backgroundColor:"auto",borderColor:null,borderWidth:0,borderRadius:3},handle:{show:!1,icon:"M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4h1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7v-1.2h6.6z M13.3,22H6.7v-1.2h6.6z M13.3,19.6H6.7v-1.2h6.6z",size:45,margin:50,color:"#333",shadowBlur:3,shadowColor:"#aaa",shadowOffsetX:0,shadowOffsetY:2,throttle:40}},e}(tp),VO=Or(),GO=P;function FO(t,e,n){if(!a.node){var i=e.getZr();VO(i).records||(VO(i).records={}),function(t,e){if(VO(t).initialized)return;function n(n,i){t.on(n,(function(n){var r=function(t){var e={showTip:[],hideTip:[]},n=function(i){var r=e[i.type];r?r.push(i):(i.dispatchAction=n,t.dispatchAction(i))};return{dispatchAction:n,pendings:e}}(e);GO(VO(t).records,(function(t){t&&i(t,n,r.dispatchAction)})),function(t,e){var n,i=t.showTip.length,r=t.hideTip.length;i?n=t.showTip[i-1]:r&&(n=t.hideTip[r-1]);n&&(n.dispatchAction=null,e.dispatchAction(n))}(r.pendings,e)}))}VO(t).initialized=!0,n("click",V(WO,"click")),n("mousemove",V(WO,"mousemove")),n("globalout",HO)}(i,e),(VO(i).records[t]||(VO(i).records[t]={})).handler=n}}function HO(t,e,n){t.handler("leave",null,n)}function WO(t,e,n,i){e.handler(t,n,i)}function UO(t,e){if(!a.node){var n=e.getZr();(VO(n).records||{})[t]&&(VO(n).records[t]=null)}}var XO=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=e.getComponent("tooltip"),r=t.get("triggerOn")||i&&i.get("triggerOn")||"mousemove|click";FO("axisPointer",n,(function(t,e,n){"none"!==r&&("leave"===t||r.indexOf(t)>=0)&&n({type:"updateAxisPointer",currTrigger:t,x:e&&e.offsetX,y:e&&e.offsetY})}))},e.prototype.remove=function(t,e){UO("axisPointer",e)},e.prototype.dispose=function(t,e){UO("axisPointer",e)},e.type="axisPointer",e}(Ff);function YO(t,e){var n,i=[],r=t.seriesIndex;if(null==r||!(n=e.getSeriesByIndex(r)))return{point:[]};var o=n.getData(),a=Pr(o,t);if(null==a||a<0||G(a))return{point:[]};var s=o.getItemGraphicEl(a),l=n.coordinateSystem;if(n.getTooltipPosition)i=n.getTooltipPosition(a)||[];else if(l&&l.dataToPoint)if(t.isStacked){var u=l.getBaseAxis(),h=l.getOtherAxis(u).dim,c=u.dim,p="x"===h||"radius"===h?1:0,d=o.mapDimension(c),f=[];f[p]=o.get(d,a),f[1-p]=o.get(o.getCalculationInfo("stackResultDimension"),a),i=l.dataToPoint(f)||[]}else i=l.dataToPoint(o.getValues(O(l.dimensions,(function(t){return o.mapDimension(t)})),a))||[];else if(s){var g=s.getBoundingRect().clone();g.applyTransform(s.transform),i=[g.x+g.width/2,g.y+g.height/2]}return{point:i,el:s}}var ZO=Or();function jO(t,e,n){var i=t.currTrigger,r=[t.x,t.y],o=t,a=t.dispatchAction||B(n.dispatchAction,n),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){QO(r)&&(r=YO({seriesIndex:o.seriesIndex,dataIndex:o.dataIndex},e).point);var l=QO(r),u=o.axesInfo,h=s.axesInfo,c="leave"===i||QO(r),p={},d={},f={list:[],map:{}},g={showPointer:V(KO,d),showTooltip:V($O,f)};P(s.coordSysMap,(function(t,e){var n=l||t.containPoint(r);P(s.coordSysAxesInfo[e],(function(t,e){var i=t.axis,o=function(t,e){for(var n=0;n<(t||[]).length;n++){var i=t[n];if(e.axis.dim===i.axisDim&&e.axis.model.componentIndex===i.axisIndex)return i}}(u,t);if(!c&&n&&(!u||o)){var a=o&&o.value;null!=a||l||(a=i.pointToData(r)),null!=a&&qO(t,a,g,!1,p)}}))}));var y={};return P(h,(function(t,e){var n=t.linkGroup;n&&!d[e]&&P(n.axesInfo,(function(e,i){var r=d[i];if(e!==t&&r){var o=r.value;n.mapper&&(o=t.axis.scale.parse(n.mapper(o,JO(e),JO(t)))),y[t.key]=o}}))})),P(y,(function(t,e){qO(h[e],t,g,!0,p)})),function(t,e,n){var i=n.axesInfo=[];P(e,(function(e,n){var r=e.axisPointerModel.option,o=t[n];o?(!e.useHandle&&(r.status="show"),r.value=o.value,r.seriesDataIndices=(o.payloadBatch||[]).slice()):!e.useHandle&&(r.status="hide"),"show"===r.status&&i.push({axisDim:e.axis.dim,axisIndex:e.axis.model.componentIndex,value:r.value})}))}(d,h,p),function(t,e,n,i){if(QO(e)||!t.list.length)return void i({type:"hideTip"});var r=((t.list[0].dataByAxis[0]||{}).seriesDataIndices||[])[0]||{};i({type:"showTip",escapeConnect:!0,x:e[0],y:e[1],tooltipOption:n.tooltipOption,position:n.position,dataIndexInside:r.dataIndexInside,dataIndex:r.dataIndex,seriesIndex:r.seriesIndex,dataByCoordSys:t.list})}(f,r,t,a),function(t,e,n){var i=n.getZr(),r="axisPointerLastHighlights",o=ZO(i)[r]||{},a=ZO(i)[r]={};P(t,(function(t,e){var n=t.axisPointerModel.option;"show"===n.status&&P(n.seriesDataIndices,(function(t){var e=t.seriesIndex+" | "+t.dataIndex;a[e]=t}))}));var s=[],l=[];P(o,(function(t,e){!a[e]&&l.push(t)})),P(a,(function(t,e){!o[e]&&s.push(t)})),l.length&&n.dispatchAction({type:"downplay",escapeConnect:!0,notBlur:!0,batch:l}),s.length&&n.dispatchAction({type:"highlight",escapeConnect:!0,notBlur:!0,batch:s})}(h,0,n),p}}function qO(t,e,n,i,r){var o=t.axis;if(!o.scale.isBlank()&&o.containData(e))if(t.involveSeries){var a=function(t,e){var n=e.axis,i=n.dim,r=t,o=[],a=Number.MAX_VALUE,s=-1;return P(e.seriesModels,(function(e,l){var u,h,c=e.getData().mapDimensionsAll(i);if(e.getAxisTooltipData){var p=e.getAxisTooltipData(c,t,n);h=p.dataIndices,u=p.nestestValue}else{if(!(h=e.getData().indicesOfNearest(c[0],t,"category"===n.type?.5:null)).length)return;u=e.getData().get(c[0],h[0])}if(null!=u&&isFinite(u)){var d=t-u,f=Math.abs(d);f<=a&&((f=0&&s<0)&&(a=f,s=d,r=u,o.length=0),P(h,(function(t){o.push({seriesIndex:e.seriesIndex,dataIndexInside:t,dataIndex:e.getData().getRawIndex(t)})})))}})),{payloadBatch:o,snapToValue:r}}(e,t),s=a.payloadBatch,l=a.snapToValue;s[0]&&null==r.seriesIndex&&I(r,s[0]),!i&&t.snap&&o.containData(l)&&null!=l&&(e=l),n.showPointer(t,e,s),n.showTooltip(t,a,l)}else n.showPointer(t,e)}function KO(t,e,n,i){t[e.key]={value:n,payloadBatch:i}}function $O(t,e,n,i){var r=n.payloadBatch,o=e.axis,a=o.model,s=e.axisPointerModel;if(e.triggerTooltip&&r.length){var l=e.coordSys.model,u=NM(l),h=t.map[u];h||(h=t.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},t.list.push(h)),h.dataByAxis.push({axisDim:o.dim,axisIndex:a.componentIndex,axisType:a.type,axisId:a.id,value:i,valueLabelOpt:{precision:s.get(["label","precision"]),formatter:s.get(["label","formatter"])},seriesDataIndices:r.slice()})}}function JO(t){var e=t.axis.model,n={},i=n.axisDim=t.axis.dim;return n.axisIndex=n[i+"AxisIndex"]=e.componentIndex,n.axisName=n[i+"AxisName"]=e.name,n.axisId=n[i+"AxisId"]=e.id,n}function QO(t){return!t||null==t[0]||isNaN(t[0])||null==t[1]||isNaN(t[1])}function tR(t){EM.registerAxisPointerClass("CartesianAxisPointer",RO),t.registerComponentModel(BO),t.registerComponentView(XO),t.registerPreprocessor((function(t){if(t){(!t.axisPointer||0===t.axisPointer.length)&&(t.axisPointer={});var e=t.axisPointer.link;e&&!G(e)&&(t.axisPointer.link=[e])}})),t.registerProcessor(t.PRIORITY.PROCESSOR.STATISTIC,(function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=kM(t,e)})),t.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},jO)}var eR=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis;"angle"===o.dim&&(this.animationThreshold=Math.PI/18);var a=o.polar,s=a.getOtherAxis(o).getExtent(),l=o.dataToCoord(e),u=i.get("type");if(u&&"none"!==u){var h=TO(i),c=nR[u](o,a,l,s);c.style=h,t.graphicKey=c.type,t.pointer=c}var p=function(t,e,n,i,r){var o=e.axis,a=o.dataToCoord(t),s=i.getAngleAxis().getExtent()[0];s=s/180*Math.PI;var l,u,h,c=i.getRadiusAxis().getExtent();if("radius"===o.dim){var p=[1,0,0,1,0,0];Xn(p,p,s),Un(p,p,[i.cx,i.cy]),l=rh([a,-r],p);var d=e.getModel("axisLabel").get("rotate")||0,f=MM.innerTextLayout(s,d*Math.PI/180,-1);u=f.textAlign,h=f.textVerticalAlign}else{var g=c[1];l=i.coordToPoint([g+r,a]);var y=i.cx,v=i.cy;u=Math.abs(l[0]-y)/g<.3?"center":l[0]>y?"left":"right",h=Math.abs(l[1]-v)/g<.3?"middle":l[1]>v?"top":"bottom"}return{position:l,align:u,verticalAlign:h}}(e,n,0,a,i.get(["label","margin"]));CO(t,n,i,r,p)},e}(xO);var nR={line:function(t,e,n,i){return"angle"===t.dim?{type:"Line",shape:LO(e.coordToPoint([i[0],n]),e.coordToPoint([i[1],n]))}:{type:"Circle",shape:{cx:e.cx,cy:e.cy,r:n}}},shadow:function(t,e,n,i){var r=Math.max(1,t.getBandWidth()),o=Math.PI/180;return"angle"===t.dim?{type:"Sector",shape:OO(e.cx,e.cy,i[0],i[1],(-n-r/2)*o,(r/2-n)*o)}:{type:"Sector",shape:OO(e.cx,e.cy,n-r/2,n+r/2,0,2*Math.PI)}}},iR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.findAxisModel=function(t){var e;return this.ecModel.eachComponent(t,(function(t){t.getCoordSysModel()===this&&(e=t)}),this),e},e.type="polar",e.dependencies=["radiusAxis","angleAxis"],e.defaultOption={zlevel:0,z:0,center:["50%","50%"],radius:"80%"},e}(tp),rR=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getCoordSysModel=function(){return this.getReferringComponents("polar",Er).models[0]},e.type="polarAxis",e}(tp);k(rR,Sx);var oR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="angleAxis",e}(rR),aR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="radiusAxis",e}(rR),sR=function(t){function e(e,n){return t.call(this,"radius",e,n)||this}return n(e,t),e.prototype.pointToData=function(t,e){return this.polar.pointToData(t,e)["radius"===this.dim?0:1]},e}(Fx);sR.prototype.dataToRadius=Fx.prototype.dataToCoord,sR.prototype.radiusToData=Fx.prototype.coordToData;var lR=Or(),uR=function(t){function e(e,n){return t.call(this,"angle",e,n||[0,360])||this}return n(e,t),e.prototype.pointToData=function(t,e){return this.polar.pointToData(t,e)["radius"===this.dim?0:1]},e.prototype.calculateCategoryInterval=function(){var t=this,e=t.getLabelModel(),n=t.scale,i=n.getExtent(),r=n.count();if(i[1]-i[0]<1)return 0;var o=i[0],a=t.dataToCoord(o+1)-t.dataToCoord(o),s=Math.abs(a),l=wi(null==o?"":o+"",e.getFont(),"center","top"),u=Math.max(l.height,7)/s;isNaN(u)&&(u=1/0);var h=Math.max(0,Math.floor(u)),c=lR(t.model),p=c.lastAutoInterval,d=c.lastTickCount;return null!=p&&null!=d&&Math.abs(p-h)<=1&&Math.abs(d-r)<=1&&p>h?h=p:(c.lastTickCount=r,c.lastAutoInterval=h),h},e}(Fx);uR.prototype.dataToAngle=Fx.prototype.dataToCoord,uR.prototype.angleToData=Fx.prototype.coordToData;var hR=["radius","angle"],cR=function(){function t(t){this.dimensions=hR,this.type="polar",this.cx=0,this.cy=0,this._radiusAxis=new sR,this._angleAxis=new uR,this.axisPointerEnabled=!0,this.name=t||"",this._radiusAxis.polar=this._angleAxis.polar=this}return t.prototype.containPoint=function(t){var e=this.pointToCoord(t);return this._radiusAxis.contain(e[0])&&this._angleAxis.contain(e[1])},t.prototype.containData=function(t){return this._radiusAxis.containData(t[0])&&this._angleAxis.containData(t[1])},t.prototype.getAxis=function(t){return this["_"+t+"Axis"]},t.prototype.getAxes=function(){return[this._radiusAxis,this._angleAxis]},t.prototype.getAxesByScale=function(t){var e=[],n=this._angleAxis,i=this._radiusAxis;return n.scale.type===t&&e.push(n),i.scale.type===t&&e.push(i),e},t.prototype.getAngleAxis=function(){return this._angleAxis},t.prototype.getRadiusAxis=function(){return this._radiusAxis},t.prototype.getOtherAxis=function(t){var e=this._angleAxis;return t===e?this._radiusAxis:e},t.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAngleAxis()},t.prototype.getTooltipAxes=function(t){var e=null!=t&&"auto"!==t?this.getAxis(t):this.getBaseAxis();return{baseAxes:[e],otherAxes:[this.getOtherAxis(e)]}},t.prototype.dataToPoint=function(t,e){return this.coordToPoint([this._radiusAxis.dataToRadius(t[0],e),this._angleAxis.dataToAngle(t[1],e)])},t.prototype.pointToData=function(t,e){var n=this.pointToCoord(t);return[this._radiusAxis.radiusToData(n[0],e),this._angleAxis.angleToData(n[1],e)]},t.prototype.pointToCoord=function(t){var e=t[0]-this.cx,n=t[1]-this.cy,i=this.getAngleAxis(),r=i.getExtent(),o=Math.min(r[0],r[1]),a=Math.max(r[0],r[1]);i.inverse?o=a-360:a=o+360;var s=Math.sqrt(e*e+n*n);e/=s,n/=s;for(var l=Math.atan2(-n,e)/Math.PI*180,u=la;)l+=360*u;return[s,l]},t.prototype.coordToPoint=function(t){var e=t[0],n=t[1]/180*Math.PI;return[Math.cos(n)*e+this.cx,-Math.sin(n)*e+this.cy]},t.prototype.getArea=function(){var t=this.getAngleAxis(),e=this.getRadiusAxis().getExtent().slice();e[0]>e[1]&&e.reverse();var n=t.getExtent(),i=Math.PI/180;return{cx:this.cx,cy:this.cy,r0:e[0],r:e[1],startAngle:-n[0]*i,endAngle:-n[1]*i,clockwise:t.inverse,contain:function(t,e){var n=t-this.cx,i=e-this.cy,r=n*n+i*i,o=this.r,a=this.r0;return r<=o*o&&r>=a*a}}},t.prototype.convertToPixel=function(t,e,n){return pR(e)===this?this.dataToPoint(n):null},t.prototype.convertFromPixel=function(t,e,n){return pR(e)===this?this.pointToData(n):null},t}();function pR(t){var e=t.seriesModel,n=t.polarModel;return n&&n.coordinateSystem||e&&e.coordinateSystem}function dR(t,e){var n=this,i=n.getAngleAxis(),r=n.getRadiusAxis();if(i.scale.setExtent(1/0,-1/0),r.scale.setExtent(1/0,-1/0),t.eachSeries((function(t){if(t.coordinateSystem===n){var e=t.getData();P(bx(e,"radius"),(function(t){r.scale.unionExtentFromData(e,t)})),P(bx(e,"angle"),(function(t){i.scale.unionExtentFromData(e,t)}))}})),fx(i.scale,i.model),fx(r.scale,r.model),"category"===i.type&&!i.onBand){var o=i.getExtent(),a=360/i.scale.count();i.inverse?o[1]+=a:o[1]-=a,i.setExtent(o[0],o[1])}}function fR(t,e){if(t.type=e.get("type"),t.scale=gx(e),t.onBand=e.get("boundaryGap")&&"category"===t.type,t.inverse=e.get("inverse"),function(t){return"angleAxis"===t.mainType}(e)){t.inverse=t.inverse!==e.get("clockwise");var n=e.get("startAngle");t.setExtent(n,n+(t.inverse?-360:360))}e.axis=t,t.model=e}var gR={dimensions:hR,create:function(t,e){var n=[];return t.eachComponent("polar",(function(t,i){var r=new cR(i+"");r.update=dR;var o=r.getRadiusAxis(),a=r.getAngleAxis(),s=t.findAxisModel("radiusAxis"),l=t.findAxisModel("angleAxis");fR(o,s),fR(a,l),function(t,e,n){var i=e.get("center"),r=n.getWidth(),o=n.getHeight();t.cx=ji(i[0],r),t.cy=ji(i[1],o);var a=t.getRadiusAxis(),s=Math.min(r,o)/2,l=e.get("radius");null==l?l=[0,"100%"]:G(l)||(l=[0,l]);var u=[ji(l[0],s),ji(l[1],s)];a.inverse?a.setExtent(u[1],u[0]):a.setExtent(u[0],u[1])}(r,t,e),n.push(r),t.coordinateSystem=r,r.model=t})),t.eachSeries((function(t){if("polar"===t.get("coordinateSystem")){var e=t.getReferringComponents("polar",Er).models[0];0,t.coordinateSystem=e.coordinateSystem}})),n}},yR=["axisLine","axisLabel","axisTick","minorTick","splitLine","minorSplitLine","splitArea"];function vR(t,e,n){e[1]>e[0]&&(e=e.slice().reverse());var i=t.coordToPoint([e[0],n]),r=t.coordToPoint([e[1],n]);return{x1:i[0],y1:i[1],x2:r[0],y2:r[1]}}function mR(t){return t.getRadiusAxis().inverse?0:1}function _R(t){var e=t[0],n=t[t.length-1];e&&n&&Math.abs(Math.abs(e.coord-n.coord)-360)<1e-4&&t.pop()}var xR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.axisPointerClass="PolarAxisPointer",n}return n(e,t),e.prototype.render=function(t,e){if(this.group.removeAll(),t.get("show")){var n=t.axis,i=n.polar,r=i.getRadiusAxis().getExtent(),o=n.getTicksCoords(),a=n.getMinorTicksCoords(),s=O(n.getViewLabels(),(function(t){t=w(t);var e=n.scale,i="ordinal"===e.type?e.getRawOrdinalNumber(t.tickValue):t.tickValue;return t.coord=n.dataToCoord(i),t}));_R(s),_R(o),P(yR,(function(e){!t.get([e,"show"])||n.scale.isBlank()&&"axisLine"!==e||bR[e](this.group,t,i,o,a,r,s)}),this)}},e.type="angleAxis",e}(EM),bR={axisLine:function(t,e,n,i,r,o){var a,s=e.getModel(["axisLine","lineStyle"]),l=mR(n),u=l?0:1;(a=0===o[u]?new Fl({shape:{cx:n.cx,cy:n.cy,r:o[l]},style:s.getLineStyle(),z2:1,silent:!0}):new au({shape:{cx:n.cx,cy:n.cy,r:o[l],r0:o[u]},style:s.getLineStyle(),z2:1,silent:!0})).style.fill=null,t.add(a)},axisTick:function(t,e,n,i,r,o){var a=e.getModel("axisTick"),s=(a.get("inside")?-1:1)*a.get("length"),l=o[mR(n)],u=O(i,(function(t){return new gu({shape:vR(n,[l,l+s],t.coord)})}));t.add(th(u,{style:T(a.getModel("lineStyle").getLineStyle(),{stroke:e.get(["axisLine","lineStyle","color"])})}))},minorTick:function(t,e,n,i,r,o){if(r.length){for(var a=e.getModel("axisTick"),s=e.getModel("minorTick"),l=(a.get("inside")?-1:1)*s.get("length"),u=o[mR(n)],h=[],c=0;cf?"left":"right",v=Math.abs(d[1]-g)/p<.3?"middle":d[1]>g?"top":"bottom";if(s&&s[c]){var m=s[c];X(m)&&m.textStyle&&(a=new Hh(m.textStyle,l,l.ecModel))}var _=new ds({silent:MM.isLabelSilent(e),style:bh(a,{x:d[0],y:d[1],fill:a.getTextColor()||e.get(["axisLine","lineStyle","color"]),text:i.formattedLabel,align:y,verticalAlign:v})});if(t.add(_),h){var x=MM.makeAxisEventDataBase(e);x.targetType="axisLabel",x.value=i.rawLabel,ws(_).eventData=x}}),this)},splitLine:function(t,e,n,i,r,o){var a=e.getModel("splitLine").getModel("lineStyle"),s=a.get("color"),l=0;s=s instanceof Array?s:[s];for(var u=[],h=0;h=0?"p":"n",T=x;m&&(i[s][M]||(i[s][M]={p:x,n:x}),T=i[s][M][I]);var C=void 0,D=void 0,A=void 0,k=void 0;if("radius"===c.dim){var L=c.dataToCoord(S)-x,P=o.dataToCoord(M);Math.abs(L)=e.y&&t[1]<=e.y+e.height:n.contain(n.toLocalCoord(t[1]))&&t[0]>=e.y&&t[0]<=e.y+e.height},t.prototype.pointToData=function(t){var e=this.getAxis();return[e.coordToData(e.toLocalCoord(t["horizontal"===e.orient?0:1]))]},t.prototype.dataToPoint=function(t){var e=this.getAxis(),n=this.getRect(),i=[],r="horizontal"===e.orient?0:1;return t instanceof Array&&(t=t[0]),i[r]=e.toGlobalCoord(e.dataToCoord(+t)),i[1-r]=0===r?n.y+n.height/2:n.x+n.width/2,i},t.prototype.convertToPixel=function(t,e,n){return FR(e)===this?this.dataToPoint(n):null},t.prototype.convertFromPixel=function(t,e,n){return FR(e)===this?this.pointToData(n):null},t}();function FR(t){var e=t.seriesModel,n=t.singleAxisModel;return n&&n.coordinateSystem||e&&e.coordinateSystem}var HR={create:function(t,e){var n=[];return t.eachComponent("singleAxis",(function(i,r){var o=new GR(i,t,e);o.name="single_"+r,o.resize(i,e),i.coordinateSystem=o,n.push(o)})),t.eachSeries((function(t){if("singleAxis"===t.get("coordinateSystem")){var e=t.getReferringComponents("singleAxis",Er).models[0];t.coordinateSystem=e&&e.coordinateSystem}})),n},dimensions:VR},WR=["x","y"],UR=["width","height"],XR=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis,a=o.coordinateSystem,s=jR(a,1-ZR(o)),l=a.dataToPoint(e)[0],u=i.get("type");if(u&&"none"!==u){var h=TO(i),c=YR[u](o,l,s);c.style=h,t.graphicKey=c.type,t.pointer=c}kO(e,t,PR(n),n,i,r)},e.prototype.getHandleTransform=function(t,e,n){var i=PR(e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=AO(e.axis,t,i);return{x:r[0],y:r[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},e.prototype.updateHandleTransform=function(t,e,n,i){var r=n.axis,o=r.coordinateSystem,a=ZR(r),s=jR(o,a),l=[t.x,t.y];l[a]+=e[a],l[a]=Math.min(s[1],l[a]),l[a]=Math.max(s[0],l[a]);var u=jR(o,1-a),h=(u[1]+u[0])/2,c=[h,h];return c[a]=l[a],{x:l[0],y:l[1],rotation:t.rotation,cursorPoint:c,tooltipOption:{verticalAlign:"middle"}}},e}(xO),YR={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:LO([e,n[0]],[e,n[1]],ZR(t))}},shadow:function(t,e,n){var i=t.getBandWidth(),r=n[1]-n[0];return{type:"Rect",shape:PO([e-i/2,n[0]],[i,r],ZR(t))}}};function ZR(t){return t.isHorizontal()?0:1}function jR(t,e){var n=t.getRect();return[n[WR[e]],n[WR[e]]+n[UR[e]]]}var qR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="single",e}(Ff);var KR=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(e,n,i){var r=$c(e);t.prototype.init.apply(this,arguments),$R(e,r)},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),$R(this.option,e)},e.prototype.getCellSize=function(){return this.option.cellSize},e.type="calendar",e.defaultOption={zlevel:0,z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:"#000",width:1,type:"solid"}},itemStyle:{color:"#fff",borderWidth:1,borderColor:"#ccc"},dayLabel:{show:!0,firstDay:0,position:"start",margin:"50%",nameMap:"en",color:"#000"},monthLabel:{show:!0,position:"start",margin:5,align:"center",nameMap:"en",formatter:null,color:"#000"},yearLabel:{show:!0,position:null,margin:30,formatter:null,color:"#ccc",fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},e}(tp);function $R(t,e){var n,i=t.cellSize;1===(n=G(i)?i:t.cellSize=[i,i]).length&&(n[1]=n[0]);var r=O([0,1],(function(t){return function(t,e){return null!=t[Uc[e][0]]||null!=t[Uc[e][1]]&&null!=t[Uc[e][2]]}(e,t)&&(n[t]="auto"),null!=n[t]&&"auto"!==n[t]}));Kc(t,e,{type:"box",ignoreSize:r})}var JR={EN:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],CN:["一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月"]},QR={EN:["S","M","T","W","T","F","S"],CN:["日","一","二","三","四","五","六"]},tN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){var i=this.group;i.removeAll();var r=t.coordinateSystem,o=r.getRangeInfo(),a=r.getOrient();this._renderDayRect(t,o,i),this._renderLines(t,o,a,i),this._renderYearText(t,o,a,i),this._renderMonthText(t,a,i),this._renderWeekText(t,o,a,i)},e.prototype._renderDayRect=function(t,e,n){for(var i=t.coordinateSystem,r=t.getModel("itemStyle").getItemStyle(),o=i.getCellWidth(),a=i.getCellHeight(),s=e.start.time;s<=e.end.time;s=i.getNextNDay(s,1).time){var l=i.dataToRect([s],!1).tl,u=new hs({shape:{x:l[0],y:l[1],width:o,height:a},cursor:"default",style:r});n.add(u)}},e.prototype._renderLines=function(t,e,n,i){var r=this,o=t.coordinateSystem,a=t.getModel(["splitLine","lineStyle"]).getLineStyle(),s=t.get(["splitLine","show"]),l=a.lineWidth;this._tlpoints=[],this._blpoints=[],this._firstDayOfMonth=[],this._firstDayPoints=[];for(var u=e.start,h=0;u.time<=e.end.time;h++){p(u.formatedDate),0===h&&(u=o.getDateInfo(e.start.y+"-"+e.start.m));var c=u.date;c.setMonth(c.getMonth()+1),u=o.getDateInfo(c)}function p(e){r._firstDayOfMonth.push(o.getDateInfo(e)),r._firstDayPoints.push(o.dataToRect([e],!1).tl);var l=r._getLinePointsOfOneWeek(t,e,n);r._tlpoints.push(l[0]),r._blpoints.push(l[l.length-1]),s&&r._drawSplitline(l,a,i)}p(o.getNextNDay(e.end.time,1).formatedDate),s&&this._drawSplitline(r._getEdgesPoints(r._tlpoints,l,n),a,i),s&&this._drawSplitline(r._getEdgesPoints(r._blpoints,l,n),a,i)},e.prototype._getEdgesPoints=function(t,e,n){var i=[t[0].slice(),t[t.length-1].slice()],r="horizontal"===n?0:1;return i[0][r]=i[0][r]-e/2,i[1][r]=i[1][r]+e/2,i},e.prototype._drawSplitline=function(t,e,n){var i=new pu({z2:20,shape:{points:t},style:e});n.add(i)},e.prototype._getLinePointsOfOneWeek=function(t,e,n){for(var i=t.coordinateSystem,r=i.getDateInfo(e),o=[],a=0;a<7;a++){var s=i.getNextNDay(r.time,a),l=i.dataToRect([s.time],!1);o[2*s.day]=l.tl,o[2*s.day+1]=l["horizontal"===n?"bl":"tr"]}return o},e.prototype._formatterLabel=function(t,e){return"string"==typeof t&&t?(n=t,P(e,(function(t,e){n=n.replace("{"+e+"}",i?Rc(t):t)})),n):"function"==typeof t?t(e):e.nameMap;var n,i},e.prototype._yearTextPositionControl=function(t,e,n,i,r){var o=e[0],a=e[1],s=["center","bottom"];"bottom"===i?(a+=r,s=["center","top"]):"left"===i?o-=r:"right"===i?(o+=r,s=["center","top"]):a-=r;var l=0;return"left"!==i&&"right"!==i||(l=Math.PI/2),{rotation:l,x:o,y:a,style:{align:s[0],verticalAlign:s[1]}}},e.prototype._renderYearText=function(t,e,n,i){var r=t.getModel("yearLabel");if(r.get("show")){var o=r.get("margin"),a=r.get("position");a||(a="horizontal"!==n?"top":"left");var s=[this._tlpoints[this._tlpoints.length-1],this._blpoints[0]],l=(s[0][0]+s[1][0])/2,u=(s[0][1]+s[1][1])/2,h="horizontal"===n?0:1,c={top:[l,s[h][1]],bottom:[l,s[1-h][1]],left:[s[1-h][0],u],right:[s[h][0],u]},p=e.start.y;+e.end.y>+e.start.y&&(p=p+"-"+e.end.y);var d=r.get("formatter"),f={start:e.start.y,end:e.end.y,nameMap:p},g=this._formatterLabel(d,f),y=new ds({z2:30,style:bh(r,{text:g})});y.attr(this._yearTextPositionControl(y,c[a],n,a,o)),i.add(y)}},e.prototype._monthTextPositionControl=function(t,e,n,i,r){var o="left",a="top",s=t[0],l=t[1];return"horizontal"===n?(l+=r,e&&(o="center"),"start"===i&&(a="bottom")):(s+=r,e&&(a="middle"),"start"===i&&(o="right")),{x:s,y:l,align:o,verticalAlign:a}},e.prototype._renderMonthText=function(t,e,n){var i=t.getModel("monthLabel");if(i.get("show")){var r=i.get("nameMap"),o=i.get("margin"),a=i.get("position"),s=i.get("align"),l=[this._tlpoints,this._blpoints];H(r)&&(r=JR[r.toUpperCase()]||[]);var u="start"===a?0:1,h="horizontal"===e?0:1;o="start"===a?-o:o;for(var c="center"===s,p=0;p=i.start.time&&n.timea.end.time&&t.reverse(),t},t.prototype._getRangeInfo=function(t){var e,n=[this.getDateInfo(t[0]),this.getDateInfo(t[1])];n[0].time>n[1].time&&(e=!0,n.reverse());var i=Math.floor(n[1].time/eN)-Math.floor(n[0].time/eN)+1,r=new Date(n[0].time),o=r.getDate(),a=n[1].date.getDate();r.setDate(o+i-1);var s=r.getDate();if(s!==a)for(var l=r.getTime()-n[1].time>0?1:-1;(s=r.getDate())!==a&&(r.getTime()-n[1].time)*l>0;)i-=l,r.setDate(s-l);var u=Math.floor((i+n[0].day+6)/7),h=e?1-u:u-1;return e&&n.reverse(),{range:[n[0].formatedDate,n[1].formatedDate],start:n[0],end:n[1],allDay:i,weeks:u,nthWeek:h,fweek:n[0].day,lweek:n[1].day}},t.prototype._getDateByWeeksAndDay=function(t,e,n){var i=this._getRangeInfo(n);if(t>i.weeks||0===t&&ei.lweek)return null;var r=7*(t-1)-i.fweek+e,o=new Date(i.start.time);return o.setDate(+i.start.d+r),this.getDateInfo(o)},t.create=function(e,n){var i=[];return e.eachComponent("calendar",(function(r){var o=new t(r,e,n);i.push(o),r.coordinateSystem=o})),e.eachSeries((function(t){"calendar"===t.get("coordinateSystem")&&(t.coordinateSystem=i[t.get("calendarIndex")||0])})),i},t.dimensions=["time","value"],t}();function iN(t){var e=t.calendarModel,n=t.seriesModel;return e?e.coordinateSystem:n?n.coordinateSystem:null}var rN=Or(),oN={path:null,compoundPath:null,group:Bi,image:is,text:ds},aN=function(t){var e=t.graphic;G(e)?e[0]&&e[0].elements?t.graphic=[t.graphic[0]]:t.graphic=[{elements:e}]:e&&!e.elements&&(t.graphic=[{elements:[e]}])},sN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.preventAutoZ=!0,n}return n(e,t),e.prototype.mergeOption=function(e,n){var i=this.option.elements;this.option.elements=null,t.prototype.mergeOption.call(this,e,n),this.option.elements=i},e.prototype.optionUpdated=function(t,e){var n=this.option,i=(e?n:t).elements,r=n.elements=e?[]:n.elements,o=[];this._flatten(i,o,null);var a=Tr(r,o,"normalMerge"),s=this._elOptionsToUpdate=[];P(a,(function(t,e){var n=t.newOption;n&&(s.push(n),function(t,e){var n=t.existing;if(e.id=t.keyInfo.id,!e.type&&n&&(e.type=n.type),null==e.parentId){var i=e.parentOption;i?e.parentId=i.id:n&&(e.parentId=n.parentId)}e.parentOption=null}(t,n),function(t,e,n){var i=I({},n),r=t[e],o=n.$action||"merge";if("merge"===o){if(r)S(r,i,!0),Kc(r,i,{ignoreSize:!0}),Jc(n,r);else t[e]=i}else"replace"===o?t[e]=i:"remove"===o&&r&&(t[e]=null)}(r,e,n),function(t,e){if(!t)return;if(t.hv=e.hv=[cN(e,["left","right"]),cN(e,["top","bottom"])],"group"===t.type){var n=t,i=e;null==n.width&&(n.width=i.width=0),null==n.height&&(n.height=i.height=0)}}(r[e],n))}),this);for(var l=r.length-1;l>=0;l--)null==r[l]?r.splice(l,1):delete r[l].$action},e.prototype._flatten=function(t,e,n){P(t,(function(t){if(t){n&&(t.parentOption=n),e.push(t);var i=t.children;"group"===t.type&&i&&this._flatten(i,e,t),delete t.children}}),this)},e.prototype.useElOptionsToUpdate=function(){var t=this._elOptionsToUpdate;return this._elOptionsToUpdate=null,t},e.type="graphic",e.defaultOption={elements:[]},e}(tp),lN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(){this._elMap=ht()},e.prototype.render=function(t,e,n){t!==this._lastGraphicModel&&this._clear(),this._lastGraphicModel=t,this._updateElements(t),this._relocate(t,n)},e.prototype._updateElements=function(t){var e=t.useElOptionsToUpdate();if(e){var n=this._elMap,i=this.group;P(e,(function(e){var r=Ar(e.id,null),o=null!=r?n.get(r):null,a=Ar(e.parentId,null),s=null!=a?n.get(a):i,l=e.type,u=e.style;"text"===l&&u&&e.hv&&e.hv[1]&&(u.textVerticalAlign=u.textBaseline=u.verticalAlign=u.align=null);var h=e.textContent,c=e.textConfig;if(u&&TP(u,l,!!c,!!h)){var p=CP(u,l,!0);!c&&p.textConfig&&(c=e.textConfig=p.textConfig),!h&&p.textContent&&(h=p.textContent)}var d=function(t){return t=I({},t),P(["id","parentId","$action","hv","bounding","textContent"].concat(Wc),(function(e){delete t[e]})),t}(e);var f=e.$action||"merge";"merge"===f?o?o.attr(d):uN(r,s,d,n):"replace"===f?(hN(o,n),uN(r,s,d,n)):"remove"===f&&hN(o,n);var g=n.get(r);if(g&&h)if("merge"===f){var y=g.getTextContent();y?y.attr(h):g.setTextContent(new ds(h))}else"replace"===f&&g.setTextContent(new ds(h));if(g){var v=rN(g);v.__ecGraphicWidthOption=e.width,v.__ecGraphicHeightOption=e.height,function(t,e,n){var i=ws(t).eventData;t.silent||t.ignore||i||(i=ws(t).eventData={componentType:"graphic",componentIndex:e.componentIndex,name:t.name});i&&(i.info=n.info)}(g,t,e),fh({el:g,componentModel:t,itemName:g.name,itemTooltipOption:e.tooltip})}}))}},e.prototype._relocate=function(t,e){for(var n=t.option.elements,i=this.group,r=this._elMap,o=e.getWidth(),a=e.getHeight(),s=0;s=0;s--){var c,p,d;if(d=null!=(p=Ar((c=n[s]).id,null))?r.get(p):null){var f=d.parent;h=rN(f);jc(d,c,f===i?{width:o,height:a}:{width:h.__ecGraphicWidth,height:h.__ecGraphicHeight},null,{hv:c.hv,boundingMode:c.bounding})}}},e.prototype._clear=function(){var t=this._elMap;t.each((function(e){hN(e,t)})),this._elMap=ht()},e.prototype.dispose=function(){this._clear()},e.type="graphic",e}(Ff);function uN(t,e,n,i){var r=n.type;var o=dt(oN,r)?oN[r]:Ku(r);var a=new o(n);e.add(a),i.set(t,a),rN(a).__ecGraphicId=t}function hN(t,e){var n=t&&t.parent;n&&("group"===t.type&&t.traverse((function(t){hN(t,e)})),e.removeKey(rN(t).__ecGraphicId),n.remove(t))}function cN(t,e){var n;return P(e,(function(e){null!=t[e]&&"auto"!==t[e]&&(n=!0)})),n}var pN=["x","y","radius","angle","single"],dN=["cartesian2d","polar","singleAxis"];function fN(t){return t+"Axis"}function gN(t,e){var n,i=ht(),r=[],o=ht();t.eachComponent({mainType:"dataZoom",query:e},(function(t){o.get(t.uid)||s(t)}));do{n=!1,t.eachComponent("dataZoom",a)}while(n);function a(t){!o.get(t.uid)&&function(t){var e=!1;return t.eachTargetAxis((function(t,n){var r=i.get(t);r&&r[n]&&(e=!0)})),e}(t)&&(s(t),n=!0)}function s(t){o.set(t.uid,!0),r.push(t),t.eachTargetAxis((function(t,e){(i.get(t)||i.set(t,[]))[e]=!0}))}return r}function yN(t){var e=t.ecModel,n={infoList:[],infoMap:ht()};return t.eachTargetAxis((function(t,i){var r=e.getComponent(fN(t),i);if(r){var o=r.getCoordSysModel();if(o){var a=o.uid,s=n.infoMap.get(a);s||(s={model:o,axisModels:[]},n.infoList.push(s),n.infoMap.set(a,s)),s.axisModels.push(r)}}})),n}var vN=function(){function t(){this.indexList=[],this.indexMap=[]}return t.prototype.add=function(t){this.indexMap[t]||(this.indexList.push(t),this.indexMap[t]=!0)},t}(),mN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._autoThrottle=!0,n._noTarget=!0,n._rangePropMode=["percent","percent"],n}return n(e,t),e.prototype.init=function(t,e,n){var i=_N(t);this.settledOption=i,this.mergeDefaultAndTheme(t,n),this._doInit(i)},e.prototype.mergeOption=function(t){var e=_N(t);S(this.option,t,!0),S(this.settledOption,e,!0),this._doInit(e)},e.prototype._doInit=function(t){var e=this.option;this._setDefaultThrottle(t),this._updateRangeUse(t);var n=this.settledOption;P([["start","startValue"],["end","endValue"]],(function(t,i){"value"===this._rangePropMode[i]&&(e[t[0]]=n[t[0]]=null)}),this),this._resetTarget()},e.prototype._resetTarget=function(){var t=this.get("orient",!0),e=this._targetAxisInfoMap=ht();this._fillSpecifiedTargetAxis(e)?this._orient=t||this._makeAutoOrientByTargetAxis():(this._orient=t||"horizontal",this._fillAutoTargetAxisByOrient(e,this._orient)),this._noTarget=!0,e.each((function(t){t.indexList.length&&(this._noTarget=!1)}),this)},e.prototype._fillSpecifiedTargetAxis=function(t){var e=!1;return P(pN,(function(n){var i=this.getReferringComponents(fN(n),Br);if(i.specified){e=!0;var r=new vN;P(i.models,(function(t){r.add(t.componentIndex)})),t.set(n,r)}}),this),e},e.prototype._fillAutoTargetAxisByOrient=function(t,e){var n=this.ecModel,i=!0;if(i){var r="vertical"===e?"y":"x";o(n.findComponents({mainType:r+"Axis"}),r)}i&&o(n.findComponents({mainType:"singleAxis",filter:function(t){return t.get("orient",!0)===e}}),"single");function o(e,n){var r=e[0];if(r){var o=new vN;if(o.add(r.componentIndex),t.set(n,o),i=!1,"x"===n||"y"===n){var a=r.getReferringComponents("grid",Er).models[0];a&&P(e,(function(t){r.componentIndex!==t.componentIndex&&a===t.getReferringComponents("grid",Er).models[0]&&o.add(t.componentIndex)}))}}}i&&P(pN,(function(e){if(i){var r=n.findComponents({mainType:fN(e),filter:function(t){return"category"===t.get("type",!0)}});if(r[0]){var o=new vN;o.add(r[0].componentIndex),t.set(e,o),i=!1}}}),this)},e.prototype._makeAutoOrientByTargetAxis=function(){var t;return this.eachTargetAxis((function(e){!t&&(t=e)}),this),"y"===t?"vertical":"horizontal"},e.prototype._setDefaultThrottle=function(t){if(t.hasOwnProperty("throttle")&&(this._autoThrottle=!1),this._autoThrottle){var e=this.ecModel.option;this.option.throttle=e.animation&&e.animationDurationUpdate>0?100:20}},e.prototype._updateRangeUse=function(t){var e=this._rangePropMode,n=this.get("rangeMode");P([["start","startValue"],["end","endValue"]],(function(i,r){var o=null!=t[i[0]],a=null!=t[i[1]];o&&!a?e[r]="percent":!o&&a?e[r]="value":n?e[r]=n[r]:o&&(e[r]="percent")}))},e.prototype.noTarget=function(){return this._noTarget},e.prototype.getFirstTargetAxisModel=function(){var t;return this.eachTargetAxis((function(e,n){null==t&&(t=this.ecModel.getComponent(fN(e),n))}),this),t},e.prototype.eachTargetAxis=function(t,e){this._targetAxisInfoMap.each((function(n,i){P(n.indexList,(function(n){t.call(e,i,n)}))}))},e.prototype.getAxisProxy=function(t,e){var n=this.getAxisModel(t,e);if(n)return n.__dzAxisProxy},e.prototype.getAxisModel=function(t,e){var n=this._targetAxisInfoMap.get(t);if(n&&n.indexMap[e])return this.ecModel.getComponent(fN(t),e)},e.prototype.setRawRange=function(t){var e=this.option,n=this.settledOption;P([["start","startValue"],["end","endValue"]],(function(i){null==t[i[0]]&&null==t[i[1]]||(e[i[0]]=n[i[0]]=t[i[0]],e[i[1]]=n[i[1]]=t[i[1]])}),this),this._updateRangeUse(t)},e.prototype.setCalculatedRange=function(t){var e=this.option;P(["start","startValue","end","endValue"],(function(n){e[n]=t[n]}))},e.prototype.getPercentRange=function(){var t=this.findRepresentativeAxisProxy();if(t)return t.getDataPercentWindow()},e.prototype.getValueRange=function(t,e){if(null!=t||null!=e)return this.getAxisProxy(t,e).getDataValueWindow();var n=this.findRepresentativeAxisProxy();return n?n.getDataValueWindow():void 0},e.prototype.findRepresentativeAxisProxy=function(t){if(t)return t.__dzAxisProxy;for(var e,n=this._targetAxisInfoMap.keys(),i=0;i=0}(e)){var n=fN(this._dimName),i=e.getReferringComponents(n,Er).models[0];i&&this._axisIndex===i.componentIndex&&t.push(e)}}),this),t},t.prototype.getAxisModel=function(){return this.ecModel.getComponent(this._dimName+"Axis",this._axisIndex)},t.prototype.getMinMaxSpan=function(){return w(this._minMaxSpan)},t.prototype.calculateDataWindow=function(t){var e,n=this._dataExtent,i=this.getAxisModel().axis.scale,r=this._dataZoomModel.getRangePropMode(),o=[0,100],a=[],s=[];SN(["start","end"],(function(l,u){var h=t[l],c=t[l+"Value"];"percent"===r[u]?(null==h&&(h=o[u]),c=i.parse(Zi(h,o,n))):(e=!0,h=Zi(c=null==c?n[u]:i.parse(c),n,o)),s[u]=c,a[u]=h})),MN(s),MN(a);var l=this._minMaxSpan;function u(t,e,n,r,o){var a=o?"Span":"ValueSpan";oA(0,t,n,"all",l["min"+a],l["max"+a]);for(var s=0;s<2;s++)e[s]=Zi(t[s],n,r,!0),o&&(e[s]=i.parse(e[s]))}return e?u(s,a,n,o,!1):u(a,s,o,n,!0),{valueWindow:s,percentWindow:a}},t.prototype.reset=function(t){if(t===this._dataZoomModel){var e=this.getTargetSeriesModels();this._dataExtent=function(t,e,n){var i=[1/0,-1/0];SN(n,(function(t){!function(t,e,n){e&&P(bx(e,n),(function(n){var i=e.getApproximateExtent(n);i[0]t[1]&&(t[1]=i[1])}))}(i,t.getData(),e)}));var r=t.getAxisModel(),o=cx(r.axis.scale,r,i).calculate();return[o.min,o.max]}(this,this._dimName,e),this._updateMinMaxSpan();var n=this.calculateDataWindow(t.settledOption);this._valueWindow=n.valueWindow,this._percentWindow=n.percentWindow,this._setAxisModel()}},t.prototype.filterData=function(t,e){if(t===this._dataZoomModel){var n=this._dimName,i=this.getTargetSeriesModels(),r=t.get("filterMode"),o=this._valueWindow;"none"!==r&&SN(i,(function(t){var e=t.getData(),i=e.mapDimensionsAll(n);if(i.length){if("weakFilter"===r){var a=e.getStore(),s=O(i,(function(t){return e.getDimensionIndex(t)}),e);e.filterSelf((function(t){for(var e,n,r,l=0;lo[1];if(h&&!c&&!p)return!0;h&&(r=!0),c&&(e=!0),p&&(n=!0)}return r&&e&&n}))}else SN(i,(function(n){if("empty"===r)t.setData(e=e.map(n,(function(t){return function(t){return t>=o[0]&&t<=o[1]}(t)?t:NaN})));else{var i={};i[n]=o,e.selectRange(i)}}));SN(i,(function(t){e.setApproximateExtent(o,t)}))}}))}},t.prototype._updateMinMaxSpan=function(){var t=this._minMaxSpan={},e=this._dataZoomModel,n=this._dataExtent;SN(["min","max"],(function(i){var r=e.get(i+"Span"),o=e.get(i+"ValueSpan");null!=o&&(o=this.getAxisModel().axis.scale.parse(o)),null!=o?r=Zi(n[0]+o,n,[0,100],!0):null!=r&&(o=Zi(r,[0,100],n,!0)-n[0]),t[i+"Span"]=r,t[i+"ValueSpan"]=o}),this)},t.prototype._setAxisModel=function(){var t=this.getAxisModel(),e=this._percentWindow,n=this._valueWindow;if(e){var i=Qi(n,[0,500]);i=Math.min(i,20);var r=t.axis.scale.rawExtentInfo;0!==e[0]&&r.setDeterminedMinMax("min",+n[0].toFixed(i)),100!==e[1]&&r.setDeterminedMinMax("max",+n[1].toFixed(i)),r.freeze()}},t}();var TN={getTargetSeries:function(t){function e(e){t.eachComponent("dataZoom",(function(n){n.eachTargetAxis((function(i,r){var o=t.getComponent(fN(i),r);e(i,r,o,n)}))}))}e((function(t,e,n,i){n.__dzAxisProxy=null}));var n=[];e((function(e,i,r,o){r.__dzAxisProxy||(r.__dzAxisProxy=new IN(e,i,o,t),n.push(r.__dzAxisProxy))}));var i=ht();return P(n,(function(t){P(t.getTargetSeriesModels(),(function(t){i.set(t.uid,t)}))})),i},overallReset:function(t,e){t.eachComponent("dataZoom",(function(t){t.eachTargetAxis((function(e,n){t.getAxisProxy(e,n).reset(t)})),t.eachTargetAxis((function(n,i){t.getAxisProxy(n,i).filterData(t,e)}))})),t.eachComponent("dataZoom",(function(t){var e=t.findRepresentativeAxisProxy();if(e){var n=e.getDataPercentWindow(),i=e.getDataValueWindow();t.setCalculatedRange({start:n[0],end:n[1],startValue:i[0],endValue:i[1]})}}))}};var CN=!1;function DN(t){CN||(CN=!0,t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,TN),function(t){t.registerAction("dataZoom",(function(t,e){P(gN(e,t),(function(e){e.setRawRange({start:t.start,end:t.end,startValue:t.startValue,endValue:t.endValue})}))}))}(t),t.registerSubTypeDefaulter("dataZoom",(function(){return"slider"})))}function AN(t){t.registerComponentModel(xN),t.registerComponentView(wN),DN(t)}var kN=function(){},LN={};function PN(t,e){LN[t]=e}function ON(t){return LN[t]}var RN=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.optionUpdated=function(){t.prototype.optionUpdated.apply(this,arguments);var e=this.ecModel;P(this.option.feature,(function(t,n){var i=ON(n);i&&(i.getDefaultOption&&(i.defaultOption=i.getDefaultOption(e)),S(t,i.defaultOption))}))},e.type="toolbox",e.layoutMode={type:"box",ignoreSize:!0},e.defaultOption={show:!0,z:6,zlevel:0,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemSize:15,itemGap:8,showTitle:!0,iconStyle:{borderColor:"#666",color:"none"},emphasis:{iconStyle:{borderColor:"#3E98C5"}},tooltip:{show:!1,position:"bottom"}},e}(tp);function NN(t,e){var n=Lc(e.get("padding")),i=e.getItemStyle(["color","opacity"]);return i.fill=e.get("backgroundColor"),t=new hs({shape:{x:t.x-n[3],y:t.y-n[0],width:t.width+n[1]+n[3],height:t.height+n[0]+n[2],r:e.get("borderRadius")},style:i,silent:!0,z2:-1})}var zN=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.render=function(t,e,n,i){var r=this.group;if(r.removeAll(),t.get("show")){var o=+t.get("itemSize"),a=t.get("feature")||{},s=this._features||(this._features={}),l=[];P(a,(function(t,e){l.push(e)})),new Em(this._featureNames||[],l).add(u).update(u).remove(V(u,null)).execute(),this._featureNames=l,function(t,e,n){var i=e.getBoxLayoutParams(),r=e.get("padding"),o={width:n.getWidth(),height:n.getHeight()},a=Zc(i,o,r);Yc(e.get("orient"),t,e.get("itemGap"),a.width,a.height),jc(t,i,o,r)}(r,t,n),r.add(NN(r.getBoundingRect(),t)),r.eachChild((function(t){var e=t.__title,i=t.ensureState("emphasis"),a=i.textConfig||(i.textConfig={}),s=t.getTextContent(),l=s&&s.states.emphasis;if(l&&!F(l)&&e){var u=l.style||(l.style={}),h=wi(e,ds.makeFont(u)),c=t.x+r.x,p=!1;t.y+r.y+o+h.height>n.getHeight()&&(a.position="top",p=!0);var d=p?-5-h.height:o+8;c+h.width/2>n.getWidth()?(a.position=["100%",d],u.align="right"):c-h.width/2<0&&(a.position=[0,d],u.align="left")}}))}function u(u,h){var c,p=l[u],d=l[h],f=a[p],g=new Hh(f,t,t.ecModel);if(i&&null!=i.newTitle&&i.featureName===p&&(f.title=i.newTitle),p&&!d){if(function(t){return 0===t.indexOf("my")}(p))c={onclick:g.option.onclick,featureName:p};else{var y=ON(p);if(!y)return;c=new y}s[p]=c}else if(!(c=s[d]))return;c.uid=Uh("toolbox-feature"),c.model=g,c.ecModel=e,c.api=n;var v=c instanceof kN;p||!d?!g.get("show")||v&&c.unusable?v&&c.remove&&c.remove(e,n):(!function(i,a,s){var l,u,h=i.getModel("iconStyle"),c=i.getModel(["emphasis","iconStyle"]),p=a instanceof kN&&a.getIcons?a.getIcons():i.get("icon"),d=i.get("title")||{};"string"==typeof p?(l={})[s]=p:l=p;"string"==typeof d?(u={})[s]=d:u=d;var f=i.iconPaths={};P(l,(function(s,l){var p=hh(s,{},{x:-o/2,y:-o/2,width:o,height:o});p.setStyle(h.getItemStyle()),p.ensureState("emphasis").style=c.getItemStyle();var d=new ds({style:{text:u[l],align:c.get("textAlign"),borderRadius:c.get("textBorderRadius"),padding:c.get("textPadding"),fill:null},ignore:!0});p.setTextContent(d),fh({el:p,componentModel:t,itemName:l,formatterParamsExtra:{title:u[l]}}),p.__title=u[l],p.on("mouseover",(function(){var e=c.getItemStyle(),n="vertical"===t.get("orient")?null==t.get("right")?"right":"left":null==t.get("bottom")?"bottom":"top";d.setStyle({fill:c.get("textFill")||e.fill||e.stroke||"#000",backgroundColor:c.get("textBackgroundColor")}),p.setTextConfig({position:c.get("textPosition")||n}),d.ignore=!t.get("showTitle"),Js(this)})).on("mouseout",(function(){"emphasis"!==i.get(["iconStatus",l])&&Qs(this),d.hide()})),("emphasis"===i.get(["iconStatus",l])?Js:Qs)(p),r.add(p),p.on("click",B(a.onclick,a,e,n,l)),f[l]=p}))}(g,c,p),g.setIconStatus=function(t,e){var n=this.option,i=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[t]=e,i[t]&&("emphasis"===e?Js:Qs)(i[t])},c instanceof kN&&c.render&&c.render(g,e,n,i)):v&&c.dispose&&c.dispose(e,n)}},e.prototype.updateView=function(t,e,n,i){P(this._features,(function(t){t instanceof kN&&t.updateView&&t.updateView(t.model,e,n,i)}))},e.prototype.remove=function(t,e){P(this._features,(function(n){n instanceof kN&&n.remove&&n.remove(t,e)})),this.group.removeAll()},e.prototype.dispose=function(t,e){P(this._features,(function(n){n instanceof kN&&n.dispose&&n.dispose(t,e)}))},e.type="toolbox",e}(Ff);var EN=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.onclick=function(t,e){var n=this.model,i=n.get("name")||t.get("title.0.text")||"echarts",r="svg"===e.getZr().painter.getType(),o=r?"svg":n.get("type",!0)||"png",s=e.getConnectedDataURL({type:o,backgroundColor:n.get("backgroundColor",!0)||t.get("backgroundColor")||"#fff",connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")});if("function"!=typeof MouseEvent||!a.browser.newEdge&&(a.browser.ie||a.browser.edge))if(window.navigator.msSaveOrOpenBlob||r){var l=s.split(","),u=l[0].indexOf("base64")>-1,h=r?decodeURIComponent(l[1]):l[1];u&&(h=window.atob(h));var c=i+"."+o;if(window.navigator.msSaveOrOpenBlob){for(var p=h.length,d=new Uint8Array(p);p--;)d[p]=h.charCodeAt(p);var f=new Blob([d]);window.navigator.msSaveOrOpenBlob(f,c)}else{var g=document.createElement("iframe");document.body.appendChild(g);var y=g.contentWindow,v=y.document;v.open("image/svg+xml","replace"),v.write(h),v.close(),y.focus(),v.execCommand("SaveAs",!0,c),document.body.removeChild(g)}}else{var m=n.get("lang"),_='',x=window.open();x.document.write(_),x.document.title=i}else{var b=document.createElement("a");b.download=i+"."+o,b.target="_blank",b.href=s;var w=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});b.dispatchEvent(w)}},e.getDefaultOption=function(t){return{show:!0,icon:"M4.7,22.9L29.3,45.5L54.7,23.4M4.6,43.6L4.6,58L53.8,58L53.8,43.6M29.2,45.1L29.2,0",title:t.getLocaleModel().get(["toolbox","saveAsImage","title"]),type:"png",connectedBackgroundColor:"#fff",name:"",excludeComponents:["toolbox"],lang:t.getLocaleModel().get(["toolbox","saveAsImage","lang"])}},e}(kN);EN.prototype.unusable=!a.canvasSupported;var BN="__ec_magicType_stack__",VN=[["line","bar"],["stack"]],GN=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getIcons=function(){var t=this.model,e=t.get("icon"),n={};return P(t.get("type"),(function(t){e[t]&&(n[t]=e[t])})),n},e.getDefaultOption=function(t){return{show:!0,type:[],icon:{line:"M4.1,28.9h7.1l9.3-22l7.4,38l9.7-19.7l3,12.8h14.9M4.1,58h51.4",bar:"M6.7,22.9h10V48h-10V22.9zM24.9,13h10v35h-10V13zM43.2,2h10v46h-10V2zM3.1,58h53.7",stack:"M8.2,38.4l-8.4,4.1l30.6,15.3L60,42.5l-8.1-4.1l-21.5,11L8.2,38.4z M51.9,30l-8.1,4.2l-13.4,6.9l-13.9-6.9L8.2,30l-8.4,4.2l8.4,4.2l22.2,11l21.5-11l8.1-4.2L51.9,30z M51.9,21.7l-8.1,4.2L35.7,30l-5.3,2.8L24.9,30l-8.4-4.1l-8.3-4.2l-8.4,4.2L8.2,30l8.3,4.2l13.9,6.9l13.4-6.9l8.1-4.2l8.1-4.1L51.9,21.7zM30.4,2.2L-0.2,17.5l8.4,4.1l8.3,4.2l8.4,4.2l5.5,2.7l5.3-2.7l8.1-4.2l8.1-4.2l8.1-4.1L30.4,2.2z"},title:t.getLocaleModel().get(["toolbox","magicType","title"]),option:{},seriesIndex:{}}},e.prototype.onclick=function(t,e,n){var i=this.model,r=i.get(["seriesIndex",n]);if(FN[n]){var o,a={series:[]};P(VN,(function(t){D(t,n)>=0&&P(t,(function(t){i.setIconStatus(t,"normal")}))})),i.setIconStatus(n,"emphasis"),t.eachComponent({mainType:"series",query:null==r?null:{seriesIndex:r}},(function(t){var e=t.subType,r=t.id,o=FN[n](e,r,t,i);o&&(T(o,t.option),a.series.push(o));var s=t.coordinateSystem;if(s&&"cartesian2d"===s.type&&("line"===n||"bar"===n)){var l=s.getAxesByScale("ordinal")[0];if(l){var u=l.dim+"Axis",h=t.getReferringComponents(u,Er).models[0].componentIndex;a[u]=a[u]||[];for(var c=0;c<=h;c++)a[u][h]=a[u][h]||{};a[u][h].boundaryGap="bar"===n}}}));var s=n;"stack"===n&&(o=S({stack:i.option.title.tiled,tiled:i.option.title.stack},i.option.title),"emphasis"!==i.get(["iconStatus",n])&&(s="tiled")),e.dispatchAction({type:"changeMagicType",currentType:s,newOption:a,newTitle:o,featureName:"magicType"})}},e}(kN),FN={line:function(t,e,n,i){if("bar"===t)return S({id:e,type:"line",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get(["option","line"])||{},!0)},bar:function(t,e,n,i){if("line"===t)return S({id:e,type:"bar",data:n.get("data"),stack:n.get("stack"),markPoint:n.get("markPoint"),markLine:n.get("markLine")},i.get(["option","bar"])||{},!0)},stack:function(t,e,n,i){var r=n.get("stack")===BN;if("line"===t||"bar"===t)return i.setIconStatus("stack",r?"normal":"emphasis"),S({id:e,stack:r?"":BN},i.get(["option","stack"])||{},!0)}};Sm({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},(function(t,e){e.mergeOption(t.newOption)}));var HN=new Array(60).join("-"),WN="\t";function UN(t){return t.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}var XN=new RegExp("[\t]+","g");function YN(t,e){var n=t.split(new RegExp("\n*"+HN+"\n*","g")),i={series:[]};return P(n,(function(t,n){if(function(t){if(t.slice(0,t.indexOf("\n")).indexOf(WN)>=0)return!0}(t)){var r=function(t){for(var e=t.split(/\n+/g),n=[],i=O(UN(e.shift()).split(XN),(function(t){return{name:t,data:[]}})),r=0;r=0)&&t(r,i._targetInfoList)}))}return t.prototype.setOutputRanges=function(t,e){return this.matchOutputRanges(t,e,(function(t,e,n){if((t.coordRanges||(t.coordRanges=[])).push(e),!t.coordRange){t.coordRange=e;var i=az[t.brushType](0,n,e);t.__rangeOffset={offset:lz[t.brushType](i.values,t.range,[1,1]),xyMinMax:i.xyMinMax}}})),t},t.prototype.matchOutputRanges=function(t,e,n){P(t,(function(t){var i=this.findTargetInfo(t,e);i&&!0!==i&&P(i.coordSyses,(function(i){var r=az[t.brushType](1,i,t.range,!0);n(t,r.values,i,e)}))}),this)},t.prototype.setInputRanges=function(t,e){P(t,(function(t){var n,i,r,o,a,s=this.findTargetInfo(t,e);if(t.range=t.range||[],s&&!0!==s){t.panelId=s.panelId;var l=az[t.brushType](0,s.coordSys,t.coordRange),u=t.__rangeOffset;t.range=u?lz[t.brushType](l.values,u.offset,(n=l.xyMinMax,i=u.xyMinMax,r=hz(n),o=hz(i),a=[r[0]/o[0],r[1]/o[1]],isNaN(a[0])&&(a[0]=1),isNaN(a[1])&&(a[1]=1),a)):l.values}}),this)},t.prototype.makePanelOpts=function(t,e){return O(this._targetInfoList,(function(n){var i=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:e?e(n):null,clipPath:sk(i),isTargetByCursor:uk(i,t,n.coordSysModel),getLinearBrushOtherExtent:lk(i)}}))},t.prototype.controlSeries=function(t,e,n){var i=this.findTargetInfo(t,n);return!0===i||i&&D(i.coordSyses,e.coordinateSystem)>=0},t.prototype.findTargetInfo=function(t,e){for(var n=this._targetInfoList,i=nz(e,t),r=0;rt[1]&&t.reverse(),t}function nz(t,e){return Nr(t,e,{includeMainTypes:QN})}var iz={grid:function(t,e){var n=t.xAxisModels,i=t.yAxisModels,r=t.gridModels,o=ht(),a={},s={};(n||i||r)&&(P(n,(function(t){var e=t.axis.grid.model;o.set(e.id,e),a[e.id]=!0})),P(i,(function(t){var e=t.axis.grid.model;o.set(e.id,e),s[e.id]=!0})),P(r,(function(t){o.set(t.id,t),a[t.id]=!0,s[t.id]=!0})),o.each((function(t){var r=t.coordinateSystem,o=[];P(r.getCartesians(),(function(t,e){(D(n,t.getAxis("x").model)>=0||D(i,t.getAxis("y").model)>=0)&&o.push(t)})),e.push({panelId:"grid--"+t.id,gridModel:t,coordSysModel:t,coordSys:o[0],coordSyses:o,getPanelRect:oz.grid,xAxisDeclared:a[t.id],yAxisDeclared:s[t.id]})})))},geo:function(t,e){P(t.geoModels,(function(t){var n=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:n,coordSyses:[n],getPanelRect:oz.geo})}))}},rz=[function(t,e){var n=t.xAxisModel,i=t.yAxisModel,r=t.gridModel;return!r&&n&&(r=n.axis.grid.model),!r&&i&&(r=i.axis.grid.model),r&&r===e.gridModel},function(t,e){var n=t.geoModel;return n&&n===e.geoModel}],oz={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var t=this.coordSys,e=t.getBoundingRect().clone();return e.applyTransform(ih(t)),e}},az={lineX:V(sz,0),lineY:V(sz,1),rect:function(t,e,n,i){var r=t?e.pointToData([n[0][0],n[1][0]],i):e.dataToPoint([n[0][0],n[1][0]],i),o=t?e.pointToData([n[0][1],n[1][1]],i):e.dataToPoint([n[0][1],n[1][1]],i),a=[ez([r[0],o[0]]),ez([r[1],o[1]])];return{values:a,xyMinMax:a}},polygon:function(t,e,n,i){var r=[[1/0,-1/0],[1/0,-1/0]];return{values:O(n,(function(n){var o=t?e.pointToData(n,i):e.dataToPoint(n,i);return r[0][0]=Math.min(r[0][0],o[0]),r[1][0]=Math.min(r[1][0],o[1]),r[0][1]=Math.max(r[0][1],o[0]),r[1][1]=Math.max(r[1][1],o[1]),o})),xyMinMax:r}}};function sz(t,e,n,i){var r=n.getAxis(["x","y"][t]),o=ez(O([0,1],(function(t){return e?r.coordToData(r.toLocalCoord(i[t]),!0):r.toGlobalCoord(r.dataToCoord(i[t]))}))),a=[];return a[t]=o,a[1-t]=[NaN,NaN],{values:o,xyMinMax:a}}var lz={lineX:V(uz,0),lineY:V(uz,1),rect:function(t,e,n){return[[t[0][0]-n[0]*e[0][0],t[0][1]-n[0]*e[0][1]],[t[1][0]-n[1]*e[1][0],t[1][1]-n[1]*e[1][1]]]},polygon:function(t,e,n){return O(t,(function(t,i){return[t[0]-n[0]*e[i][0],t[1]-n[1]*e[i][1]]}))}};function uz(t,e,n,i){return[e[0]-i[t]*n[0],e[1]-i[t]*n[1]]}function hz(t){return t?[t[0][1]-t[0][0],t[1][1]-t[1][0]]:[NaN,NaN]}var cz,pz,dz=P,fz=xr+"toolbox-dataZoom_",gz=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.render=function(t,e,n,i){this._brushController||(this._brushController=new kA(n.getZr()),this._brushController.on("brush",B(this._onBrush,this)).mount()),function(t,e,n,i,r){var o=n._isZoomActive;i&&"takeGlobalCursor"===i.type&&(o="dataZoomSelect"===i.key&&i.dataZoomSelectActive);n._isZoomActive=o,t.setIconStatus("zoom",o?"emphasis":"normal");var a=new tz(vz(t),e,{include:["grid"]}).makePanelOpts(r,(function(t){return t.xAxisDeclared&&!t.yAxisDeclared?"lineX":!t.xAxisDeclared&&t.yAxisDeclared?"lineY":"rect"}));n._brushController.setPanels(a).enableBrush(!(!o||!a.length)&&{brushType:"auto",brushStyle:t.getModel("brushStyle").getItemStyle()})}(t,e,this,i,n),function(t,e){t.setIconStatus("back",function(t){return $N(t).length}(e)>1?"emphasis":"normal")}(t,e)},e.prototype.onclick=function(t,e,n){yz[n].call(this)},e.prototype.remove=function(t,e){this._brushController&&this._brushController.unmount()},e.prototype.dispose=function(t,e){this._brushController&&this._brushController.dispose()},e.prototype._onBrush=function(t){var e=t.areas;if(t.isEnd&&e.length){var n={},i=this.ecModel;this._brushController.updateCovers([]),new tz(vz(this.model),i,{include:["grid"]}).matchOutputRanges(e,i,(function(t,e,n){if("cartesian2d"===n.type){var i=t.brushType;"rect"===i?(r("x",n,e[0]),r("y",n,e[1])):r({lineX:"x",lineY:"y"}[i],n,e)}})),function(t,e){var n=$N(t);qN(e,(function(e,i){for(var r=n.length-1;r>=0&&!n[r][i];r--);if(r<0){var o=t.queryComponents({mainType:"dataZoom",subType:"select",id:i})[0];if(o){var a=o.getPercentRange();n[0][i]={dataZoomId:i,start:a[0],end:a[1]}}}})),n.push(e)}(i,n),this._dispatchZoomAction(n)}function r(t,e,r){var o=e.getAxis(t),a=o.model,s=function(t,e,n){var i;return n.eachComponent({mainType:"dataZoom",subType:"select"},(function(n){n.getAxisModel(t,e.componentIndex)&&(i=n)})),i}(t,a,i),l=s.findRepresentativeAxisProxy(a).getMinMaxSpan();null==l.minValueSpan&&null==l.maxValueSpan||(r=oA(0,r.slice(),o.scale.getExtent(),0,l.minValueSpan,l.maxValueSpan)),s&&(n[s.id]={dataZoomId:s.id,startValue:r[0],endValue:r[1]})}},e.prototype._dispatchZoomAction=function(t){var e=[];dz(t,(function(t,n){e.push(w(t))})),e.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:e})},e.getDefaultOption=function(t){return{show:!0,filterMode:"filter",icon:{zoom:"M0,13.5h26.9 M13.5,26.9V0 M32.1,13.5H58V58H13.5 V32.1",back:"M22,1.4L9.9,13.5l12.3,12.3 M10.3,13.5H54.9v44.6 H10.3v-26"},title:t.getLocaleModel().get(["toolbox","dataZoom","title"]),brushStyle:{borderWidth:0,color:"rgba(210,219,238,0.2)"}}},e}(kN),yz={zoom:function(){var t=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:t})},back:function(){this._dispatchZoomAction(function(t){var e=$N(t),n=e[e.length-1];e.length>1&&e.pop();var i={};return qN(n,(function(t,n){for(var r=e.length-1;r>=0;r--)if(t=e[r][n]){i[n]=t;break}})),i}(this.ecModel))}};function vz(t){var e={xAxisIndex:t.get("xAxisIndex",!0),yAxisIndex:t.get("yAxisIndex",!0),xAxisId:t.get("xAxisId",!0),yAxisId:t.get("yAxisId",!0)};return null==e.xAxisIndex&&null==e.xAxisId&&(e.xAxisIndex="all"),null==e.yAxisIndex&&null==e.yAxisId&&(e.yAxisIndex="all"),e}cz="dataZoom",pz=function(t){var e=t.getComponent("toolbox",0),n=["feature","dataZoom"];if(e&&null!=e.get(n)){var i=e.getModel(n),r=[],o=Nr(t,vz(i));return dz(o.xAxisModels,(function(t){return a(t,"xAxis","xAxisIndex")})),dz(o.yAxisModels,(function(t){return a(t,"yAxis","yAxisIndex")})),r}function a(t,e,n){var o=t.componentIndex,a={type:"select",$fromToolbox:!0,filterMode:i.get("filterMode",!0)||"filter",id:fz+e+o};a[n]=o,r.push(a)}},rt(null==wp.get(cz)&&pz),wp.set(cz,pz);var mz=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="tooltip",e.dependencies=["axisPointer"],e.defaultOption={zlevel:0,z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,displayMode:"single",renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,enterable:!1,backgroundColor:"#fff",shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:"#999",width:1,type:"dashed",textStyle:{}}},textStyle:{color:"#666",fontSize:14}},e}(tp);function _z(t){var e=t.get("confine");return null!=e?!!e:"richText"===t.get("renderMode")}function xz(t){if(a.domSupported)for(var e=document.documentElement.style,n=0,i=t.length;n-1?(u+="top:50%",h+="translateY(-50%) rotate("+(a="left"===s?-225:-45)+"deg)"):(u+="left:50%",h+="translateX(-50%) rotate("+(a="top"===s?225:45)+"deg)");var c=a*Math.PI/180,p=l+r,d=p*Math.abs(Math.cos(c))+p*Math.abs(Math.sin(c)),f=e+" solid "+r+"px;";return'
'}(n,i,r)),H(t))o.innerHTML=t+a;else if(t){o.innerHTML="",G(t)||(t=[t]);for(var s=0;s=0?this._tryShow(n,i):"leave"===e&&this._hide(i))}),this))},e.prototype._keepShow=function(){var t=this._tooltipModel,e=this._ecModel,n=this._api;if(null!=this._lastX&&null!=this._lastY&&"none"!==t.get("triggerOn")){var i=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout((function(){!n.isDisposed()&&i.manuallyShowTip(t,e,n,{x:i._lastX,y:i._lastY,dataByCoordSys:i._lastDataByCoordSys})}))}},e.prototype.manuallyShowTip=function(t,e,n,i){if(i.from!==this.uid&&!a.node){var r=Gz(i,n);this._ticket="";var o=i.dataByCoordSys,s=function(t,e,n){var i=zr(t).queryOptionMap,r=i.keys()[0];if(!r||"series"===r)return;var o,a=Vr(e,r,i.get(r),{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];if(!a)return;if(n.getViewOfComponentModel(a).group.traverse((function(e){var n=ws(e).tooltipConfig;if(n&&n.name===t.name)return o=e,!0})),o)return{componentMainType:r,componentIndex:a.componentIndex,el:o}}(i,e,n);if(s){var l=s.el.getBoundingRect().clone();l.applyTransform(s.el.transform),this._tryShow({offsetX:l.x+l.width/2,offsetY:l.y+l.height/2,target:s.el,position:i.position,positionDefault:"bottom"},r)}else if(i.tooltip&&null!=i.x&&null!=i.y){var u=Ez;u.x=i.x,u.y=i.y,u.update(),ws(u).tooltipConfig={name:null,option:i.tooltip},this._tryShow({offsetX:i.x,offsetY:i.y,target:u},r)}else if(o)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:o,tooltipOption:i.tooltipOption},r);else if(null!=i.seriesIndex){if(this._manuallyAxisShowTip(t,e,n,i))return;var h=YO(i,e),c=h.point[0],p=h.point[1];null!=c&&null!=p&&this._tryShow({offsetX:c,offsetY:p,target:h.el,position:i.position,positionDefault:"bottom"},r)}else null!=i.x&&null!=i.y&&(n.dispatchAction({type:"updateAxisPointer",x:i.x,y:i.y}),this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,target:n.getZr().findHover(i.x,i.y).target},r))}},e.prototype.manuallyHideTip=function(t,e,n,i){var r=this._tooltipContent;!this._alwaysShowContent&&this._tooltipModel&&r.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,i.from!==this.uid&&this._hide(Gz(i,n))},e.prototype._manuallyAxisShowTip=function(t,e,n,i){var r=i.seriesIndex,o=i.dataIndex,a=e.getComponent("axisPointer").coordSysAxesInfo;if(null!=r&&null!=o&&null!=a){var s=e.getSeriesByIndex(r);if(s)if("axis"===Vz([s.getData().getItemModel(o),s,(s.coordinateSystem||{}).model],this._tooltipModel).get("trigger"))return n.dispatchAction({type:"updateAxisPointer",seriesIndex:r,dataIndex:o,position:i.position}),!0}},e.prototype._tryShow=function(t,e){var n=t.target;if(this._tooltipModel){this._lastX=t.offsetX,this._lastY=t.offsetY;var i=t.dataByCoordSys;if(i&&i.length)this._showAxisTooltip(i,t);else if(n){var r,o;this._lastDataByCoordSys=null,Fg(n,(function(t){return null!=ws(t).dataIndex?(r=t,!0):null!=ws(t).tooltipConfig?(o=t,!0):void 0}),!0),r?this._showSeriesItemTooltip(t,r,e):o?this._showComponentItemTooltip(t,o,e):this._hide(e)}else this._lastDataByCoordSys=null,this._hide(e)}},e.prototype._showOrMove=function(t,e){var n=t.get("showDelay");e=B(e,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(e,n):e()},e.prototype._showAxisTooltip=function(t,e){var n=this._ecModel,i=this._tooltipModel,r=[e.offsetX,e.offsetY],o=Vz([e.tooltipOption],i),a=this._renderMode,s=[],l=xf("section",{blocks:[],noHeader:!0}),u=[],h=new Af;Nz(t,(function(t){Nz(t.dataByAxis,(function(t){var e=n.getComponent(t.axisDim+"Axis",t.axisIndex),i=t.value;if(e&&null!=i){var r=DO(i,e.axis,n,t.seriesDataIndices,t.valueLabelOpt),o=xf("section",{header:r,noHeader:!ot(r),sortBlocks:!0,blocks:[]});l.blocks.push(o),P(t.seriesDataIndices,(function(l){var c=n.getSeriesByIndex(l.seriesIndex),p=l.dataIndexInside,d=c.getDataParams(p);if(!(d.dataIndex<0)){d.axisDim=t.axisDim,d.axisIndex=t.axisIndex,d.axisType=t.axisType,d.axisId=t.axisId,d.axisValue=vx(e.axis,{value:i}),d.axisValueLabel=r,d.marker=h.makeTooltipMarker("item",Gc(d.color),a);var f=zd(c.formatTooltip(p,!0,null));f.markupFragment&&o.blocks.push(f.markupFragment),f.markupText&&u.push(f.markupText),s.push(d)}}))}}))})),l.blocks.reverse(),u.reverse();var c=e.position,p=o.get("order"),d=Sf(l,h,a,p,n.get("useUTC"),o.get("textStyle"));d&&u.unshift(d);var f="richText"===a?"\n\n":"
",g=u.join(f);this._showOrMove(o,(function(){this._updateContentNotChangedOnAxis(t,s)?this._updatePosition(o,c,r[0],r[1],this._tooltipContent,s):this._showTooltipContent(o,g,s,Math.random()+"",r[0],r[1],c,null,h)}))},e.prototype._showSeriesItemTooltip=function(t,e,n){var i=this._ecModel,r=ws(e),o=r.seriesIndex,a=i.getSeriesByIndex(o),s=r.dataModel||a,l=r.dataIndex,u=r.dataType,h=s.getData(u),c=this._renderMode,p=t.positionDefault,d=Vz([h.getItemModel(l),s,a&&(a.coordinateSystem||{}).model],this._tooltipModel,p?{position:p}:null),f=d.get("trigger");if(null==f||"item"===f){var g=s.getDataParams(l,u),y=new Af;g.marker=y.makeTooltipMarker("item",Gc(g.color),c);var v=zd(s.formatTooltip(l,!1,u)),m=d.get("order"),_=v.markupFragment?Sf(v.markupFragment,y,c,m,i.get("useUTC"),d.get("textStyle")):v.markupText,x="item_"+s.name+"_"+l;this._showOrMove(d,(function(){this._showTooltipContent(d,_,g,x,t.offsetX,t.offsetY,t.position,t.target,y)})),n({type:"showTip",dataIndexInside:l,dataIndex:h.getRawIndex(l),seriesIndex:o,from:this.uid})}},e.prototype._showComponentItemTooltip=function(t,e,n){var i=ws(e),r=i.tooltipConfig.option||{};if(H(r)){r={content:r,formatter:r}}var o=[r],a=this._ecModel.getComponent(i.componentMainType,i.componentIndex);a&&o.push(a),o.push({formatter:r.content});var s=t.positionDefault,l=Vz(o,this._tooltipModel,s?{position:s}:null),u=l.get("content"),h=Math.random()+"",c=new Af;this._showOrMove(l,(function(){var n=w(l.get("formatterParams")||{});this._showTooltipContent(l,u,n,h,t.offsetX,t.offsetY,t.position,e,c)})),n({type:"showTip",from:this.uid})},e.prototype._showTooltipContent=function(t,e,n,i,r,o,a,s,l){if(this._ticket="",t.get("showContent")&&t.get("show")){var u=this._tooltipContent,h=t.get("formatter");a=a||t.get("position");var c=e,p=this._getNearestPoint([r,o],n,t.get("trigger"),t.get("borderColor")).color;if(h)if(H(h)){var d=t.ecModel.get("useUTC"),f=G(n)?n[0]:n;c=h,f&&f.axisType&&f.axisType.indexOf("time")>=0&&(c=pc(f.axisValue,c,d)),c=Bc(c,n,!0)}else if(F(h)){var g=Rz((function(e,i){e===this._ticket&&(u.setContent(i,l,t,p,a),this._updatePosition(t,a,r,o,u,n,s))}),this);this._ticket=i,c=h(n,i,g)}else c=h;u.setContent(c,l,t,p,a),u.show(t,p),this._updatePosition(t,a,r,o,u,n,s)}},e.prototype._getNearestPoint=function(t,e,n,i){return"axis"===n||G(e)?{color:i||("html"===this._renderMode?"#fff":"none")}:G(e)?void 0:{color:i||e.color||e.borderColor}},e.prototype._updatePosition=function(t,e,n,i,r,o,a){var s=this._api.getWidth(),l=this._api.getHeight();e=e||t.get("position");var u=r.getSize(),h=t.get("align"),c=t.get("verticalAlign"),p=a&&a.getBoundingRect().clone();if(a&&p.applyTransform(a.transform),F(e)&&(e=e([n,i],o,r.el,p,{viewSize:[s,l],contentSize:u.slice()})),G(e))n=zz(e[0],s),i=zz(e[1],l);else if(X(e)){var d=e;d.width=u[0],d.height=u[1];var f=Zc(d,{width:s,height:l});n=f.x,i=f.y,h=null,c=null}else if(H(e)&&a){var g=function(t,e,n,i){var r=n[0],o=n[1],a=Math.ceil(Math.SQRT2*i)+8,s=0,l=0,u=e.width,h=e.height;switch(t){case"inside":s=e.x+u/2-r/2,l=e.y+h/2-o/2;break;case"top":s=e.x+u/2-r/2,l=e.y-o-a;break;case"bottom":s=e.x+u/2-r/2,l=e.y+h+a;break;case"left":s=e.x-r-a,l=e.y+h/2-o/2;break;case"right":s=e.x+u+a,l=e.y+h/2-o/2}return[s,l]}(e,p,u,t.get("borderWidth"));n=g[0],i=g[1]}else{g=function(t,e,n,i,r,o,a){var s=n.getSize(),l=s[0],u=s[1];null!=o&&(t+l+o+2>i?t-=l+o:t+=o);null!=a&&(e+u+a>r?e-=u+a:e+=a);return[t,e]}(n,i,r,s,l,h?null:20,c?null:20);n=g[0],i=g[1]}if(h&&(n-=Fz(h)?u[0]/2:"right"===h?u[0]:0),c&&(i-=Fz(c)?u[1]/2:"bottom"===c?u[1]:0),_z(t)){g=function(t,e,n,i,r){var o=n.getSize(),a=o[0],s=o[1];return t=Math.min(t+a,i)-a,e=Math.min(e+s,r)-s,t=Math.max(t,0),e=Math.max(e,0),[t,e]}(n,i,r,s,l);n=g[0],i=g[1]}r.moveTo(n,i)},e.prototype._updateContentNotChangedOnAxis=function(t,e){var n=this._lastDataByCoordSys,i=this._cbParamsList,r=!!n&&n.length===t.length;return r&&Nz(n,(function(n,o){var a=n.dataByAxis||[],s=(t[o]||{}).dataByAxis||[];(r=r&&a.length===s.length)&&Nz(a,(function(t,n){var o=s[n]||{},a=t.seriesDataIndices||[],l=o.seriesDataIndices||[];(r=r&&t.value===o.value&&t.axisType===o.axisType&&t.axisId===o.axisId&&a.length===l.length)&&Nz(a,(function(t,e){var n=l[e];r=r&&t.seriesIndex===n.seriesIndex&&t.dataIndex===n.dataIndex})),i&&P(t.seriesDataIndices,(function(t){var n=t.seriesIndex,o=e[n],a=i[n];o&&a&&a.data!==o.data&&(r=!1)}))}))})),this._lastDataByCoordSys=t,this._cbParamsList=e,!!r},e.prototype._hide=function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},e.prototype.dispose=function(t,e){a.node||(this._tooltipContent.dispose(),UO("itemTooltip",e))},e.type="tooltip",e}(Ff);function Vz(t,e,n){var i,r=e.ecModel;n?(i=new Hh(n,r,r),i=new Hh(e.option,i,r)):i=e;for(var o=t.length-1;o>=0;o--){var a=t[o];a&&(a instanceof Hh&&(a=a.get("tooltip",!0)),H(a)&&(a={formatter:a}),a&&(i=new Hh(a,i,r)))}return i}function Gz(t,e){return t.dispatchAction||B(e.dispatchAction,e)}function Fz(t){return"center"===t||"middle"===t}var Hz=["rect","polygon","keep","clear"];function Wz(t,e){var n=br(t?t.brush:[]);if(n.length){var i=[];P(n,(function(t){var e=t.hasOwnProperty("toolbox")?t.toolbox:[];e instanceof Array&&(i=i.concat(e))}));var r=t&&t.toolbox;G(r)&&(r=r[0]),r||(r={feature:{}},t.toolbox=[r]);var o=r.feature||(r.feature={}),a=o.brush||(o.brush={}),s=a.type||(a.type=[]);s.push.apply(s,i),function(t){var e={};P(t,(function(t){e[t]=1})),t.length=0,P(e,(function(e,n){t.push(n)}))}(s),e&&!s.length&&s.push.apply(s,Hz)}}var Uz=P;function Xz(t){if(t)for(var e in t)if(t.hasOwnProperty(e))return!0}function Yz(t,e,n){var i={};return Uz(e,(function(e){var r,o=i[e]=((r=function(){}).prototype.__hidden=r.prototype,new r);Uz(t[e],(function(t,i){if(QT.isValidType(i)){var r={type:i,visual:t};n&&n(r,e),o[i]=new QT(r),"opacity"===i&&((r=w(r)).type="colorAlpha",o.__hidden.__alphaForOpacity=new QT(r))}}))})),i}function Zz(t,e,n){var i;P(n,(function(t){e.hasOwnProperty(t)&&Xz(e[t])&&(i=!0)})),i&&P(n,(function(n){e.hasOwnProperty(n)&&Xz(e[n])?t[n]=w(e[n]):delete t[n]}))}var jz={lineX:qz(0),lineY:qz(1),rect:{point:function(t,e,n){return t&&n.boundingRect.contain(t[0],t[1])},rect:function(t,e,n){return t&&n.boundingRect.intersect(t)}},polygon:{point:function(t,e,n){return t&&n.boundingRect.contain(t[0],t[1])&&$y(n.range,t[0],t[1])},rect:function(t,e,n){var i=n.range;if(!t||i.length<=1)return!1;var r=t.x,o=t.y,a=t.width,s=t.height,l=i[0];return!!($y(i,r,o)||$y(i,r+a,o)||$y(i,r,o+s)||$y(i,r+a,o+s)||yi.create(t).contain(l[0],l[1])||ch(r,o,r+a,o,i)||ch(r,o,r,o+s,i)||ch(r+a,o,r+a,o+s,i)||ch(r,o+s,r+a,o+s,i))||void 0}}};function qz(t){var e=["x","y"],n=["width","height"];return{point:function(e,n,i){if(e){var r=i.range;return Kz(e[t],r)}},rect:function(i,r,o){if(i){var a=o.range,s=[i[e[t]],i[e[t]]+i[n[t]]];return s[1]e[0][1]&&(e[0][1]=o[0]),o[1]e[1][1]&&(e[1][1]=o[1])}return e&&oE(e)}};function oE(t){return new yi(t[0][0],t[1][0],t[0][1]-t[0][0],t[1][1]-t[1][0])}var aE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(t,e){this.ecModel=t,this.api=e,this.model,(this._brushController=new kA(e.getZr())).on("brush",B(this._onBrush,this)).mount()},e.prototype.render=function(t,e,n,i){this.model=t,this._updateController(t,e,n,i)},e.prototype.updateTransform=function(t,e,n,i){tE(e),this._updateController(t,e,n,i)},e.prototype.updateVisual=function(t,e,n,i){this.updateTransform(t,e,n,i)},e.prototype.updateView=function(t,e,n,i){this._updateController(t,e,n,i)},e.prototype._updateController=function(t,e,n,i){(!i||i.$from!==t.id)&&this._brushController.setPanels(t.brushTargetManager.makePanelOpts(n)).enableBrush(t.brushOption).updateCovers(t.areas.slice())},e.prototype.dispose=function(){this._brushController.dispose()},e.prototype._onBrush=function(t){var e=this.model.id,n=this.model.brushTargetManager.setOutputRanges(t.areas,this.ecModel);(!t.isEnd||t.removeOnClick)&&this.api.dispatchAction({type:"brush",brushId:e,areas:w(n),$from:e}),t.isEnd&&this.api.dispatchAction({type:"brushEnd",brushId:e,areas:w(n),$from:e})},e.type="brush",e}(Ff),sE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.areas=[],n.brushOption={},n}return n(e,t),e.prototype.optionUpdated=function(t,e){var n=this.option;!e&&Zz(n,t,["inBrush","outOfBrush"]);var i=n.inBrush=n.inBrush||{};n.outOfBrush=n.outOfBrush||{color:"#ddd"},i.hasOwnProperty("liftZ")||(i.liftZ=5)},e.prototype.setAreas=function(t){t&&(this.areas=O(t,(function(t){return lE(this.option,t)}),this))},e.prototype.setBrushOption=function(t){this.brushOption=lE(this.option,t),this.brushType=this.brushOption.brushType},e.type="brush",e.dependencies=["geo","grid","xAxis","yAxis","parallel","series"],e.defaultOption={seriesIndex:"all",brushType:"rect",brushMode:"single",transformable:!0,brushStyle:{borderWidth:1,color:"rgba(210,219,238,0.3)",borderColor:"#D2DBEE"},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4},e}(tp);function lE(t,e){return S({brushType:t.brushType,brushMode:t.brushMode,transformable:t.transformable,brushStyle:new Hh(t.brushStyle).getItemStyle(),removeOnClick:t.removeOnClick,z:t.z},e,!0)}var uE=["rect","polygon","lineX","lineY","keep","clear"],hE=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.render=function(t,e,n){var i,r,o;e.eachComponent({mainType:"brush"},(function(t){i=t.brushType,r=t.brushOption.brushMode||"single",o=o||!!t.areas.length})),this._brushType=i,this._brushMode=r,P(t.get("type",!0),(function(e){t.setIconStatus(e,("keep"===e?"multiple"===r:"clear"===e?o:e===i)?"emphasis":"normal")}))},e.prototype.updateView=function(t,e,n){this.render(t,e,n)},e.prototype.getIcons=function(){var t=this.model,e=t.get("icon",!0),n={};return P(t.get("type",!0),(function(t){e[t]&&(n[t]=e[t])})),n},e.prototype.onclick=function(t,e,n){var i=this._brushType,r=this._brushMode;"clear"===n?(e.dispatchAction({type:"axisAreaSelect",intervals:[]}),e.dispatchAction({type:"brush",command:"clear",areas:[]})):e.dispatchAction({type:"takeGlobalCursor",key:"brush",brushOption:{brushType:"keep"===n?i:i!==n&&n,brushMode:"keep"===n?"multiple"===r?"single":"multiple":r}})},e.getDefaultOption=function(t){return{show:!0,type:uE.slice(),icon:{rect:"M7.3,34.7 M0.4,10V-0.2h9.8 M89.6,10V-0.2h-9.8 M0.4,60v10.2h9.8 M89.6,60v10.2h-9.8 M12.3,22.4V10.5h13.1 M33.6,10.5h7.8 M49.1,10.5h7.8 M77.5,22.4V10.5h-13 M12.3,31.1v8.2 M77.7,31.1v8.2 M12.3,47.6v11.9h13.1 M33.6,59.5h7.6 M49.1,59.5 h7.7 M77.5,47.6v11.9h-13",polygon:"M55.2,34.9c1.7,0,3.1,1.4,3.1,3.1s-1.4,3.1-3.1,3.1 s-3.1-1.4-3.1-3.1S53.5,34.9,55.2,34.9z M50.4,51c1.7,0,3.1,1.4,3.1,3.1c0,1.7-1.4,3.1-3.1,3.1c-1.7,0-3.1-1.4-3.1-3.1 C47.3,52.4,48.7,51,50.4,51z M55.6,37.1l1.5-7.8 M60.1,13.5l1.6-8.7l-7.8,4 M59,19l-1,5.3 M24,16.1l6.4,4.9l6.4-3.3 M48.5,11.6 l-5.9,3.1 M19.1,12.8L9.7,5.1l1.1,7.7 M13.4,29.8l1,7.3l6.6,1.6 M11.6,18.4l1,6.1 M32.8,41.9 M26.6,40.4 M27.3,40.2l6.1,1.6 M49.9,52.1l-5.6-7.6l-4.9-1.2",lineX:"M15.2,30 M19.7,15.6V1.9H29 M34.8,1.9H40.4 M55.3,15.6V1.9H45.9 M19.7,44.4V58.1H29 M34.8,58.1H40.4 M55.3,44.4 V58.1H45.9 M12.5,20.3l-9.4,9.6l9.6,9.8 M3.1,29.9h16.5 M62.5,20.3l9.4,9.6L62.3,39.7 M71.9,29.9H55.4",lineY:"M38.8,7.7 M52.7,12h13.2v9 M65.9,26.6V32 M52.7,46.3h13.2v-9 M24.9,12H11.8v9 M11.8,26.6V32 M24.9,46.3H11.8v-9 M48.2,5.1l-9.3-9l-9.4,9.2 M38.9-3.9V12 M48.2,53.3l-9.3,9l-9.4-9.2 M38.9,62.3V46.4",keep:"M4,10.5V1h10.3 M20.7,1h6.1 M33,1h6.1 M55.4,10.5V1H45.2 M4,17.3v6.6 M55.6,17.3v6.6 M4,30.5V40h10.3 M20.7,40 h6.1 M33,40h6.1 M55.4,30.5V40H45.2 M21,18.9h62.9v48.6H21V18.9z",clear:"M22,14.7l30.9,31 M52.9,14.7L22,45.7 M4.7,16.8V4.2h13.1 M26,4.2h7.8 M41.6,4.2h7.8 M70.3,16.8V4.2H57.2 M4.7,25.9v8.6 M70.3,25.9v8.6 M4.7,43.2v12.6h13.1 M26,55.8h7.8 M41.6,55.8h7.8 M70.3,43.2v12.6H57.2"},title:t.getLocaleModel().get(["toolbox","brush","title"])}},e}(kN);var cE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.layoutMode={type:"box",ignoreSize:!0},n}return n(e,t),e.type="title",e.defaultOption={zlevel:0,z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:0,top:0,backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:"#464646"},subtextStyle:{fontSize:12,color:"#6E7079"}},e}(tp),pE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.render=function(t,e,n){if(this.group.removeAll(),t.get("show")){var i=this.group,r=t.getModel("textStyle"),o=t.getModel("subtextStyle"),a=t.get("textAlign"),s=tt(t.get("textBaseline"),t.get("textVerticalAlign")),l=new ds({style:bh(r,{text:t.get("text"),fill:r.getTextColor()},{disableBox:!0}),z2:10}),u=l.getBoundingRect(),h=t.get("subtext"),c=new ds({style:bh(o,{text:h,fill:o.getTextColor(),y:u.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),p=t.get("link"),d=t.get("sublink"),f=t.get("triggerEvent",!0);l.silent=!p&&!f,c.silent=!d&&!f,p&&l.on("click",(function(){Fc(p,"_"+t.get("target"))})),d&&c.on("click",(function(){Fc(d,"_"+t.get("subtarget"))})),ws(l).eventData=ws(c).eventData=f?{componentType:"title",componentIndex:t.componentIndex}:null,i.add(l),h&&i.add(c);var g=i.getBoundingRect(),y=t.getBoxLayoutParams();y.width=g.width,y.height=g.height;var v=Zc(y,{width:n.getWidth(),height:n.getHeight()},t.get("padding"));a||("middle"===(a=t.get("left")||t.get("right"))&&(a="center"),"right"===a?v.x+=v.width:"center"===a&&(v.x+=v.width/2)),s||("center"===(s=t.get("top")||t.get("bottom"))&&(s="middle"),"bottom"===s?v.y+=v.height:"middle"===s&&(v.y+=v.height/2),s=s||"top"),i.x=v.x,i.y=v.y,i.markRedraw();var m={align:a,verticalAlign:s};l.setStyle(m),c.setStyle(m),g=i.getBoundingRect();var _=v.margin,x=t.getItemStyle(["color","opacity"]);x.fill=t.get("backgroundColor");var b=new hs({shape:{x:g.x-_[3],y:g.y-_[0],width:g.width+_[1]+_[3],height:g.height+_[0]+_[2],r:t.get("borderRadius")},style:x,subPixelOptimize:!0,silent:!0});i.add(b)}},e.type="title",e}(Ff);var dE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.layoutMode="box",n}return n(e,t),e.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n),this._initData()},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),this._initData()},e.prototype.setCurrentIndex=function(t){null==t&&(t=this.option.currentIndex);var e=this._data.count();this.option.loop?t=(t%e+e)%e:(t>=e&&(t=e-1),t<0&&(t=0)),this.option.currentIndex=t},e.prototype.getCurrentIndex=function(){return this.option.currentIndex},e.prototype.isIndexMax=function(){return this.getCurrentIndex()>=this._data.count()-1},e.prototype.setPlayState=function(t){this.option.autoPlay=!!t},e.prototype.getPlayState=function(){return!!this.option.autoPlay},e.prototype._initData=function(){var t,e=this.option,n=e.data||[],i=e.axisType,r=this._names=[];"category"===i?(t=[],P(n,(function(e,n){var i,o=Ar(Mr(e),"");X(e)?(i=w(e)).value=n:i=n,t.push(i),r.push(o)}))):t=n;var o={category:"ordinal",time:"time",value:"number"}[i]||"number";(this._data=new s_([{name:"value",type:o}],this)).initData(t,r)},e.prototype.getData=function(){return this._data},e.prototype.getCategories=function(){if("category"===this.get("axisType"))return this._names.slice()},e.type="timeline",e.defaultOption={zlevel:0,z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:5,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:"#000"},data:[]},e}(tp),fE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="timeline.slider",e.defaultOption=Xh(dE.defaultOption,{backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"circle",symbolSize:12,lineStyle:{show:!0,width:2,color:"#DAE1F5"},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:"#A4B1D7"},itemStyle:{color:"#A4B1D7",borderWidth:1},checkpointStyle:{symbol:"circle",symbolSize:15,color:"#316bf3",borderColor:"#fff",borderWidth:2,shadowBlur:2,shadowOffsetX:1,shadowOffsetY:1,shadowColor:"rgba(0, 0, 0, 0.3)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:"left",playIcon:"path://M31.6,53C17.5,53,6,41.5,6,27.4S17.5,1.8,31.6,1.8C45.7,1.8,57.2,13.3,57.2,27.4S45.7,53,31.6,53z M31.6,3.3 C18.4,3.3,7.5,14.1,7.5,27.4c0,13.3,10.8,24.1,24.1,24.1C44.9,51.5,55.7,40.7,55.7,27.4C55.7,14.1,44.9,3.3,31.6,3.3z M24.9,21.3 c0-2.2,1.6-3.1,3.5-2l10.5,6.1c1.899,1.1,1.899,2.9,0,4l-10.5,6.1c-1.9,1.1-3.5,0.2-3.5-2V21.3z",stopIcon:"path://M30.9,53.2C16.8,53.2,5.3,41.7,5.3,27.6S16.8,2,30.9,2C45,2,56.4,13.5,56.4,27.6S45,53.2,30.9,53.2z M30.9,3.5C17.6,3.5,6.8,14.4,6.8,27.6c0,13.3,10.8,24.1,24.101,24.1C44.2,51.7,55,40.9,55,27.6C54.9,14.4,44.1,3.5,30.9,3.5z M36.9,35.8c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H36c0.5,0,0.9,0.4,0.9,1V35.8z M27.8,35.8 c0,0.601-0.4,1-0.9,1h-1.3c-0.5,0-0.9-0.399-0.9-1V19.5c0-0.6,0.4-1,0.9-1H27c0.5,0,0.9,0.4,0.9,1L27.8,35.8L27.8,35.8z",nextIcon:"M2,18.5A1.52,1.52,0,0,1,.92,18a1.49,1.49,0,0,1,0-2.12L7.81,9.36,1,3.11A1.5,1.5,0,1,1,3,.89l8,7.34a1.48,1.48,0,0,1,.49,1.09,1.51,1.51,0,0,1-.46,1.1L3,18.08A1.5,1.5,0,0,1,2,18.5Z",prevIcon:"M10,.5A1.52,1.52,0,0,1,11.08,1a1.49,1.49,0,0,1,0,2.12L4.19,9.64,11,15.89a1.5,1.5,0,1,1-2,2.22L1,10.77A1.48,1.48,0,0,1,.5,9.68,1.51,1.51,0,0,1,1,8.58L9,.92A1.5,1.5,0,0,1,10,.5Z",prevBtnSize:18,nextBtnSize:18,color:"#A4B1D7",borderColor:"#A4B1D7",borderWidth:1},emphasis:{label:{show:!0,color:"#6f778d"},itemStyle:{color:"#316BF3"},controlStyle:{color:"#316BF3",borderColor:"#316BF3",borderWidth:2}},progress:{lineStyle:{color:"#316BF3"},itemStyle:{color:"#316BF3"},label:{color:"#6f778d"}},data:[]}),e}(dE);k(fE,Nd.prototype);var gE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="timeline",e}(Ff),yE=function(t){function e(e,n,i,r){var o=t.call(this,e,n,i)||this;return o.type=r||"value",o}return n(e,t),e.prototype.getLabelModel=function(){return this.model.getModel("label")},e.prototype.isHorizontal=function(){return"horizontal"===this.model.get("orient")},e}(Fx),vE=Math.PI,mE=Or(),_E=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(t,e){this.api=e},e.prototype.render=function(t,e,n){if(this.model=t,this.api=n,this.ecModel=e,this.group.removeAll(),t.get("show",!0)){var i=this._layout(t,n),r=this._createGroup("_mainGroup"),o=this._createGroup("_labelGroup"),a=this._axis=this._createAxis(i,t);t.formatTooltip=function(t){return xf("nameValue",{noName:!0,value:a.scale.getLabel({value:t})})},P(["AxisLine","AxisTick","Control","CurrentPointer"],(function(e){this["_render"+e](i,r,a,t)}),this),this._renderAxisLabel(i,o,a,t),this._position(i,t)}this._doPlayStop(),this._updateTicksStatus()},e.prototype.remove=function(){this._clearTimer(),this.group.removeAll()},e.prototype.dispose=function(){this._clearTimer()},e.prototype._layout=function(t,e){var n,i,r,o,a=t.get(["label","position"]),s=t.get("orient"),l=function(t,e){return Zc(t.getBoxLayoutParams(),{width:e.getWidth(),height:e.getHeight()},t.get("padding"))}(t,e),u={horizontal:"center",vertical:(n=null==a||"auto"===a?"horizontal"===s?l.y+l.height/2=0||"+"===n?"left":"right"},h={horizontal:n>=0||"+"===n?"top":"bottom",vertical:"middle"},c={horizontal:0,vertical:vE/2},p="vertical"===s?l.height:l.width,d=t.getModel("controlStyle"),f=d.get("show",!0),g=f?d.get("itemSize"):0,y=f?d.get("itemGap"):0,v=g+y,m=t.get(["label","rotate"])||0;m=m*vE/180;var _=d.get("position",!0),x=f&&d.get("showPlayBtn",!0),b=f&&d.get("showPrevBtn",!0),w=f&&d.get("showNextBtn",!0),S=0,M=p;"left"===_||"bottom"===_?(x&&(i=[0,0],S+=v),b&&(r=[S,0],S+=v),w&&(o=[M-g,0],M-=v)):(x&&(i=[M-g,0],M-=v),b&&(r=[0,0],S+=v),w&&(o=[M-g,0],M-=v));var I=[S,M];return t.get("inverse")&&I.reverse(),{viewRect:l,mainLength:p,orient:s,rotation:c[s],labelRotation:m,labelPosOpt:n,labelAlign:t.get(["label","align"])||u[s],labelBaseline:t.get(["label","verticalAlign"])||t.get(["label","baseline"])||h[s],playPosition:i,prevBtnPosition:r,nextBtnPosition:o,axisExtent:I,controlSize:g,controlGap:y}},e.prototype._position=function(t,e){var n=this._mainGroup,i=this._labelGroup,r=t.viewRect;if("vertical"===t.orient){var o=[1,0,0,1,0,0],a=r.x,s=r.y+r.height;Un(o,o,[-a,-s]),Xn(o,o,-vE/2),Un(o,o,[a,s]),(r=r.clone()).applyTransform(o)}var l=y(r),u=y(n.getBoundingRect()),h=y(i.getBoundingRect()),c=[n.x,n.y],p=[i.x,i.y];p[0]=c[0]=l[0][0];var d,f=t.labelPosOpt;null==f||H(f)?(v(c,u,l,1,d="+"===f?0:1),v(p,h,l,1,1-d)):(v(c,u,l,1,d=f>=0?0:1),p[1]=c[1]+f);function g(t){t.originX=l[0][0]-t.x,t.originY=l[1][0]-t.y}function y(t){return[[t.x,t.x+t.width],[t.y,t.y+t.height]]}function v(t,e,n,i,r){t[i]+=n[i][r]-e[i][r]}n.setPosition(c),i.setPosition(p),n.rotation=i.rotation=t.rotation,g(n),g(i)},e.prototype._createAxis=function(t,e){var n=e.getData(),i=e.get("axisType"),r=function(t,e){if(e=e||t.get("type"))switch(e){case"category":return new D_({ordinalMeta:t.getCategories(),extent:[1/0,-1/0]});case"time":return new U_({locale:t.ecModel.getLocaleModel(),useUTC:t.ecModel.get("useUTC")});default:return new k_}}(e,i);r.getTicks=function(){return n.mapArray(["value"],(function(t){return{value:t}}))};var o=n.getDataExtent("value");r.setExtent(o[0],o[1]),r.niceTicks();var a=new yE("value",r,t.axisExtent,i);return a.model=e,a},e.prototype._createGroup=function(t){var e=this[t]=new Bi;return this.group.add(e),e},e.prototype._renderAxisLine=function(t,e,n,i){var r=n.getExtent();if(i.get(["lineStyle","show"])){var o=new gu({shape:{x1:r[0],y1:0,x2:r[1],y2:0},style:I({lineCap:"round"},i.getModel("lineStyle").getLineStyle()),silent:!0,z2:1});e.add(o);var a=this._progressLine=new gu({shape:{x1:r[0],x2:this._currentPointer?this._currentPointer.x:r[0],y1:0,y2:0},style:T({lineCap:"round",lineWidth:o.style.lineWidth},i.getModel(["progress","lineStyle"]).getLineStyle()),silent:!0,z2:1});e.add(a)}},e.prototype._renderAxisTick=function(t,e,n,i){var r=this,o=i.getData(),a=n.scale.getTicks();this._tickSymbols=[],P(a,(function(t){var a=n.dataToCoord(t.value),s=o.getItemModel(t.value),l=s.getModel("itemStyle"),u=s.getModel(["emphasis","itemStyle"]),h=s.getModel(["progress","itemStyle"]),c={x:a,y:0,onclick:B(r._changeTimeline,r,t.value)},p=xE(s,l,e,c);p.ensureState("emphasis").style=u.getItemStyle(),p.ensureState("progress").style=h.getItemStyle(),cl(p);var d=ws(p);s.get("tooltip")?(d.dataIndex=t.value,d.dataModel=i):d.dataIndex=d.dataModel=null,r._tickSymbols.push(p)}))},e.prototype._renderAxisLabel=function(t,e,n,i){var r=this;if(n.getLabelModel().get("show")){var o=i.getData(),a=n.getViewLabels();this._tickLabels=[],P(a,(function(i){var a=i.tickValue,s=o.getItemModel(a),l=s.getModel("label"),u=s.getModel(["emphasis","label"]),h=s.getModel(["progress","label"]),c=n.dataToCoord(i.tickValue),p=new ds({x:c,y:0,rotation:t.labelRotation-t.rotation,onclick:B(r._changeTimeline,r,a),silent:!1,style:bh(l,{text:i.formattedLabel,align:t.labelAlign,verticalAlign:t.labelBaseline})});p.ensureState("emphasis").style=bh(u),p.ensureState("progress").style=bh(h),e.add(p),cl(p),mE(p).dataIndex=a,r._tickLabels.push(p)}))}},e.prototype._renderControl=function(t,e,n,i){var r=t.controlSize,o=t.rotation,a=i.getModel("controlStyle").getItemStyle(),s=i.getModel(["emphasis","controlStyle"]).getItemStyle(),l=i.getPlayState(),u=i.get("inverse",!0);function h(t,n,l,u){if(t){var h=Ti(tt(i.get(["controlStyle",n+"BtnSize"]),r),r),c=function(t,e,n,i){var r=i.style,o=hh(t.get(["controlStyle",e]),i||{},new yi(n[0],n[1],n[2],n[3]));r&&o.setStyle(r);return o}(i,n+"Icon",[0,-h/2,h,h],{x:t[0],y:t[1],originX:r/2,originY:0,rotation:u?-o:0,rectHover:!0,style:a,onclick:l});c.ensureState("emphasis").style=s,e.add(c),cl(c)}}h(t.nextBtnPosition,"next",B(this._changeTimeline,this,u?"-":"+")),h(t.prevBtnPosition,"prev",B(this._changeTimeline,this,u?"+":"-")),h(t.playPosition,l?"stop":"play",B(this._handlePlayClick,this,!l),!0)},e.prototype._renderCurrentPointer=function(t,e,n,i){var r=i.getData(),o=i.getCurrentIndex(),a=r.getItemModel(o).getModel("checkpointStyle"),s=this,l={onCreate:function(t){t.draggable=!0,t.drift=B(s._handlePointerDrag,s),t.ondragend=B(s._handlePointerDragend,s),bE(t,s._progressLine,o,n,i,!0)},onUpdate:function(t){bE(t,s._progressLine,o,n,i)}};this._currentPointer=xE(a,a,this._mainGroup,{},this._currentPointer,l)},e.prototype._handlePlayClick=function(t){this._clearTimer(),this.api.dispatchAction({type:"timelinePlayChange",playState:t,from:this.uid})},e.prototype._handlePointerDrag=function(t,e,n){this._clearTimer(),this._pointerChangeTimeline([n.offsetX,n.offsetY])},e.prototype._handlePointerDragend=function(t){this._pointerChangeTimeline([t.offsetX,t.offsetY],!0)},e.prototype._pointerChangeTimeline=function(t,e){var n=this._toAxisCoord(t)[0],i=Ki(this._axis.getExtent().slice());n>i[1]&&(n=i[1]),n=0&&(a[o]=+a[o].toFixed(c)),[a,h]}var LE={min:V(kE,"min"),max:V(kE,"max"),average:V(kE,"average"),median:V(kE,"median")};function PE(t,e){var n=t.getData(),i=t.coordinateSystem;if(e&&!function(t){return!isNaN(parseFloat(t.x))&&!isNaN(parseFloat(t.y))}(e)&&!G(e.coord)&&i){var r=i.dimensions,o=OE(e,n,i,t);if((e=w(e)).type&&LE[e.type]&&o.baseAxis&&o.valueAxis){var a=D(r,o.baseAxis.dim),s=D(r,o.valueAxis.dim),l=LE[e.type](n,o.baseDataDim,o.valueDataDim,a,s);e.coord=l[0],e.value=l[1]}else{for(var u=[null!=e.xAxis?e.xAxis:e.radiusAxis,null!=e.yAxis?e.yAxis:e.angleAxis],h=0;h<2;h++)LE[u[h]]&&(u[h]=zE(n,n.mapDimension(r[h]),u[h]));e.coord=u}}return e}function OE(t,e,n,i){var r={};return null!=t.valueIndex||null!=t.valueDim?(r.valueDataDim=null!=t.valueIndex?e.getDimension(t.valueIndex):t.valueDim,r.valueAxis=n.getAxis(function(t,e){var n=t.getData().getDimensionInfo(e);return n&&n.coordDim}(i,r.valueDataDim)),r.baseAxis=n.getOtherAxis(r.valueAxis),r.baseDataDim=e.mapDimension(r.baseAxis.dim)):(r.baseAxis=i.getBaseAxis(),r.valueAxis=n.getOtherAxis(r.baseAxis),r.baseDataDim=e.mapDimension(r.baseAxis.dim),r.valueDataDim=e.mapDimension(r.valueAxis.dim)),r}function RE(t,e){return!(t&&t.containData&&e.coord&&!function(t){return!(isNaN(parseFloat(t.x))&&isNaN(parseFloat(t.y)))}(e))||t.containData(e.coord)}function NE(t,e,n,i){return i<2?t.coord&&t.coord[i]:t.value}function zE(t,e,n){if("average"===n){var i=0,r=0;return t.each(e,(function(t,e){isNaN(t)||(i+=t,r++)})),i/r}return"median"===n?t.getMedian(e):t.getDataExtent(e)["max"===n?1:0]}var EE=Or(),BE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.init=function(){this.markerGroupMap=ht()},e.prototype.render=function(t,e,n){var i=this,r=this.markerGroupMap;r.each((function(t){EE(t).keep=!1})),e.eachSeries((function(t){var r=DE.getMarkerModelFromSeries(t,i.type);r&&i.renderSeries(t,r,e,n)})),r.each((function(t){!EE(t).keep&&i.group.remove(t.group)}))},e.prototype.markKeep=function(t){EE(t).keep=!0},e.prototype.blurSeries=function(t){var e=this;P(t,(function(t){var n=DE.getMarkerModelFromSeries(t,e.type);n&&n.getData().eachItemGraphicEl((function(t){t&&tl(t)}))}))},e.type="marker",e}(Ff);function VE(t,e,n){var i=e.coordinateSystem;t.each((function(r){var o,a=t.getItemModel(r),s=ji(a.get("x"),n.getWidth()),l=ji(a.get("y"),n.getHeight());if(isNaN(s)||isNaN(l)){if(e.getMarkerPosition)o=e.getMarkerPosition(t.getValues(t.dimensions,r));else if(i){var u=t.get(i.dimensions[0],r),h=t.get(i.dimensions[1],r);o=i.dataToPoint([u,h])}}else o=[s,l];isNaN(s)||(o[0]=s),isNaN(l)||(o[1]=l),t.setItemLayout(r,o)}))}var GE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.updateTransform=function(t,e,n){e.eachSeries((function(t){var e=DE.getMarkerModelFromSeries(t,"markPoint");e&&(VE(e.getData(),t,n),this.markerGroupMap.get(t.id).updateLayout())}),this)},e.prototype.renderSeries=function(t,e,n,i){var r=t.coordinateSystem,o=t.id,a=t.getData(),s=this.markerGroupMap,l=s.get(o)||s.set(o,new Pw),u=function(t,e,n){var i;i=t?O(t&&t.dimensions,(function(t){return I(I({},e.getData().getDimensionInfo(e.getData().mapDimension(t))||{}),{name:t,ordinalMeta:null})})):[{name:"value",type:"float"}];var r=new s_(i,n),o=O(n.get("data"),V(PE,e));t&&(o=N(o,V(RE,t)));return r.initData(o,null,t?NE:function(t){return t.value}),r}(r,t,e);e.setData(u),VE(e.getData(),t,i),u.each((function(t){var n=u.getItemModel(t),i=n.getShallow("symbol"),r=n.getShallow("symbolSize"),o=n.getShallow("symbolRotate"),s=n.getShallow("symbolOffset"),l=n.getShallow("symbolKeepAspect");if(F(i)||F(r)||F(o)||F(s)){var h=e.getRawValue(t),c=e.getDataParams(t);F(i)&&(i=i(h,c)),F(r)&&(r=r(h,c)),F(o)&&(o=o(h,c)),F(s)&&(s=s(h,c))}var p=n.getModel("itemStyle").getItemStyle(),d=Eg(a,"color");p.fill||(p.fill=d),u.setItemVisual(t,{symbol:i,symbolSize:r,symbolRotate:o,symbolOffset:s,symbolKeepAspect:l,style:p})})),l.updateData(u),this.group.add(l.group),u.eachItemGraphicEl((function(t){t.traverse((function(t){ws(t).dataModel=e}))})),this.markKeep(l),l.group.silent=e.get("silent")||t.get("silent")},e.type="markPoint",e}(BE);var FE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.createMarkerModelFromSeries=function(t,n,i){return new e(t,n,i)},e.type="markLine",e.defaultOption={zlevel:0,z:5,symbol:["circle","arrow"],symbolSize:[8,16],symbolOffset:0,precision:2,tooltip:{trigger:"item"},label:{show:!0,position:"end",distance:5},lineStyle:{type:"dashed"},emphasis:{label:{show:!0},lineStyle:{width:3}},animationEasing:"linear"},e}(DE),HE=Or(),WE=function(t,e,n,i){var r,o=t.getData();if(G(i))r=i;else{var a=i.type;if("min"===a||"max"===a||"average"===a||"median"===a||null!=i.xAxis||null!=i.yAxis){var s=void 0,l=void 0;if(null!=i.yAxis||null!=i.xAxis)s=e.getAxis(null!=i.yAxis?"y":"x"),l=Q(i.yAxis,i.xAxis);else{var u=OE(i,o,e,t);s=u.valueAxis,l=zE(o,g_(o,u.valueDataDim),a)}var h="x"===s.dim?0:1,c=1-h,p=w(i),d={coord:[]};p.type=null,p.coord=[],p.coord[c]=-1/0,d.coord[c]=1/0;var f=n.get("precision");f>=0&&"number"==typeof l&&(l=+l.toFixed(Math.min(f,20))),p.coord[h]=d.coord[h]=l,r=[p,d,{type:a,valueIndex:i.valueIndex,value:l}]}else r=[]}var g=[PE(t,r[0]),PE(t,r[1]),I({},r[2])];return g[2].type=g[2].type||null,S(g[2],g[0]),S(g[2],g[1]),g};function UE(t){return!isNaN(t)&&!isFinite(t)}function XE(t,e,n,i){var r=1-t,o=i.dimensions[t];return UE(e[r])&&UE(n[r])&&e[t]===n[t]&&i.getAxis(o).containData(e[t])}function YE(t,e){if("cartesian2d"===t.type){var n=e[0].coord,i=e[1].coord;if(n&&i&&(XE(1,n,i,t)||XE(0,n,i,t)))return!0}return RE(t,e[0])&&RE(t,e[1])}function ZE(t,e,n,i,r){var o,a=i.coordinateSystem,s=t.getItemModel(e),l=ji(s.get("x"),r.getWidth()),u=ji(s.get("y"),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition)o=i.getMarkerPosition(t.getValues(t.dimensions,e));else{var h=a.dimensions,c=t.get(h[0],e),p=t.get(h[1],e);o=a.dataToPoint([c,p])}if(qw(a,"cartesian2d")){var d=a.getAxis("x"),f=a.getAxis("y");h=a.dimensions;UE(t.get(h[0],e))?o[0]=d.toGlobalCoord(d.getExtent()[n?0:1]):UE(t.get(h[1],e))&&(o[1]=f.toGlobalCoord(f.getExtent()[n?0:1]))}isNaN(l)||(o[0]=l),isNaN(u)||(o[1]=u)}else o=[l,u];t.setItemLayout(e,o)}var jE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.updateTransform=function(t,e,n){e.eachSeries((function(t){var e=DE.getMarkerModelFromSeries(t,"markLine");if(e){var i=e.getData(),r=HE(e).from,o=HE(e).to;r.each((function(e){ZE(r,e,!0,t,n),ZE(o,e,!1,t,n)})),i.each((function(t){i.setItemLayout(t,[r.getItemLayout(t),o.getItemLayout(t)])})),this.markerGroupMap.get(t.id).updateLayout()}}),this)},e.prototype.renderSeries=function(t,e,n,i){var r=t.coordinateSystem,o=t.id,a=t.getData(),s=this.markerGroupMap,l=s.get(o)||s.set(o,new cD);this.group.add(l.group);var u=function(t,e,n){var i;i=t?O(t&&t.dimensions,(function(t){return I(I({},e.getData().getDimensionInfo(e.getData().mapDimension(t))||{}),{name:t,ordinalMeta:null})})):[{name:"value",type:"float"}];var r=new s_(i,n),o=new s_(i,n),a=new s_([],n),s=O(n.get("data"),V(WE,e,t,n));t&&(s=N(s,V(YE,t)));var l=t?NE:function(t){return t.value};return r.initData(O(s,(function(t){return t[0]})),null,l),o.initData(O(s,(function(t){return t[1]})),null,l),a.initData(O(s,(function(t){return t[2]}))),a.hasItemOption=!0,{from:r,to:o,line:a}}(r,t,e),h=u.from,c=u.to,p=u.line;HE(e).from=h,HE(e).to=c,e.setData(p);var d=e.get("symbol"),f=e.get("symbolSize"),g=e.get("symbolRotate"),y=e.get("symbolOffset");function v(e,n,r){var o=e.getItemModel(n);ZE(e,n,r,t,i);var s=o.getModel("itemStyle").getItemStyle();null==s.fill&&(s.fill=Eg(a,"color")),e.setItemVisual(n,{symbolKeepAspect:o.get("symbolKeepAspect"),symbolOffset:tt(o.get("symbolOffset",!0),y[r?0:1]),symbolRotate:tt(o.get("symbolRotate",!0),g[r?0:1]),symbolSize:tt(o.get("symbolSize"),f[r?0:1]),symbol:tt(o.get("symbol",!0),d[r?0:1]),style:s})}G(d)||(d=[d,d]),G(f)||(f=[f,f]),G(g)||(g=[g,g]),G(y)||(y=[y,y]),u.from.each((function(t){v(h,t,!0),v(c,t,!1)})),p.each((function(t){var e=p.getItemModel(t).getModel("lineStyle").getLineStyle();p.setItemLayout(t,[h.getItemLayout(t),c.getItemLayout(t)]),null==e.stroke&&(e.stroke=h.getItemVisual(t,"style").fill),p.setItemVisual(t,{fromSymbolKeepAspect:h.getItemVisual(t,"symbolKeepAspect"),fromSymbolOffset:h.getItemVisual(t,"symbolOffset"),fromSymbolRotate:h.getItemVisual(t,"symbolRotate"),fromSymbolSize:h.getItemVisual(t,"symbolSize"),fromSymbol:h.getItemVisual(t,"symbol"),toSymbolKeepAspect:c.getItemVisual(t,"symbolKeepAspect"),toSymbolOffset:c.getItemVisual(t,"symbolOffset"),toSymbolRotate:c.getItemVisual(t,"symbolRotate"),toSymbolSize:c.getItemVisual(t,"symbolSize"),toSymbol:c.getItemVisual(t,"symbol"),style:e})})),l.updateData(p),u.line.eachItemGraphicEl((function(t,n){t.traverse((function(t){ws(t).dataModel=e}))})),this.markKeep(l),l.group.silent=e.get("silent")||t.get("silent")},e.type="markLine",e}(BE);var qE=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.createMarkerModelFromSeries=function(t,n,i){return new e(t,n,i)},e.type="markArea",e.defaultOption={zlevel:0,z:1,tooltip:{trigger:"item"},animation:!1,label:{show:!0,position:"top"},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:"top"}}},e}(DE),KE=Or(),$E=function(t,e,n,i){var r=PE(t,i[0]),o=PE(t,i[1]),a=r.coord,s=o.coord;a[0]=Q(a[0],-1/0),a[1]=Q(a[1],-1/0),s[0]=Q(s[0],1/0),s[1]=Q(s[1],1/0);var l=M([{},r,o]);return l.coord=[r.coord,o.coord],l.x0=r.x,l.y0=r.y,l.x1=o.x,l.y1=o.y,l};function JE(t){return!isNaN(t)&&!isFinite(t)}function QE(t,e,n,i){var r=1-t;return JE(e[r])&&JE(n[r])}function tB(t,e){var n=e.coord[0],i=e.coord[1];return!!(qw(t,"cartesian2d")&&n&&i&&(QE(1,n,i)||QE(0,n,i)))||(RE(t,{coord:n,x:e.x0,y:e.y0})||RE(t,{coord:i,x:e.x1,y:e.y1}))}function eB(t,e,n,i,r){var o,a=i.coordinateSystem,s=t.getItemModel(e),l=ji(s.get(n[0]),r.getWidth()),u=ji(s.get(n[1]),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition)o=i.getMarkerPosition(t.getValues(n,e));else{var h=[d=t.get(n[0],e),f=t.get(n[1],e)];a.clampData&&a.clampData(h,h),o=a.dataToPoint(h,!0)}if(qw(a,"cartesian2d")){var c=a.getAxis("x"),p=a.getAxis("y"),d=t.get(n[0],e),f=t.get(n[1],e);JE(d)?o[0]=c.toGlobalCoord(c.getExtent()["x0"===n[0]?0:1]):JE(f)&&(o[1]=p.toGlobalCoord(p.getExtent()["y0"===n[1]?0:1]))}isNaN(l)||(o[0]=l),isNaN(u)||(o[1]=u)}else o=[l,u];return o}var nB=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]],iB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.updateTransform=function(t,e,n){e.eachSeries((function(t){var e=DE.getMarkerModelFromSeries(t,"markArea");if(e){var i=e.getData();i.each((function(e){var r=O(nB,(function(r){return eB(i,e,r,t,n)}));i.setItemLayout(e,r),i.getItemGraphicEl(e).setShape("points",r)}))}}),this)},e.prototype.renderSeries=function(t,e,n,i){var r=t.coordinateSystem,o=t.id,a=t.getData(),s=this.markerGroupMap,l=s.get(o)||s.set(o,{group:new Bi});this.group.add(l.group),this.markKeep(l);var u=function(t,e,n){var i,r,o=["x0","y0","x1","y1"];t?(i=O(t&&t.dimensions,(function(t){var n=e.getData();return I(I({},n.getDimensionInfo(n.mapDimension(t))||{}),{name:t,ordinalMeta:null})})),r=new s_(O(o,(function(t,e){return{name:t,type:i[e%2].type}})),n)):r=new s_(i=[{name:"value",type:"float"}],n);var a=O(n.get("data"),V($E,e,t,n));t&&(a=N(a,V(tB,t)));var s=t?function(t,e,n,i){return t.coord[Math.floor(i/2)][i%2]}:function(t){return t.value};return r.initData(a,null,s),r.hasItemOption=!0,r}(r,t,e);e.setData(u),u.each((function(e){var n=O(nB,(function(n){return eB(u,e,n,t,i)})),o=r.getAxis("x").scale,s=r.getAxis("y").scale,l=o.getExtent(),h=s.getExtent(),c=[o.parse(u.get("x0",e)),o.parse(u.get("x1",e))],p=[s.parse(u.get("y0",e)),s.parse(u.get("y1",e))];Ki(c),Ki(p);var d=!!(l[0]>c[1]||l[1]p[1]||h[1]=0},e.prototype.getOrient=function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},e.type="legend.plain",e.dependencies=["series"],e.defaultOption={zlevel:0,z:4,show:!0,orient:"horizontal",left:"center",top:0,align:"auto",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",borderRadius:0,borderWidth:0,padding:5,itemGap:10,itemWidth:25,itemHeight:14,symbolRotate:"inherit",inactiveColor:"#ccc",inactiveBorderColor:"#ccc",inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",decal:"inherit",shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0,borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:"#ccc",inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit",shadowBlur:0,shadowColor:null,shadowOffsetX:0,shadowOffsetY:0},textStyle:{color:"#333"},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:" sans-serif",color:"#666",borderWidth:1,borderColor:"#666"},emphasis:{selectorLabel:{show:!0,color:"#eee",backgroundColor:"#666"}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1}},e}(tp),oB=V,aB=P,sB=Bi,lB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.newlineDisabled=!1,n}return n(e,t),e.prototype.init=function(){this.group.add(this._contentGroup=new sB),this.group.add(this._selectorGroup=new sB),this._isFirstRender=!0},e.prototype.getContentGroup=function(){return this._contentGroup},e.prototype.getSelectorGroup=function(){return this._selectorGroup},e.prototype.render=function(t,e,n){var i=this._isFirstRender;if(this._isFirstRender=!1,this.resetInner(),t.get("show",!0)){var r=t.get("align"),o=t.get("orient");r&&"auto"!==r||(r="right"===t.get("left")&&"vertical"===o?"right":"left");var a=t.get("selector",!0),s=t.get("selectorPosition",!0);!a||s&&"auto"!==s||(s="horizontal"===o?"end":"start"),this.renderInner(r,t,e,n,a,o,s);var l=t.getBoxLayoutParams(),u={width:n.getWidth(),height:n.getHeight()},h=t.get("padding"),c=Zc(l,u,h),p=this.layoutInner(t,r,c,i,a,s),d=Zc(T({width:p.width,height:p.height},l),u,h);this.group.x=d.x-p.x,this.group.y=d.y-p.y,this.group.markRedraw(),this.group.add(this._backgroundEl=NN(p,t))}},e.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},e.prototype.renderInner=function(t,e,n,i,r,o,a){var s=this.getContentGroup(),l=ht(),u=e.get("selectedMode"),h=[];n.eachRawSeries((function(t){!t.get("legendHoverLink")&&h.push(t.id)})),aB(e.getData(),(function(r,o){var a=r.get("name");if(!this.newlineDisabled&&(""===a||"\n"===a)){var c=new sB;return c.newline=!0,void s.add(c)}var p=n.getSeriesByName(a)[0];if(!l.get(a)){if(p){var d=p.getData(),f=d.getVisual("legendLineStyle")||{},g=d.getVisual("legendIcon"),y=d.getVisual("style");this._createItem(p,a,o,r,e,t,f,y,g,u).on("click",oB(uB,a,null,i,h)).on("mouseover",oB(cB,p.name,null,i,h)).on("mouseout",oB(pB,p.name,null,i,h)),l.set(a,!0)}else n.eachRawSeries((function(n){if(!l.get(a)&&n.legendVisualProvider){var s=n.legendVisualProvider;if(!s.containName(a))return;var c=s.indexOfName(a),p=s.getItemVisual(c,"style"),d=s.getItemVisual(c,"legendIcon"),f=He(p.fill);f&&0===f[3]&&(f[3]=.2,p.fill=Je(f,"rgba")),this._createItem(n,a,o,r,e,t,{},p,d,u).on("click",oB(uB,null,a,i,h)).on("mouseover",oB(cB,null,a,i,h)).on("mouseout",oB(pB,null,a,i,h)),l.set(a,!0)}}),this);0}}),this),r&&this._createSelector(r,e,i,o,a)},e.prototype._createSelector=function(t,e,n,i,r){var o=this.getSelectorGroup();aB(t,(function(t){var i=t.type,r=new ds({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===i?"legendAllSelect":"legendInverseSelect"})}});o.add(r),_h(r,{normal:e.getModel("selectorLabel"),emphasis:e.getModel(["emphasis","selectorLabel"])},{defaultText:t.title}),cl(r)}))},e.prototype._createItem=function(t,e,n,i,r,o,a,s,l,u){var h=t.visualDrawType,c=r.get("itemWidth"),p=r.get("itemHeight"),d=r.isSelected(e),f=i.get("symbolRotate"),g=i.get("icon"),y=function(t,e,n,i,r,o,a){for(var s=e.getModel("itemStyle"),l=Vh.concat([["decal"]]),u={},h=0;h0?2:0:u[p]=y}var d=e.getModel("lineStyle"),f=zh.concat([["inactiveColor"],["inactiveWidth"]]),g={};for(h=0;h0?2:0:g[p]=y}if("auto"===u.fill&&(u.fill=r.fill),"auto"===u.stroke&&(u.stroke=r.fill),"auto"===g.stroke&&(g.stroke=r.fill),!a){var v=e.get("inactiveBorderWidth"),m=u[t.indexOf("empty")>-1?"fill":"stroke"];u.lineWidth="auto"===v?r.lineWidth>0&&m?2:0:u.lineWidth,u.fill=e.get("inactiveColor"),u.stroke=e.get("inactiveBorderColor"),g.stroke=n.get("inactiveColor"),g.lineWidth=n.get("inactiveWidth")}return{itemStyle:u,lineStyle:g}}(l=g||l||"roundRect",i,r.getModel("lineStyle"),a,s,h,d),v=new sB,m=i.getModel("textStyle");if("function"!=typeof t.getLegendIcon||g&&"inherit"!==g){var _="inherit"===g&&t.getData().getVisual("symbol")?"inherit"===f?t.getData().getVisual("symbolRotate"):f:0;v.add(function(t){var e=t.icon||"roundRect",n=Qg(e,0,0,t.itemWidth,t.itemHeight,t.itemStyle.fill);n.setStyle(t.itemStyle),n.rotation=(t.iconRotate||0)*Math.PI/180,n.setOrigin([t.itemWidth/2,t.itemHeight/2]),e.indexOf("empty")>-1&&(n.style.stroke=n.style.fill,n.style.fill="#fff",n.style.lineWidth=2);return n}({itemWidth:c,itemHeight:p,icon:l,iconRotate:_,itemStyle:y.itemStyle,lineStyle:y.lineStyle}))}else v.add(t.getLegendIcon({itemWidth:c,itemHeight:p,icon:l,iconRotate:f,itemStyle:y.itemStyle,lineStyle:y.lineStyle}));var x="left"===o?c+5:-5,b=o,w=r.get("formatter"),S=e;"string"==typeof w&&w?S=w.replace("{name}",null!=e?e:""):"function"==typeof w&&(S=w(e));var M=i.get("inactiveColor");v.add(new ds({style:bh(m,{text:S,x:x,y:p/2,fill:d?m.getTextColor():M,align:b,verticalAlign:"middle"})}));var I=new hs({shape:v.getBoundingRect(),invisible:!0}),T=i.getModel("tooltip");return T.get("show")&&fh({el:I,componentModel:r,itemName:e,itemTooltipOption:T.option}),v.add(I),v.eachChild((function(t){t.silent=!0})),I.silent=!u,this.getContentGroup().add(v),cl(v),v.__legendDataIndex=n,v},e.prototype.layoutInner=function(t,e,n,i,r,o){var a=this.getContentGroup(),s=this.getSelectorGroup();Yc(t.get("orient"),a,t.get("itemGap"),n.width,n.height);var l=a.getBoundingRect(),u=[-l.x,-l.y];if(s.markRedraw(),a.markRedraw(),r){Yc("horizontal",s,t.get("selectorItemGap",!0));var h=s.getBoundingRect(),c=[-h.x,-h.y],p=t.get("selectorButtonGap",!0),d=t.getOrient().index,f=0===d?"width":"height",g=0===d?"height":"width",y=0===d?"y":"x";"end"===o?c[d]+=l[f]+p:u[d]+=h[f]+p,c[1-d]+=l[g]/2-h[g]/2,s.x=c[0],s.y=c[1],a.x=u[0],a.y=u[1];var v={x:0,y:0};return v[f]=l[f]+p+h[f],v[g]=Math.max(l[g],h[g]),v[y]=Math.min(0,h[y]+c[1-d]),v}return a.x=u[0],a.y=u[1],this.group.getBoundingRect()},e.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},e.type="legend.plain",e}(Ff);function uB(t,e,n,i){pB(t,e,n,i),n.dispatchAction({type:"legendToggleSelect",name:null!=t?t:e}),cB(t,e,n,i)}function hB(t){for(var e,n=t.getZr().storage.getDisplayList(),i=0,r=n.length;in[r],f=[-c.x,-c.y];e||(f[i]=l[s]);var g=[0,0],y=[-p.x,-p.y],v=tt(t.get("pageButtonGap",!0),t.get("itemGap",!0));d&&("end"===t.get("pageButtonPosition",!0)?y[i]+=n[r]-p[r]:g[i]+=p[r]+v);y[1-i]+=c[o]/2-p[o]/2,l.setPosition(f),u.setPosition(g),h.setPosition(y);var m={x:0,y:0};if(m[r]=d?n[r]:c[r],m[o]=Math.max(c[o],p[o]),m[a]=Math.min(0,p[a]+y[1-i]),u.__rectSize=n[r],d){var _={x:0,y:0};_[r]=Math.max(n[r]-p[r]-v,0),_[o]=m[o],u.setClipPath(new hs({shape:_})),u.__rectSize=_[r]}else h.eachChild((function(t){t.attr({invisible:!0,silent:!0})}));var x=this._getPageInfo(t);return null!=x.pageIndex&&zu(l,{x:x.contentPosition[0],y:x.contentPosition[1]},d?t:null),this._updatePageInfoView(t,x),m},e.prototype._pageGo=function(t,e,n){var i=this._getPageInfo(e)[t];null!=i&&n.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:e.id})},e.prototype._updatePageInfoView=function(t,e){var n=this._controllerGroup;P(["pagePrev","pageNext"],(function(i){var r=null!=e[i+"DataIndex"],o=n.childOfName(i);o&&(o.setStyle("fill",r?t.get("pageIconColor",!0):t.get("pageIconInactiveColor",!0)),o.cursor=r?"pointer":"default")}));var i=n.childOfName("pageText"),r=t.get("pageFormatter"),o=e.pageIndex,a=null!=o?o+1:0,s=e.pageCount;i&&r&&i.setStyle("text",H(r)?r.replace("{current}",null==a?"":a+"").replace("{total}",null==s?"":s+""):r({current:a,total:s}))},e.prototype._getPageInfo=function(t){var e=t.get("scrollDataIndex",!0),n=this.getContentGroup(),i=this._containerGroup.__rectSize,r=t.getOrient().index,o=_B[r],a=xB[r],s=this._findTargetItemIndex(e),l=n.children(),u=l[s],h=l.length,c=h?1:0,p={contentPosition:[n.x,n.y],pageCount:c,pageIndex:c-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return p;var d=m(u);p.contentPosition[r]=-d.s;for(var f=s+1,g=d,y=d,v=null;f<=h;++f)(!(v=m(l[f]))&&y.e>g.s+i||v&&!_(v,g.s))&&(g=y.i>g.i?y:v)&&(null==p.pageNextDataIndex&&(p.pageNextDataIndex=g.i),++p.pageCount),y=v;for(f=s-1,g=d,y=d,v=null;f>=-1;--f)(v=m(l[f]))&&_(y,v.s)||!(g.i=e&&t.s<=e+i}},e.prototype._findTargetItemIndex=function(t){return this._showController?(this.getContentGroup().eachChild((function(i,r){var o=i.__legendDataIndex;null==n&&null!=o&&(n=r),o===t&&(e=r)})),null!=e?e:n):0;var e,n},e.type="legend.scroll",e}(lB);function wB(t){Rm(gB),t.registerComponentModel(yB),t.registerComponentView(bB),function(t){t.registerAction("legendScroll","legendscroll",(function(t,e){var n=t.scrollDataIndex;null!=n&&e.eachComponent({mainType:"legend",subType:"scroll",query:t},(function(t){t.setScrollDataIndex(n)}))}))}(t)}var SB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="dataZoom.inside",e.defaultOption=Xh(mN.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),e}(mN),MB=Or();function IB(t,e,n){MB(t).coordSysRecordMap.each((function(t){var i=t.dataZoomInfoMap.get(e.uid);i&&(i.getRange=n)}))}function TB(t,e){if(e){t.removeKey(e.model.uid);var n=e.controller;n&&n.dispose()}}function CB(t,e){t.dispatchAction({type:"dataZoom",animation:{easing:"cubicOut",duration:100},batch:e})}function DB(t,e,n,i){return t.coordinateSystem.containPoint([n,i])}function AB(t){t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,(function(t,e){var n=MB(e),i=n.coordSysRecordMap||(n.coordSysRecordMap=ht());i.each((function(t){t.dataZoomInfoMap=null})),t.eachComponent({mainType:"dataZoom",subType:"inside"},(function(t){P(yN(t).infoList,(function(n){var r=n.model.uid,o=i.get(r)||i.set(r,function(t,e){var n={model:e,containsPoint:V(DB,e),dispatchAction:V(CB,t),dataZoomInfoMap:null,controller:null},i=n.controller=new dI(t.getZr());return P(["pan","zoom","scrollMove"],(function(t){i.on(t,(function(e){var i=[];n.dataZoomInfoMap.each((function(r){if(e.isAvailableBehavior(r.model.option)){var o=(r.getRange||{})[t],a=o&&o(r.dzReferCoordSysInfo,n.model.mainType,n.controller,e);!r.model.get("disabled",!0)&&a&&i.push({dataZoomId:r.model.id,start:a[0],end:a[1]})}})),i.length&&n.dispatchAction(i)}))})),n}(e,n.model));(o.dataZoomInfoMap||(o.dataZoomInfoMap=ht())).set(t.uid,{dzReferCoordSysInfo:n,model:t,getRange:null})}))})),i.each((function(t){var e,n=t.controller,r=t.dataZoomInfoMap;if(r){var o=r.keys()[0];null!=o&&(e=r.get(o))}if(e){var a=function(t){var e,n="type_",i={type_true:2,type_move:1,type_false:0,type_undefined:-1},r=!0;return t.each((function(t){var o=t.model,a=!o.get("disabled",!0)&&(!o.get("zoomLock",!0)||"move");i[n+a]>i[n+e]&&(e=a),r=r&&o.get("preventDefaultMouseMove",!0)})),{controlType:e,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!r}}}(r);n.enable(a.controlType,a.opt),n.setPointerChecker(t.containsPoint),eg(t,"dispatchAction",e.model.get("throttle",!0),"fixRate")}else TB(i,t)}))}))}var kB=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="dataZoom.inside",e}return n(e,t),e.prototype.render=function(e,n,i){t.prototype.render.apply(this,arguments),e.noTarget()?this._clear():(this.range=e.getPercentRange(),IB(i,e,{pan:B(LB.pan,this),zoom:B(LB.zoom,this),scrollMove:B(LB.scrollMove,this)}))},e.prototype.dispose=function(){this._clear(),t.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){!function(t,e){for(var n=MB(t).coordSysRecordMap,i=n.keys(),r=0;r0?s.pixelStart+s.pixelLength-s.pixel:s.pixel-s.pixelStart)/s.pixelLength*(o[1]-o[0])+o[0],u=Math.max(1/i.scale,0);o[0]=(o[0]-l)*u+l,o[1]=(o[1]-l)*u+l;var h=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();return oA(0,o,[0,100],0,h.minSpan,h.maxSpan),this.range=o,r[0]!==o[0]||r[1]!==o[1]?o:void 0}},pan:PB((function(t,e,n,i,r,o){var a=OB[i]([o.oldX,o.oldY],[o.newX,o.newY],e,r,n);return a.signal*(t[1]-t[0])*a.pixel/a.pixelLength})),scrollMove:PB((function(t,e,n,i,r,o){return OB[i]([0,0],[o.scrollDelta,o.scrollDelta],e,r,n).signal*(t[1]-t[0])*o.scrollDelta}))};function PB(t){return function(e,n,i,r){var o=this.range,a=o.slice(),s=e.axisModels[0];if(s)return oA(t(a,s,e,n,i,r),a,[0,100],"all"),this.range=a,o[0]!==a[0]||o[1]!==a[1]?a:void 0}}var OB={grid:function(t,e,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem.getRect();return t=t||[0,0],"x"===o.dim?(a.pixel=e[0]-t[0],a.pixelLength=s.width,a.pixelStart=s.x,a.signal=o.inverse?1:-1):(a.pixel=e[1]-t[1],a.pixelLength=s.height,a.pixelStart=s.y,a.signal=o.inverse?-1:1),a},polar:function(t,e,n,i,r){var o=n.axis,a={},s=r.model.coordinateSystem,l=s.getRadiusAxis().getExtent(),u=s.getAngleAxis().getExtent();return t=t?s.pointToCoord(t):[0,0],e=s.pointToCoord(e),"radiusAxis"===n.mainType?(a.pixel=e[0]-t[0],a.pixelLength=l[1]-l[0],a.pixelStart=l[0],a.signal=o.inverse?1:-1):(a.pixel=e[1]-t[1],a.pixelLength=u[1]-u[0],a.pixelStart=u[0],a.signal=o.inverse?-1:1),a},singleAxis:function(t,e,n,i,r){var o=n.axis,a=r.model.coordinateSystem.getRect(),s={};return t=t||[0,0],"horizontal"===o.orient?(s.pixel=e[0]-t[0],s.pixelLength=a.width,s.pixelStart=a.x,s.signal=o.inverse?1:-1):(s.pixel=e[1]-t[1],s.pixelLength=a.height,s.pixelStart=a.y,s.signal=o.inverse?-1:1),s}};function RB(t){DN(t),t.registerComponentModel(SB),t.registerComponentView(kB),AB(t)}var NB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.type="dataZoom.slider",e.layoutMode="box",e.defaultOption=Xh(mN.defaultOption,{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,borderColor:"#d2dbee",borderRadius:3,backgroundColor:"rgba(47,69,84,0)",dataBackground:{lineStyle:{color:"#d2dbee",width:.5},areaStyle:{color:"#d2dbee",opacity:.2}},selectedDataBackground:{lineStyle:{color:"#8fb0f7",width:.5},areaStyle:{color:"#8fb0f7",opacity:.2}},fillerColor:"rgba(135,175,274,0.2)",handleIcon:"path://M-9.35,34.56V42m0-40V9.5m-2,0h4a2,2,0,0,1,2,2v21a2,2,0,0,1-2,2h-4a2,2,0,0,1-2-2v-21A2,2,0,0,1-11.35,9.5Z",handleSize:"100%",handleStyle:{color:"#fff",borderColor:"#ACB8D1"},moveHandleSize:7,moveHandleIcon:"path://M-320.9-50L-320.9-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-348-41-339-50-320.9-50z M-212.3-50L-212.3-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-239.4-41-230.4-50-212.3-50z M-103.7-50L-103.7-50c18.1,0,27.1,9,27.1,27.1V85.7c0,18.1-9,27.1-27.1,27.1l0,0c-18.1,0-27.1-9-27.1-27.1V-22.9C-130.9-41-121.8-50-103.7-50z",moveHandleStyle:{color:"#D2DBEE",opacity:.7},showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:"#6E7079"},brushSelect:!0,brushStyle:{color:"rgba(135,175,274,0.15)"},emphasis:{handleStyle:{borderColor:"#8FB0F7"},moveHandleStyle:{color:"#8FB0F7"}}}),e}(mN),zB=hs,EB="horizontal",BB="vertical",VB=["line","bar","candlestick","scatter"],GB={easing:"cubicOut",duration:100,delay:0},FB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._displayables={},n}return n(e,t),e.prototype.init=function(t,e){this.api=e,this._onBrush=B(this._onBrush,this),this._onBrushEnd=B(this._onBrushEnd,this)},e.prototype.render=function(e,n,i,r){if(t.prototype.render.apply(this,arguments),eg(this,"_dispatchZoomAction",e.get("throttle"),"fixRate"),this._orient=e.getOrient(),!1!==e.get("show")){if(e.noTarget())return this._clear(),void this.group.removeAll();r&&"dataZoom"===r.type&&r.from===this.uid||this._buildView(),this._updateView()}else this.group.removeAll()},e.prototype.dispose=function(){this._clear(),t.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){var t,e,n;(n=(t=this)[e="_dispatchZoomAction"])&&n[$f]&&(t[e]=n[$f]);var i=this.api.getZr();i.off("mousemove",this._onBrush),i.off("mouseup",this._onBrushEnd)},e.prototype._buildView=function(){var t=this.group;t.removeAll(),this._brushing=!1,this._displayables.brushRect=null,this._resetLocation(),this._resetInterval();var e=this._displayables.sliderGroup=new Bi;this._renderBackground(),this._renderHandle(),this._renderDataShadow(),t.add(e),this._positionGroup()},e.prototype._resetLocation=function(){var t=this.dataZoomModel,e=this.api,n=t.get("brushSelect")?7:0,i=this._findCoordRect(),r={width:e.getWidth(),height:e.getHeight()},o=this._orient===EB?{right:r.width-i.x-i.width,top:r.height-30-7-n,width:i.width,height:30}:{right:7,top:i.y,width:30,height:i.height},a=$c(t.option);P(["right","top","width","height"],(function(t){"ph"===a[t]&&(a[t]=o[t])}));var s=Zc(a,r);this._location={x:s.x,y:s.y},this._size=[s.width,s.height],this._orient===BB&&this._size.reverse()},e.prototype._positionGroup=function(){var t=this.group,e=this._location,n=this._orient,i=this.dataZoomModel.getFirstTargetAxisModel(),r=i&&i.get("inverse"),o=this._displayables.sliderGroup,a=(this._dataShadowInfo||{}).otherAxisInverse;o.attr(n!==EB||r?n===EB&&r?{scaleY:a?1:-1,scaleX:-1}:n!==BB||r?{scaleY:a?-1:1,scaleX:-1,rotation:Math.PI/2}:{scaleY:a?-1:1,scaleX:1,rotation:Math.PI/2}:{scaleY:a?1:-1,scaleX:1});var s=t.getBoundingRect([o]);t.x=e.x-s.x,t.y=e.y-s.y,t.markRedraw()},e.prototype._getViewExtent=function(){return[0,this._size[0]]},e.prototype._renderBackground=function(){var t=this.dataZoomModel,e=this._size,n=this._displayables.sliderGroup,i=t.get("brushSelect");n.add(new zB({silent:!0,shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:t.get("backgroundColor")},z2:-40}));var r=new zB({shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:"transparent"},z2:0,onclick:B(this._onClickPanel,this)}),o=this.api.getZr();i?(r.on("mousedown",this._onBrushStart,this),r.cursor="crosshair",o.on("mousemove",this._onBrush),o.on("mouseup",this._onBrushEnd)):(o.off("mousemove",this._onBrush),o.off("mouseup",this._onBrushEnd)),n.add(r)},e.prototype._renderDataShadow=function(){var t=this._dataShadowInfo=this._prepareDataShadowInfo();if(this._displayables.dataShadowSegs=[],t){var e=this._size,n=t.series,i=n.getRawData(),r=n.getShadowDim?n.getShadowDim():t.otherDim;if(null!=r){var o=i.getDataExtent(r),a=.3*(o[1]-o[0]);o=[o[0]-a,o[1]+a];var s,l=[0,e[1]],u=[0,e[0]],h=[[e[0],0],[0,0]],c=[],p=u[1]/(i.count()-1),d=0,f=Math.round(i.count()/e[0]);i.each([r],(function(t,e){if(f>0&&e%f)d+=p;else{var n=null==t||isNaN(t)||""===t,i=n?0:Zi(t,o,l,!0);n&&!s&&e?(h.push([h[h.length-1][0],0]),c.push([c[c.length-1][0],0])):!n&&s&&(h.push([d,0]),c.push([d,0])),h.push([d,i]),c.push([d,i]),d+=p,s=n}}));for(var g=this.dataZoomModel,y=0;y<3;y++){var v=m(1===y);this._displayables.sliderGroup.add(v),this._displayables.dataShadowSegs.push(v)}}}function m(t){var e=g.getModel(t?"selectedDataBackground":"dataBackground"),n=new Bi,i=new hu({shape:{points:h},segmentIgnoreThreshold:1,style:e.getModel("areaStyle").getAreaStyle(),silent:!0,z2:-20}),r=new pu({shape:{points:c},segmentIgnoreThreshold:1,style:e.getModel("lineStyle").getLineStyle(),silent:!0,z2:-19});return n.add(i),n.add(r),n}},e.prototype._prepareDataShadowInfo=function(){var t=this.dataZoomModel,e=t.get("showDataShadow");if(!1!==e){var n,i=this.ecModel;return t.eachTargetAxis((function(r,o){P(t.getAxisProxy(r,o).getTargetSeriesModels(),(function(t){if(!(n||!0!==e&&D(VB,t.get("type"))<0)){var a,s=i.getComponent(fN(r),o).axis,l={x:"y",y:"x",radius:"angle",angle:"radius"}[r],u=t.coordinateSystem;null!=l&&u.getOtherAxis&&(a=u.getOtherAxis(s).inverse),l=t.getData().mapDimension(l),n={thisAxis:s,series:t,thisDim:r,otherDim:l,otherAxisInverse:a}}}),this)}),this),n}},e.prototype._renderHandle=function(){var t=this.group,e=this._displayables,n=e.handles=[null,null],i=e.handleLabels=[null,null],r=this._displayables.sliderGroup,o=this._size,a=this.dataZoomModel,s=this.api,l=a.get("borderRadius")||0,u=a.get("brushSelect"),h=e.filler=new zB({silent:u,style:{fill:a.get("fillerColor")},textConfig:{position:"inside"}});r.add(h),r.add(new zB({silent:!0,subPixelOptimize:!0,shape:{x:0,y:0,width:o[0],height:o[1],r:l},style:{stroke:a.get("dataBackgroundColor")||a.get("borderColor"),lineWidth:1,fill:"rgba(0,0,0,0)"}})),P([0,1],(function(e){var o=a.get("handleIcon");!Kg[o]&&o.indexOf("path://")<0&&o.indexOf("image://")<0&&(o="path://"+o);var s=Qg(o,-1,0,2,2,null,!0);s.attr({cursor:HB(this._orient),draggable:!0,drift:B(this._onDragMove,this,e),ondragend:B(this._onDragEnd,this),onmouseover:B(this._showDataInfo,this,!0),onmouseout:B(this._showDataInfo,this,!1),z2:5});var l=s.getBoundingRect(),u=a.get("handleSize");this._handleHeight=ji(u,this._size[1]),this._handleWidth=l.width/l.height*this._handleHeight,s.setStyle(a.getModel("handleStyle").getItemStyle()),s.style.strokeNoScale=!0,s.rectHover=!0,s.ensureState("emphasis").style=a.getModel(["emphasis","handleStyle"]).getItemStyle(),cl(s);var h=a.get("handleColor");null!=h&&(s.style.fill=h),r.add(n[e]=s);var c=a.getModel("textStyle");t.add(i[e]=new ds({silent:!0,invisible:!0,style:bh(c,{x:0,y:0,text:"",verticalAlign:"middle",align:"center",fill:c.getTextColor(),font:c.getFont()}),z2:10}))}),this);var c=h;if(u){var p=ji(a.get("moveHandleSize"),o[1]),d=e.moveHandle=new hs({style:a.getModel("moveHandleStyle").getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:o[1]-.5,height:p}}),f=.8*p,g=e.moveHandleIcon=Qg(a.get("moveHandleIcon"),-f/2,-f/2,f,f,"#fff",!0);g.silent=!0,g.y=o[1]+p/2-.5,d.ensureState("emphasis").style=a.getModel(["emphasis","moveHandleStyle"]).getItemStyle();var y=Math.min(o[1]/2,Math.max(p,10));(c=e.moveZone=new hs({invisible:!0,shape:{y:o[1]-y,height:p+y}})).on("mouseover",(function(){s.enterEmphasis(d)})).on("mouseout",(function(){s.leaveEmphasis(d)})),r.add(d),r.add(g),r.add(c)}c.attr({draggable:!0,cursor:HB(this._orient),drift:B(this._onDragMove,this,"all"),ondragstart:B(this._showDataInfo,this,!0),ondragend:B(this._onDragEnd,this),onmouseover:B(this._showDataInfo,this,!0),onmouseout:B(this._showDataInfo,this,!1)})},e.prototype._resetInterval=function(){var t=this._range=this.dataZoomModel.getPercentRange(),e=this._getViewExtent();this._handleEnds=[Zi(t[0],[0,100],e,!0),Zi(t[1],[0,100],e,!0)]},e.prototype._updateInterval=function(t,e){var n=this.dataZoomModel,i=this._handleEnds,r=this._getViewExtent(),o=n.findRepresentativeAxisProxy().getMinMaxSpan(),a=[0,100];oA(e,i,r,n.get("zoomLock")?"all":t,null!=o.minSpan?Zi(o.minSpan,a,r,!0):null,null!=o.maxSpan?Zi(o.maxSpan,a,r,!0):null);var s=this._range,l=this._range=Ki([Zi(i[0],r,a,!0),Zi(i[1],r,a,!0)]);return!s||s[0]!==l[0]||s[1]!==l[1]},e.prototype._updateView=function(t){var e=this._displayables,n=this._handleEnds,i=Ki(n.slice()),r=this._size;P([0,1],(function(t){var i=e.handles[t],o=this._handleHeight;i.attr({scaleX:o/2,scaleY:o/2,x:n[t]+(t?-1:1),y:r[1]/2-o/2})}),this),e.filler.setShape({x:i[0],y:0,width:i[1]-i[0],height:r[1]});var o={x:i[0],width:i[1]-i[0]};e.moveHandle&&(e.moveHandle.setShape(o),e.moveZone.setShape(o),e.moveZone.getBoundingRect(),e.moveHandleIcon&&e.moveHandleIcon.attr("x",o.x+o.width/2));for(var a=e.dataShadowSegs,s=[0,i[0],i[1],r[0]],l=0;le[0]||n[1]<0||n[1]>e[1])){var i=this._handleEnds,r=(i[0]+i[1])/2,o=this._updateInterval("all",n[0]-r);this._updateView(),o&&this._dispatchZoomAction(!1)}},e.prototype._onBrushStart=function(t){var e=t.offsetX,n=t.offsetY;this._brushStart=new si(e,n),this._brushing=!0,this._brushStartTime=+new Date},e.prototype._onBrushEnd=function(t){if(this._brushing){var e=this._displayables.brushRect;if(this._brushing=!1,e){e.attr("ignore",!0);var n=e.shape;if(!(+new Date-this._brushStartTime<200&&Math.abs(n.width)<5)){var i=this._getViewExtent(),r=[0,100];this._range=Ki([Zi(n.x,i,r,!0),Zi(n.x+n.width,i,r,!0)]),this._handleEnds=[n.x,n.x+n.width],this._updateView(),this._dispatchZoomAction(!1)}}}},e.prototype._onBrush=function(t){this._brushing&&(ee(t.event),this._updateBrushRect(t.offsetX,t.offsetY))},e.prototype._updateBrushRect=function(t,e){var n=this._displayables,i=this.dataZoomModel,r=n.brushRect;r||(r=n.brushRect=new zB({silent:!0,style:i.getModel("brushStyle").getItemStyle()}),n.sliderGroup.add(r)),r.attr("ignore",!1);var o=this._brushStart,a=this._displayables.sliderGroup,s=a.transformCoordToLocal(t,e),l=a.transformCoordToLocal(o.x,o.y),u=this._size;s[0]=Math.max(Math.min(u[0],s[0]),0),r.setShape({x:l[0],y:0,width:s[0]-l[0],height:u[1]})},e.prototype._dispatchZoomAction=function(t){var e=this._range;this.api.dispatchAction({type:"dataZoom",from:this.uid,dataZoomId:this.dataZoomModel.id,animation:t?GB:null,start:e[0],end:e[1]})},e.prototype._findCoordRect=function(){var t,e=yN(this.dataZoomModel).infoList;if(!t&&e.length){var n=e[0].model.coordinateSystem;t=n.getRect&&n.getRect()}if(!t){var i=this.api.getWidth(),r=this.api.getHeight();t={x:.2*i,y:.2*r,width:.6*i,height:.6*r}}return t},e.type="dataZoom.slider",e}(bN);function HB(t){return"vertical"===t?"ns-resize":"ew-resize"}function WB(t){t.registerComponentModel(NB),t.registerComponentView(FB),DN(t)}var UB=function(t,e,n){var i=w((XB[t]||{})[e]);return n&&G(i)?i[i.length-1]:i},XB={color:{active:["#006edd","#e0ffff"],inactive:["rgba(0,0,0,0)"]},colorHue:{active:[0,360],inactive:[0,0]},colorSaturation:{active:[.3,1],inactive:[0,0]},colorLightness:{active:[.9,.5],inactive:[0,0]},colorAlpha:{active:[.3,1],inactive:[0,0]},opacity:{active:[.3,1],inactive:[0,0]},symbol:{active:["circle","roundRect","diamond"],inactive:["none"]},symbolSize:{active:[10,50],inactive:[0,0]}},YB=QT.mapVisual,ZB=QT.eachVisual,jB=G,qB=P,KB=Ki,$B=Zi,JB=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.stateList=["inRange","outOfRange"],n.replacableOptionKeys=["inRange","outOfRange","target","controller","color"],n.layoutMode={type:"box",ignoreSize:!0},n.dataBound=[-1/0,1/0],n.targetVisuals={},n.controllerVisuals={},n}return n(e,t),e.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n)},e.prototype.optionUpdated=function(t,e){var n=this.option;a.canvasSupported||(n.realtime=!1),!e&&Zz(n,t,this.replacableOptionKeys),this.textStyleModel=this.getModel("textStyle"),this.resetItemSize(),this.completeVisualOption()},e.prototype.resetVisual=function(t){var e=this.stateList;t=B(t,this),this.controllerVisuals=Yz(this.option.controller,e,t),this.targetVisuals=Yz(this.option.target,e,t)},e.prototype.getItemSymbol=function(){return null},e.prototype.getTargetSeriesIndices=function(){var t=this.option.seriesIndex,e=[];return null==t||"all"===t?this.ecModel.eachSeries((function(t,n){e.push(n)})):e=br(t),e},e.prototype.eachTargetSeries=function(t,e){P(this.getTargetSeriesIndices(),(function(n){var i=this.ecModel.getSeriesByIndex(n);i&&t.call(e,i)}),this)},e.prototype.isTargetSeries=function(t){var e=!1;return this.eachTargetSeries((function(n){n===t&&(e=!0)})),e},e.prototype.formatValueText=function(t,e,n){var i,r=this.option,o=r.precision,a=this.dataBound,s=r.formatter;n=n||["<",">"],G(t)&&(t=t.slice(),i=!0);var l=e?t:i?[u(t[0]),u(t[1])]:u(t);return H(s)?s.replace("{value}",i?l[0]:l).replace("{value2}",i?l[1]:l):F(s)?i?s(t[0],t[1]):s(t):i?t[0]===a[0]?n[0]+" "+l[1]:t[1]===a[1]?n[1]+" "+l[0]:l[0]+" - "+l[1]:l;function u(t){return t===a[0]?"min":t===a[1]?"max":(+t).toFixed(Math.min(o,20))}},e.prototype.resetExtent=function(){var t=this.option,e=KB([t.min,t.max]);this._dataExtent=e},e.prototype.getDataDimensionIndex=function(t){var e=this.option.dimension;if(null!=e)return t.getDimensionIndex(e);for(var n=t.dimensions,i=n.length-1;i>=0;i--){var r=n[i],o=t.getDimensionInfo(r);if(!o.isCalculationCoord)return o.storeDimIndex}},e.prototype.getExtent=function(){return this._dataExtent.slice()},e.prototype.completeVisualOption=function(){var t=this.ecModel,e=this.option,n={inRange:e.inRange,outOfRange:e.outOfRange},i=e.target||(e.target={}),r=e.controller||(e.controller={});S(i,n),S(r,n);var o=this.isCategory();function a(n){jB(e.color)&&!n.inRange&&(n.inRange={color:e.color.slice().reverse()}),n.inRange=n.inRange||{color:t.get("gradientColor")}}a.call(this,i),a.call(this,r),function(t,e,n){var i=t[e],r=t[n];i&&!r&&(r=t[n]={},qB(i,(function(t,e){if(QT.isValidType(e)){var n=UB(e,"inactive",o);null!=n&&(r[e]=n,"color"!==e||r.hasOwnProperty("opacity")||r.hasOwnProperty("colorAlpha")||(r.opacity=[0,0]))}})))}.call(this,i,"inRange","outOfRange"),function(t){var e=(t.inRange||{}).symbol||(t.outOfRange||{}).symbol,n=(t.inRange||{}).symbolSize||(t.outOfRange||{}).symbolSize,i=this.get("inactiveColor"),r=this.getItemSymbol()||"roundRect";qB(this.stateList,(function(a){var s=this.itemSize,l=t[a];l||(l=t[a]={color:o?i:[i]}),null==l.symbol&&(l.symbol=e&&w(e)||(o?r:[r])),null==l.symbolSize&&(l.symbolSize=n&&w(n)||(o?s[0]:[s[0],s[0]])),l.symbol=YB(l.symbol,(function(t){return"none"===t?r:t}));var u=l.symbolSize;if(null!=u){var h=-1/0;ZB(u,(function(t){t>h&&(h=t)})),l.symbolSize=YB(u,(function(t){return $B(t,[0,h],[0,s[0]],!0)}))}}),this)}.call(this,r)},e.prototype.resetItemSize=function(){this.itemSize=[parseFloat(this.get("itemWidth")),parseFloat(this.get("itemHeight"))]},e.prototype.isCategory=function(){return!!this.option.categories},e.prototype.setSelected=function(t){},e.prototype.getSelected=function(){return null},e.prototype.getValueState=function(t){return null},e.prototype.getVisualMeta=function(t){return null},e.type="visualMap",e.dependencies=["series"],e.defaultOption={show:!0,zlevel:0,z:4,seriesIndex:"all",min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:"vertical",backgroundColor:"rgba(0,0,0,0)",borderColor:"#ccc",contentColor:"#5793f3",inactiveColor:"#aaa",borderWidth:0,padding:5,textGap:10,precision:0,textStyle:{color:"#333"}},e}(tp),QB=[20,140],tV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.optionUpdated=function(e,n){t.prototype.optionUpdated.apply(this,arguments),this.resetExtent(),this.resetVisual((function(t){t.mappingMethod="linear",t.dataExtent=this.getExtent()})),this._resetRange()},e.prototype.resetItemSize=function(){t.prototype.resetItemSize.apply(this,arguments);var e=this.itemSize;(null==e[0]||isNaN(e[0]))&&(e[0]=QB[0]),(null==e[1]||isNaN(e[1]))&&(e[1]=QB[1])},e.prototype._resetRange=function(){var t=this.getExtent(),e=this.option.range;!e||e.auto?(t.auto=1,this.option.range=t):G(e)&&(e[0]>e[1]&&e.reverse(),e[0]=Math.max(e[0],t[0]),e[1]=Math.min(e[1],t[1]))},e.prototype.completeVisualOption=function(){t.prototype.completeVisualOption.apply(this,arguments),P(this.stateList,(function(t){var e=this.option.controller[t].symbolSize;e&&e[0]!==e[1]&&(e[0]=e[1]/3)}),this)},e.prototype.setSelected=function(t){this.option.range=t.slice(),this._resetRange()},e.prototype.getSelected=function(){var t=this.getExtent(),e=Ki((this.get("range")||[]).slice());return e[0]>t[1]&&(e[0]=t[1]),e[1]>t[1]&&(e[1]=t[1]),e[0]=n[1]||t<=e[1])?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var e=[];return this.eachTargetSeries((function(n){var i=[],r=n.getData();r.each(this.getDataDimensionIndex(r),(function(e,n){t[0]<=e&&e<=t[1]&&i.push(n)}),this),e.push({seriesId:n.id,dataIndex:i})}),this),e},e.prototype.getVisualMeta=function(t){var e=eV(this,"outOfRange",this.getExtent()),n=eV(this,"inRange",this.option.range.slice()),i=[];function r(e,n){i.push({value:e,color:t(e,n)})}for(var o=0,a=0,s=n.length,l=e.length;at[1])break;n.push({color:this.getControllerVisual(o,"color",e),offset:r/100})}return n.push({color:this.getControllerVisual(t[1],"color",e),offset:1}),n},e.prototype._createBarPoints=function(t,e){var n=this.visualMapModel.itemSize;return[[n[0]-e[0],t[0]],[n[0],t[0]],[n[0],t[1]],[n[0]-e[1],t[1]]]},e.prototype._createBarGroup=function(t){var e=this._orient,n=this.visualMapModel.get("inverse");return new Bi("horizontal"!==e||n?"horizontal"===e&&n?{scaleX:"bottom"===t?-1:1,rotation:-Math.PI/2}:"vertical"!==e||n?{scaleX:"left"===t?1:-1}:{scaleX:"left"===t?1:-1,scaleY:-1}:{scaleX:"bottom"===t?1:-1,rotation:Math.PI/2})},e.prototype._updateHandle=function(t,e){if(this._useHandle){var n=this._shapes,i=this.visualMapModel,r=n.handleThumbs,o=n.handleLabels,a=i.itemSize,s=i.getExtent();sV([0,1],(function(l){var u=r[l];u.setStyle("fill",e.handlesColor[l]),u.y=t[l];var h=aV(t[l],[0,a[1]],s,!0),c=this.getControllerVisual(h,"symbolSize");u.scaleX=u.scaleY=c/a[0],u.x=a[0]-c/2;var p=rh(n.handleLabelPoints[l],ih(u,this.group));o[l].setStyle({x:p[0],y:p[1],text:i.formatValueText(this._dataInterval[l]),verticalAlign:"middle",align:"vertical"===this._orient?this._applyTransform("left",n.mainGroup):"center"})}),this)}},e.prototype._showIndicator=function(t,e,n,i){var r=this.visualMapModel,o=r.getExtent(),a=r.itemSize,s=[0,a[1]],l=this._shapes,u=l.indicator;if(u){u.attr("invisible",!1);var h=this.getControllerVisual(t,"color",{convertOpacityToAlpha:!0}),c=this.getControllerVisual(t,"symbolSize"),p=aV(t,o,s,!0),d=a[0]-c/2,f={x:u.x,y:u.y};u.y=p,u.x=d;var g=rh(l.indicatorLabelPoint,ih(u,this.group)),y=l.indicatorLabel;y.attr("invisible",!1);var v=this._applyTransform("left",l.mainGroup),m="horizontal"===this._orient;y.setStyle({text:(n||"")+r.formatValueText(e),verticalAlign:m?v:"middle",align:m?"center":v});var _={x:d,y:p,style:{fill:h}},x={style:{x:g[0],y:g[1]}};if(r.ecModel.isAnimationEnabled()&&!this._firstShowIndicator){var b={duration:100,easing:"cubicInOut",additive:!0};u.x=f.x,u.y=f.y,u.animateTo(_,b),y.animateTo(x,b)}else u.attr(_),y.attr(x);this._firstShowIndicator=!1;var w=this._shapes.handleLabels;if(w)for(var S=0;Sr[1]&&(u[1]=1/0),e&&(u[0]===-1/0?this._showIndicator(l,u[1],"< ",a):u[1]===1/0?this._showIndicator(l,u[0],"> ",a):this._showIndicator(l,l,"≈ ",a));var h=this._hoverLinkDataIndices,c=[];(e||pV(n))&&(c=this._hoverLinkDataIndices=n.findTargetDataIndices(u));var p=function(t,e){var n={},i={};return r(t||[],n),r(e||[],i,n),[o(n),o(i)];function r(t,e,n){for(var i=0,r=t.length;i=0&&(r.dimension=o,i.push(r))}})),t.getData().setVisual("visualMeta",i)}}];function vV(t,e,n,i){for(var r=e.targetVisuals[i],o=QT.prepareVisualTypes(r),a={color:Eg(t.getData(),"color")},s=0,l=o.length;s0:t.splitNumber>0)&&!t.calculable?"piecewise":"continuous"})),t.registerAction(fV,gV),P(yV,(function(e){t.registerVisual(t.PRIORITY.VISUAL.COMPONENT,e)})),t.registerPreprocessor(_V))}function SV(t){t.registerComponentModel(tV),t.registerComponentView(hV),wV(t)}var MV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n._pieceList=[],n}return n(e,t),e.prototype.optionUpdated=function(e,n){t.prototype.optionUpdated.apply(this,arguments),this.resetExtent();var i=this._mode=this._determineMode();this._pieceList=[],IV[this._mode].call(this,this._pieceList),this._resetSelected(e,n);var r=this.option.categories;this.resetVisual((function(t,e){"categories"===i?(t.mappingMethod="category",t.categories=w(r)):(t.dataExtent=this.getExtent(),t.mappingMethod="piecewise",t.pieceList=O(this._pieceList,(function(t){return t=w(t),"inRange"!==e&&(t.visual=null),t})))}))},e.prototype.completeVisualOption=function(){var e=this.option,n={},i=QT.listVisualTypes(),r=this.isCategory();function o(t,e,n){return t&&t[e]&&t[e].hasOwnProperty(n)}P(e.pieces,(function(t){P(i,(function(e){t.hasOwnProperty(e)&&(n[e]=1)}))})),P(n,(function(t,n){var i=!1;P(this.stateList,(function(t){i=i||o(e,t,n)||o(e.target,t,n)}),this),!i&&P(this.stateList,(function(t){(e[t]||(e[t]={}))[n]=UB(n,"inRange"===t?"active":"inactive",r)}))}),this),t.prototype.completeVisualOption.apply(this,arguments)},e.prototype._resetSelected=function(t,e){var n=this.option,i=this._pieceList,r=(e?n:t).selected||{};if(n.selected=r,P(i,(function(t,e){var n=this.getSelectedMapKey(t);r.hasOwnProperty(n)||(r[n]=!0)}),this),"single"===n.selectedMode){var o=!1;P(i,(function(t,e){var n=this.getSelectedMapKey(t);r[n]&&(o?r[n]=!1:o=!0)}),this)}},e.prototype.getItemSymbol=function(){return this.get("itemSymbol")},e.prototype.getSelectedMapKey=function(t){return"categories"===this._mode?t.value+"":t.index+""},e.prototype.getPieceList=function(){return this._pieceList},e.prototype._determineMode=function(){var t=this.option;return t.pieces&&t.pieces.length>0?"pieces":this.option.categories?"categories":"splitNumber"},e.prototype.setSelected=function(t){this.option.selected=w(t)},e.prototype.getValueState=function(t){var e=QT.findPieceIndex(t,this._pieceList);return null!=e&&this.option.selected[this.getSelectedMapKey(this._pieceList[e])]?"inRange":"outOfRange"},e.prototype.findTargetDataIndices=function(t){var e=[],n=this._pieceList;return this.eachTargetSeries((function(i){var r=[],o=i.getData();o.each(this.getDataDimensionIndex(o),(function(e,i){QT.findPieceIndex(e,n)===t&&r.push(i)}),this),e.push({seriesId:i.id,dataIndex:r})}),this),e},e.prototype.getRepresentValue=function(t){var e;if(this.isCategory())e=t.value;else if(null!=t.value)e=t.value;else{var n=t.interval||[];e=n[0]===-1/0&&n[1]===1/0?0:(n[0]+n[1])/2}return e},e.prototype.getVisualMeta=function(t){if(!this.isCategory()){var e=[],n=["",""],i=this,r=this._pieceList.slice();if(r.length){var o=r[0].interval[0];o!==-1/0&&r.unshift({interval:[-1/0,o]}),(o=r[r.length-1].interval[1])!==1/0&&r.push({interval:[o,1/0]})}else r.push({interval:[-1/0,1/0]});var a=-1/0;return P(r,(function(t){var e=t.interval;e&&(e[0]>a&&s([a,e[0]],"outOfRange"),s(e.slice()),a=e[1])}),this),{stops:e,outerColors:n}}function s(r,o){var a=i.getRepresentValue({interval:r});o||(o=i.getValueState(a));var s=t(a,o);r[0]===-1/0?n[0]=s:r[1]===1/0?n[1]=s:e.push({value:r[0],color:s},{value:r[1],color:s})}},e.type="visualMap.piecewise",e.defaultOption=Xh(JB.defaultOption,{selected:null,minOpen:!1,maxOpen:!1,align:"auto",itemWidth:20,itemHeight:14,itemSymbol:"roundRect",pieces:null,categories:null,splitNumber:5,selectedMode:"multiple",itemGap:10,hoverLink:!0}),e}(JB),IV={splitNumber:function(t){var e=this.option,n=Math.min(e.precision,20),i=this.getExtent(),r=e.splitNumber;r=Math.max(parseInt(r,10),1),e.splitNumber=r;for(var o=(i[1]-i[0])/r;+o.toFixed(n)!==o&&n<5;)n++;e.precision=n,o=+o.toFixed(n),e.minOpen&&t.push({interval:[-1/0,i[0]],close:[0,0]});for(var a=0,s=i[0];a","≥"][e[0]]];t.text=t.text||this.formatValueText(null!=t.value?t.value:t.interval,!1,n)}),this)}};function TV(t,e){var n=t.inverse;("vertical"===t.orient?!n:n)&&e.reverse()}var CV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n}return n(e,t),e.prototype.doRender=function(){var t=this.group;t.removeAll();var e=this.visualMapModel,n=e.get("textGap"),i=e.textStyleModel,r=i.getFont(),o=i.getTextColor(),a=this._getItemAlign(),s=e.itemSize,l=this._getViewData(),u=l.endsText,h=Q(e.get("showLabel",!0),!u);u&&this._renderEndsText(t,u[0],s,h,a),P(l.viewPieceList,(function(i){var l=i.piece,u=new Bi;u.onclick=B(this._onItemClick,this,l),this._enableHoverLink(u,i.indexInModelPieceList);var c=e.getRepresentValue(l);if(this._createItemSymbol(u,c,[0,0,s[0],s[1]]),h){var p=this.visualMapModel.getValueState(c);u.add(new ds({style:{x:"right"===a?-n:s[0]+n,y:s[1]/2,text:l.text,verticalAlign:"middle",align:a,font:r,fill:o,opacity:"outOfRange"===p?.5:1}}))}t.add(u)}),this),u&&this._renderEndsText(t,u[1],s,h,a),Yc(e.get("orient"),t,e.get("itemGap")),this.renderBackground(t),this.positionGroup(t)},e.prototype._enableHoverLink=function(t,e){var n=this;t.on("mouseover",(function(){return i("highlight")})).on("mouseout",(function(){return i("downplay")}));var i=function(t){var i=n.visualMapModel;i.option.hoverLink&&n.api.dispatchAction({type:t,batch:oV(i.findTargetDataIndices(e),i)})}},e.prototype._getItemAlign=function(){var t=this.visualMapModel,e=t.option;if("vertical"===e.orient)return rV(t,this.api,t.itemSize);var n=e.align;return n&&"auto"!==n||(n="left"),n},e.prototype._renderEndsText=function(t,e,n,i,r){if(e){var o=new Bi,a=this.visualMapModel.textStyleModel;o.add(new ds({style:{x:i?"right"===r?n[0]:0:n[0]/2,y:n[1]/2,verticalAlign:"middle",align:i?r:"center",text:e,font:a.getFont(),fill:a.getTextColor()}})),t.add(o)}},e.prototype._getViewData=function(){var t=this.visualMapModel,e=O(t.getPieceList(),(function(t,e){return{piece:t,indexInModelPieceList:e}})),n=t.get("text"),i=t.get("orient"),r=t.get("inverse");return("horizontal"===i?r:!r)?e.reverse():n&&(n=n.slice().reverse()),{viewPieceList:e,endsText:n}},e.prototype._createItemSymbol=function(t,e,n){t.add(Qg(this.getControllerVisual(e,"symbol"),n[0],n[1],n[2],n[3],this.getControllerVisual(e,"color")))},e.prototype._onItemClick=function(t){var e=this.visualMapModel,n=e.option,i=w(n.selected),r=e.getSelectedMapKey(t);"single"===n.selectedMode?(i[r]=!0,P(i,(function(t,e){i[e]=e===r}))):i[r]=!i[r],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:i})},e.type="visualMap.piecewise",e}(nV);function DV(t){t.registerComponentModel(MV),t.registerComponentView(CV),wV(t)}var AV={label:{enabled:!0},decal:{show:!1}},kV=Or(),LV={};function PV(t,e){var n=t.getModel("aria");if(n.get("enabled")){var i=w(AV);S(i.label,t.getLocaleModel().get("aria"),!1),S(n.option,i,!1),function(){if(n.getModel("decal").get("show")){var e=ht();t.eachSeries((function(t){if(!t.isColorBySeries()){var n=e.get(t.type);n||(n={},e.set(t.type,n)),kV(t).scope=n}})),t.eachRawSeries((function(e){if(!t.isSeriesFiltered(e))if("function"!=typeof e.enableAriaDecal){var n=e.getData();if(e.isColorBySeries()){var i=Ap(e.ecModel,e.name,LV,t.getSeriesCount()),r=n.getVisual("decal");n.setVisual("decal",u(r,i))}else{var o=e.getRawData(),a={},s=kV(e).scope;n.each((function(t){var e=n.getRawIndex(t);a[e]=t}));var l=o.count();o.each((function(t){var i=a[t],r=o.getName(t)||t+"",h=Ap(e.ecModel,r,s,l),c=n.getItemVisual(i,"decal");n.setItemVisual(i,"decal",u(c,h))}))}}else e.enableAriaDecal();function u(t,e){var n=t?I(I({},e),t):e;return n.dirty=!0,n}}))}}(),function(){var i=t.getLocaleModel().get("aria"),o=n.getModel("label");if(o.option=T(o.option,i),!o.get("enabled"))return;var a=e.getZr().dom;if(o.get("description"))return void a.setAttribute("aria-label",o.get("description"));var s,l=t.getSeriesCount(),u=o.get(["data","maxCount"])||10,h=o.get(["series","maxCount"])||10,c=Math.min(l,h);if(l<1)return;var p=function(){var e=t.get("title");e&&e.length&&(e=e[0]);return e&&e.text}();if(p){var d=o.get(["general","withTitle"]);s=r(d,{title:p})}else s=o.get(["general","withoutTitle"]);var f=[],g=l>1?o.get(["series","multiple","prefix"]):o.get(["series","single","prefix"]);s+=r(g,{seriesCount:l}),t.eachSeries((function(e,n){if(n1?o.get(["series","multiple",a]):o.get(["series","single",a]),{seriesId:e.seriesIndex,seriesName:e.get("name"),seriesType:(_=e.subType,t.getLocaleModel().get(["series","typeNames"])[_]||"自定义图")});var s=e.getData();if(s.count()>u)i+=r(o.get(["data","partialData"]),{displayCnt:u});else i+=o.get(["data","allData"]);for(var h=[],p=0;p":"gt",">=":"gte","=":"eq","!=":"ne","<>":"ne"},NV=function(){function t(t){if(null==(this._condVal=H(t)?new RegExp(t):$(t)?t:null)){var e="";0,mr(e)}}return t.prototype.evaluate=function(t){var e=typeof t;return"string"===e?this._condVal.test(t):"number"===e&&this._condVal.test(t+"")},t}(),zV=function(){function t(){}return t.prototype.evaluate=function(){return this.value},t}(),EV=function(){function t(){}return t.prototype.evaluate=function(){for(var t=this.children,e=0;e2&&l.push(e),e=[t,n]}function f(t,n,i,r){KV(t,i)&&KV(n,r)||e.push(t,n,i,r,i,r)}function g(t,n,i,r,o,a){var s=Math.abs(n-t),l=4*Math.tan(s/4)/3,u=nM:C2&&l.push(e),l}function JV(t,e,n,i,r,o,a,s,l,u){if(KV(t,n)&&KV(e,i)&&KV(r,a)&&KV(o,s))l.push(a,s);else{var h=2/u,c=h*h,p=a-t,d=s-e,f=Math.sqrt(p*p+d*d);p/=f,d/=f;var g=n-t,y=i-e,v=r-a,m=o-s,_=g*g+y*y,x=v*v+m*m;if(_=0&&x-w*w=0)l.push(a,s);else{var S=[],M=[];Wo(t,n,r,a,.5,S),Wo(e,i,o,s,.5,M),JV(S[0],M[0],S[1],M[1],S[2],M[2],S[3],M[3],l,u),JV(S[4],M[4],S[5],M[5],S[6],M[6],S[7],M[7],l,u)}}}}function QV(t,e,n){var i=t[e],r=t[1-e],o=Math.abs(i/r),a=Math.ceil(Math.sqrt(o*n)),s=Math.floor(n/a);0===s&&(s=1,a=n);for(var l=[],u=0;u0)for(u=0;uMath.abs(u),c=QV([l,u],h?0:1,e),p=(h?s:u)/c.length,d=0;d1?null:new si(d*l+t,d*u+e)}function iG(t,e,n){var i=new si;si.sub(i,n,e),i.normalize();var r=new si;return si.sub(r,t,e),r.dot(i)}function rG(t,e){var n=t[t.length-1];n&&n[0]===e[0]&&n[1]===e[1]||t.push(e)}function oG(t){var e=t.points,n=[],i=[];aa(e,n,i);var r=new yi(n[0],n[1],i[0]-n[0],i[1]-n[1]),o=r.width,a=r.height,s=r.x,l=r.y,u=new si,h=new si;return o>a?(u.x=h.x=s+o/2,u.y=l,h.y=l+a):(u.y=h.y=l+a/2,u.x=s,h.x=s+o),function(t,e,n){for(var i=t.length,r=[],o=0;or,a=QV([i,r],o?0:1,e),s=o?"width":"height",l=o?"height":"width",u=o?"x":"y",h=o?"y":"x",c=t[s]/a.length,p=0;p0)for(var b=i/n,w=-i/2;w<=i/2;w+=b){var S=Math.sin(w),M=Math.cos(w),I=0;for(_=0;_0;l/=2){var u=0,h=0;(t&l)>0&&(u=1),(e&l)>0&&(h=1),s+=l*l*(3*u^h),0===h&&(1===u&&(t=l-1-t,e=l-1-e),a=t,t=e,e=a)}return s}function wG(t){var e=1/0,n=1/0,i=-1/0,r=-1/0,o=O(t,(function(t){var o=t.getBoundingRect(),a=t.getComputedTransform(),s=o.x+o.width/2+(a?a[4]:0),l=o.y+o.height/2+(a?a[5]:0);return e=Math.min(s,e),n=Math.min(l,n),i=Math.max(s,i),r=Math.max(l,r),[s,l]}));return O(o,(function(o,a){return{cp:o,z:bG(o[0],o[1],e,n,i,r),path:t[a]}})).sort((function(t,e){return t.z-e.z})).map((function(t){return t.path}))}function SG(t){return lG(t.path,t.count)}function MG(t){return G(t[0])}function IG(t,e){for(var n=[],i=t.length,r=0;r=0;r--)if(!n[r].many.length){var l=n[s].many;if(l.length<=1){if(!s)return n;s=0}o=l.length;var u=Math.ceil(o/2);n[r].many=l.slice(u,o),n[s].many=l.slice(0,u),s++}return n}var TG={clone:function(t){for(var e=[],n=1-Math.pow(1-t.path.style.opacity,1/t.count),i=0;i0){var s,l,u=i.getModel("universalTransition").get("delay"),h=Object.assign({setToFinal:!0},a);MG(t)&&(s=t,l=e),MG(e)&&(s=e,l=t);for(var c=s?s===t:t.length>e.length,p=s?IG(l,s):IG(c?e:t,[c?t:e]),d=0,f=0;f1e4))for(var i=n.getIndices(),r=function(t){for(var e=t.dimensions,n=0;n0&&i.group.traverse((function(t){t instanceof Ja&&!t.animators.length&&t.animateFrom({style:{opacity:0}},r)}))}))}function zG(t){var e=t.getModel("universalTransition").get("seriesKey");return e||t.id}function EG(t){return G(t)?t.sort().join(","):t}function BG(t){if(t.hostModel)return t.hostModel.getModel("universalTransition").get("divideShape")}function VG(t,e){for(var n=0;n=0&&r.push({data:e.oldData[n],divide:BG(e.oldData[n]),dim:t.dimension})})),P(br(t.to),(function(t){var e=VG(n.updatedSeries,t);if(e>=0){var i=n.updatedSeries[e].getData();o.push({data:i,divide:BG(i),dim:t.dimension})}})),r.length>0&&o.length>0&&NG(r,o,i)}(t,i,n,e)}));else{var o=function(t,e){var n=ht(),i=ht(),r=ht();return P(t.oldSeries,(function(e,n){var o=t.oldData[n],a=zG(e),s=EG(a);i.set(s,o),G(a)&&P(a,(function(t){r.set(t,{data:o,key:s})}))})),P(e.updatedSeries,(function(t){if(t.isUniversalTransitionEnabled()&&t.isAnimationEnabled()){var e=t.getData(),o=zG(t),a=EG(o),s=i.get(a);if(s)n.set(a,{oldSeries:[{divide:BG(s),data:s}],newSeries:[{divide:BG(e),data:e}]});else if(G(o)){var l=[];P(o,(function(t){var e=i.get(t);e&&l.push({divide:BG(e),data:e})})),l.length&&n.set(a,{oldSeries:l,newSeries:[{data:e,divide:BG(e)}]})}else{var u=r.get(o);if(u){var h=n.get(u.key);h||(h={oldSeries:[{data:u.data,divide:BG(u.data)}],newSeries:[]},n.set(u.key,h)),h.newSeries.push({data:e,divide:BG(e)})}}}})),n}(i,n);P(o.keys(),(function(t){var n=o.get(t);NG(n.oldSeries,n.newSeries,e)}))}P(n.updatedSeries,(function(t){t.__universalTransitionEnabled&&(t.__universalTransitionEnabled=!1)}))}for(var a=t.getSeries(),s=i.oldSeries=[],l=i.oldData=[],u=0;u