From f09ebd6767de7b74184702569764b9b9a37204dd Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 15 May 2026 20:52:09 +0530 Subject: [PATCH 1/8] [feature] Add netjsongraph static files #517 Added netjsongraph.echarts.min.js, netjsongraph.css, and netjsongraph-theme.css to the central static directory. Selected the unbundled ECharts variant to prevent redundant Leaflet JS loading, ensuring optimal compatibility with topology and monitoring modules. Fixes #517 --- .../netjsongraph/css/netjsongraph-theme.css | 89 ++++ .../static/netjsongraph/css/netjsongraph.css | 382 ++++++++++++++++++ .../js/netjsongraph.echarts.min.js | 1 + 3 files changed, 472 insertions(+) create mode 100755 openwisp_utils/static/netjsongraph/css/netjsongraph-theme.css create mode 100755 openwisp_utils/static/netjsongraph/css/netjsongraph.css create mode 100644 openwisp_utils/static/netjsongraph/js/netjsongraph.echarts.min.js diff --git a/openwisp_utils/static/netjsongraph/css/netjsongraph-theme.css b/openwisp_utils/static/netjsongraph/css/netjsongraph-theme.css new file mode 100755 index 000000000..d04d01bce --- /dev/null +++ b/openwisp_utils/static/netjsongraph/css/netjsongraph-theme.css @@ -0,0 +1,89 @@ +.njg-container .leaflet-control-zoom-in, +.njg-container .leaflet-control-zoom-out { + pointer-events: auto; + opacity: 1; + cursor: pointer; + background: rgba(217, 79, 52, 0.85) !important; + color: #fff !important; +} + +.njg-container .leaflet-control-zoom-in.leaflet-disabled, +.njg-container .leaflet-control-zoom-out.leaflet-disabled { + opacity: 0.7; + cursor: default; +} + +.njg-container .leaflet-control-layers { + background: rgba(217, 79, 52, 0.85) !important; + color: #fff !important; +} + +.njg-container .switch-wrap { + color: #fff; +} + +.njg-container .switch-wrap label { + border: 1px solid #dfdfdf; + background: #ffffff; +} + +.njg-container .switch-wrap label::before { + box-shadow: 0 1px 3px rgba(0, 0, 0, 1); + background-color: #fff; +} + +.njg-container .switch-wrap input[type="checkbox"]:checked + label { + background: grey; +} + +.njg-container .njg-date { + color: #fff; +} + +.njg-container .njg-selectIcon { + background: rgba(217, 79, 52, 0.85); + color: #ffffff; +} + +.njg-container .njg-searchBtn { + background-color: white; +} + +.njg-container .njg-sideBar { + background-color: #fff; +} + +.njg-container .sideBarHandle { + background: rgba(217, 79, 52, 0.85); +} + +.njg-container .sideBarHandle::before { + color: #fff; +} + +.njg-container .njg-metaData, +.njg-container .njg-infoContainer { + background-color: inherit; +} + +.njg-container .njg-tooltip { + background: #fff !important; + border: none !important; +} + +.njg-container .njg-tooltip-key, +.njg-container .njg-tooltip-value { + color: #000; +} + +.njg-container .marker-cluster div { + color: #fff; + background-color: rgba(21, 102, 169, 0.8) !important; +} + +@media only screen and (max-width: 850px) { + .njg-container .njg-sideBar { + background: rgba(255, 255, 255, 0.96); + color: #000; + } +} diff --git a/openwisp_utils/static/netjsongraph/css/netjsongraph.css b/openwisp_utils/static/netjsongraph/css/netjsongraph.css new file mode 100755 index 000000000..951d9ec36 --- /dev/null +++ b/openwisp_utils/static/netjsongraph/css/netjsongraph.css @@ -0,0 +1,382 @@ +.njg-container * { + margin: 0; + padding: 0; + outline: none; + box-sizing: border-box; +} + +.njg-container { + width: 100%; + height: 100%; + overflow: hidden; + font-family: sans-serif; + font-size: 14px; + margin: 0; + padding: 0; +} + +.njg-container h3 { + display: block; + font-size: 1.17em; + margin-block-start: 1em; + margin-block-end: 1em; + margin-inline-start: 0; + margin-inline-end: 0; + font-weight: bold; +} + +.njg-container p { + display: block; + margin-block-start: 1em; + margin-block-end: 1em; + margin-inline-start: 0; + margin-inline-end: 0; +} + +.njg-relativePosition { + position: relative; + left: 0; + right: 0; +} + +.njg-chartContainer { + width: 100%; + height: 100%; + overflow: hidden; + z-index: 0; + overflow-y: auto; +} + +.njg-loadingContainer { + position: fixed; + left: 0; + top: 0; + height: 100%; + width: 100%; + z-index: 100; +} + +.loadingElement { + position: absolute; + left: 50%; + top: 50%; + transform: translate(-50%, -50%); + width: 100px; + height: 100px; + text-align: center; +} +.loadingSprite { + margin: 0 auto; + width: 40px; + height: 40px; + background: url("./loading.gif") center no-repeat; + background-size: contain; +} + +.loadingTip { + font-size: 18px; + font-weight: bold; + text-align: center; +} + +.njg-container .leaflet-control-zoom { + top: 5px; + border: 0 !important; +} + +.njg-container .leaflet-control-zoom-in { + border-top-left-radius: 5px !important; + border-top-right-radius: 5px !important; +} + +.njg-container .leaflet-control-zoom-out { + border-bottom-left-radius: 5px !important; + border-bottom-right-radius: 5px !important; +} + +.njg-container .leaflet-control-layers { + border: none !important; + right: 3px !important; +} + +.njg-container .leaflet-control-layers-toggle { + height: 35px !important; + width: 35px !important; + background-size: 20px 20px !important; +} + +.njg-indoorImgInput { + position: absolute; + right: 70px; + top: 20px; + width: 150px; + z-index: 1; +} + +.njg-container .switch-wrap { + position: absolute; + right: 40px; + bottom: 30px; + z-index: 1; +} + +.njg-container .switch-wrap input[type="checkbox"] { + height: 25px; + width: 60px; + opacity: 0; + margin: 0; + padding: 0; + position: absolute; + left: 5em; + top: 0; + z-index: 1; + cursor: pointer; +} +.njg-container .switch-wrap label { + display: inline-block; + width: 60px; + height: 25px; + outline: none; + border-radius: 16px; + box-sizing: border-box; + cursor: pointer; + transition: + border-color 0.3s, + background-color 0.3s; + vertical-align: middle; + position: relative; + margin: 0 5px; +} +.njg-container .switch-wrap label::before { + content: ""; + position: absolute; + top: 1px; + left: 2px; + transition: transform 0.3s; + width: 20px; + height: 20px; + border-radius: 50%; +} + +.njg-container .switch-wrap input[type="checkbox"]:checked + label:before { + transform: translateX(34px); +} +.njg-container .njg-date { + position: absolute; + right: 20px; + bottom: 20px; + z-index: 1; +} + +@font-face { + font-family: "iconfont"; + src: url("iconfont.eot?t=1554537125905"); /* IE9 */ + src: + url("iconfont.eot?t=1554537125905#iefix") format("embedded-opentype"), + /* IE6-IE8 */ + url("data:application/x-font-woff2;charset=utf-8;base64,d09GMgABAAAAAALUAAsAAAAABoQAAAKGAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHEIGVgCCcAqBEIEuATYCJAMICwYABCAFhG0HLRvRBcguoRzbUaRIzQw73HPLf7QTlBZ2D/IcIqjWsJ69DaJClJGADlmhijCpCBUFUgELGaHg/4X/3P9am73DJNR5j3rniUuYJZWV+Sv+d1DrkBIhatJGhdBMSonZDe5mGYwm3qYronsgVPRfaegmrtP2H/dOG0u7QOYDymWugZ+6AOOtgY41KLISyrjHcAqrwkXmf5xApQ4ZykLfyDjUyWhcIC5sU4W6gk+W5WS5UNqwNItbJcrTdQrcRN+Pf0pRR1JSoLK1814DOr6Kp7H/u+8oQPETcHUJCowBmdhqjK1IC5mSVhmr0gOOVRx81QcGcVStkP86KqwGbcB7Jr4neNTCBDL0jgKLk9zkWpoZV083Lk3aU+QEjguciAOc6rXwcih7x22pDzGBTA58/6i7Kf9X4OyAnUy7Lf+SwMWzebmVOkI2slFyqJCVI4UN6dZul2us9Ehnd6SGqrxTzKCfFY+pPRQE/8sGl1onvrwqg8/d6kiTDXOA8kvZg7+MP7AmW0JSppPz0J6M5rIkVFpOv8jV6GWqquX5LKG8wJchKdMOhXJ96IwfgxJVxqFUuWmoNKp/dZUmUlrkCow4YRDqnUNS6x4K9R7RGf8MJVq9Qqn6SEOlnWjasspA2A3zklQmA7UNtPUwEK6RG+LiUTJXPFXmhRF1kmRiB7GYK5ST/RSQXGJGsmqWmAUKGfrYx04jzwsxkqFDOucs5qiSz4umN+X00IcG8ySiYsSANBuQTRcKiKAxa6h8fhQxrfCoZAeiyTqJSAm7f1SUUxiA7pcFgxCP8kpilamEMQEJUsiH+tgg4vGEUNQ8yEF0LMeaEIlU5Hk9MVSW217h/7pNUInUKXhVobhUAwAAAA==") + format("woff2"), + url("iconfont.woff?t=1554537125905") format("woff"), + url("iconfont.ttf?t=1554537125905") format("truetype"), + /* chrome, firefox, opera, Safari, Android, iOS 4.2+ */ + url("iconfont.svg?t=1554537125905#iconfont") format("svg"); /* iOS 4.1- */ +} + +.njg-container .iconfont { + font-family: "iconfont", serif !important; + font-size: 30px; + font-style: normal; + cursor: pointer; + -webkit-font-smoothing: antialiased; + -moz-osx-font-smoothing: grayscale; +} + +.njg-container .icon-eye:before { + content: "\e63f"; + position: relative; + top: -2px; +} + +.njg-container .njg-selectIcon { + width: 35px; + height: 35px; + line-height: 35px; + text-align: center; + border-radius: 5px; + border: 0; +} +.njg-container .njg-controls { + display: flex; + justify-content: space-between; + align-items: center; + position: absolute; + right: 10px; + top: 20px; + z-index: 999; + background-color: inherit; +} +.njg-container:has(.njg-tooltip ~ .leaflet-container) .njg-controls { + top: 80px; +} +.njg-container .njg-searchInput { + width: 250px; + height: 20px; +} +.njg-container .njg-searchBtn { + padding: 5px 10px; + margin-left: 10px; +} +.njg-container .njg-searchContainer { + position: absolute; + top: 10px; + z-index: 1; +} + +.njg-container .njg-sideBar { + position: absolute; + left: 0; + top: 0; + width: 350px; + height: 100%; + z-index: 1000; + transition: left 0.4s; + display: flex; + flex-direction: column; + user-select: text; + overflow-y: auto; +} + +.njg-container .hidden { + left: -100%; +} + +.njg-container .sideBarHandle { + position: fixed; + top: 15px; + left: 370px; + border: 0; + border-radius: 5px; + outline: none; + font-size: 24px; + width: 45px; + height: 45px; + cursor: pointer; + padding: 0; + transition: all 0.4s; + transform: rotateY(180deg); +} + +.njg-container .sideBarHandle::before { + content: "\27A4"; +} + +.njg-container .hidden .sideBarHandle { + left: 15px; + transform: rotateY(0deg); +} + +.njg-container .njg-metaInfoContainer, +.njg-container .njg-nodeLinkInfoContainer { + display: flex; + flex-direction: column; + align-items: center; + justify-content: space-between; + padding: 20px 0; +} + +.njg-container .njg-metaData, +.njg-container .njg-infoContainer { + display: flex; + flex-direction: column; + align-items: center; + width: 100%; + padding: 0 20px; + margin-top: 20px; +} + +.njg-container .njg-keyLabel { + font-size: 14px; + font-weight: 600; + flex: 1 1 50%; + word-break: break-word; +} + +.njg-container .njg-valueLabel { + flex: 1 1 50%; + word-break: break-word; +} + +.njg-container .njg-metaDataItems, +.njg-container .njg-infoItems { + display: flex; + align-items: center; + width: 100%; + text-transform: capitalize; + padding: 5px 0; +} + +.njg-container .njg-tooltip { + user-select: text !important; +} + +.njg-container .njg-tooltip .njg-closeButton { + display: none; +} + +.njg-container .njg-tooltip-item { + display: flex; + align-items: center; + width: 100%; + padding: 1px 0; + flex-wrap: wrap; +} + +.njg-container .njg-tooltip-key { + display: inline-flex; + flex-basis: 40%; + flex-wrap: wrap; + text-transform: capitalize; + font-weight: 600; +} +.njg-container .njg-tooltip-value { + display: inline-flex; + align-items: center; + flex-wrap: wrap; + flex-basis: 60%; +} + +.njg-container .njg-headerContainer { + display: flex; + align-items: center; + justify-content: center; + text-transform: capitalize; + width: 100%; + padding: 0 15px; + position: relative; +} + +.njg-container .njg-closeButton { + position: absolute; + right: 20px; + cursor: pointer; + font-size: 18px; +} + +@media only screen and (max-width: 850px) { + .njg-container .njg-sideBar { + top: 0; + z-index: 1001; + width: 100%; + } + + .njg-container .njg-tooltip .njg-closeButton { + display: block; + width: 100%; + text-align: end; + font-size: 16px; + } + + .njg-container .sideBarHandle { + display: none; + } +} diff --git a/openwisp_utils/static/netjsongraph/js/netjsongraph.echarts.min.js b/openwisp_utils/static/netjsongraph/js/netjsongraph.echarts.min.js new file mode 100644 index 000000000..2b3e8bdf8 --- /dev/null +++ b/openwisp_utils/static/netjsongraph/js/netjsongraph.echarts.min.js @@ -0,0 +1 @@ +(()=>{"use strict";function t(t,e){function n(){this.constructor=t}if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");$p(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}function e(){return vf++}function n(){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 e.clearMarkers=function(){c(n,function(t){t.parentNode&&t.parentNode.removeChild(t)})},n}(e,o),s=function(t,e,n){for(var i=n?"invTrans":"trans",r=e[i],o=e.srcCoords,a=[],s=[],l=!0,u=0;u<4;u++){var c=t[u].getBoundingClientRect(),h=2*u,d=c.left,p=c.top;a.push(d,p),l=l&&o&&d===o[h]&&p===o[h+1],s.push(t[u].offsetLeft,t[u].offsetTop)}return l&&r?r:(e.srcCoords=a,e[i]=n?rt(s,a):rt(a,s))}(a,o,r);if(s)return s(t,n,i),!0}return!1}function at(t){return"CANVAS"===t.nodeName.toUpperCase()}function st(t){return null==t?"":(t+"").replace(zf,function(t,e){return Ef[e]})}function lt(t,e,n,i){return n=n||{},i?ut(t,e,n):Ff&&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):ut(t,e,n),n}function ut(t,e,n){if(Qp.domSupported&&t.getBoundingClientRect){var i=e.clientX,r=e.clientY;if(at(t)){var o=t.getBoundingClientRect();return n.zrX=i-o.left,void(n.zrY=r-o.top)}if(ot(Vf,t,i,r))return n.zrX=Vf[0],void(n.zrY=Vf[1])}n.zrX=n.zrY=0}function ct(t){return t||window.event}function ht(t,e,n){if(null!=(e=ct(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&<(t,r,e,n)}else{lt(t,e,e,n);var o=function(t){var e=t.wheelDelta;if(e)return e;var n=t.deltaX,i=t.deltaY;return null==n||null==i?e: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&&Bf.test(e.type)&&(e.which=1&a?1:2&a?3:4&a?2:0),e}function dt(t,e,n,i){t.addEventListener(e,n,i)}function pt(t,e,n,i){t.removeEventListener(e,n,i)}function ft(t){return 2===t.which||3===t.which}function gt(t){var e=t[1][0]-t[0][0],n=t[1][1]-t[0][1];return Math.sqrt(e*e+n*n)}function yt(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function mt(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 vt(t,e,n){var i=e[1]*n[0]+e[3]*n[1],r=e[0]*n[2]+e[2]*n[3],o=e[1]*n[2]+e[3]*n[3],a=e[0]*n[4]+e[2]*n[5]+e[4],s=e[1]*n[4]+e[3]*n[5]+e[5];return t[0]=e[0]*n[0]+e[2]*n[1],t[1]=i,t[2]=r,t[3]=o,t[4]=a,t[5]=s,t}function _t(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 xt(t,e,n,i){void 0===i&&(i=[0,0]);var r=e[0],o=e[2],a=e[4],s=e[1],l=e[3],u=e[5],c=Math.sin(n),h=Math.cos(n);return t[0]=r*h+s*c,t[1]=-r*c+s*h,t[2]=o*h+l*c,t[3]=-o*c+h*l,t[4]=h*(a-i[0])+c*(u-i[1])+i[0],t[5]=h*(u-i[1])-c*(a-i[0])+i[1],t}function wt(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?(t[0]=a*(l=1/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 bt(t,e,n,i,r,o,a,s){var l=Xf(e-n),u=Xf(i-t),c=Zf(l,u),h=qf[r],d=qf[1-r],p=$f[r];e=u||!eg.bidirectional)&&(ng[h]=-u,ng[d]=0,eg.useDir&&eg.calcDirMTV())))}function St(){function t(t){return Xf(t)<1e-10}var e=0,n=new jf,i=new jf,r={minTv:new jf,maxTv:new jf,useDir:!1,dirMinTv:new jf,touchThreshold:0,bidirectional:!0,negativeSize:!1,reset:function(t,o){r.touchThreshold=0,t&&null!=t.touchThreshold&&(r.touchThreshold=Yf(0,t.touchThreshold)),r.negativeSize=!1,o&&(r.minTv.set(1/0,1/0),r.maxTv.set(0,0),r.useDir=!1,t&&null!=t.direction&&(r.useDir=!0,r.dirMinTv.copy(r.minTv),i.copy(r.minTv),e=t.direction,r.bidirectional=null==t.bidirectional||!!t.bidirectional,r.bidirectional||n.set(Math.cos(e),Math.sin(e))))},calcDirMTV:function(){var o=r.minTv,a=r.dirMinTv,s=o.y*o.y+o.x*o.x,l=Math.sin(e),u=Math.cos(e),c=l*o.y+u*o.x;t(c)?t(o.x)&&t(o.y)&&a.set(0,0):(i.x=s*u/c,i.y=s*l/c,t(i.x)&&t(i.y)?a.set(0,0):(r.bidirectional||n.dot(i)>0)&&i.len()=0;o--){var a=t[o],s=void 0;if(a!==r&&!a.ignore&&(s=Mt(a,n,i))&&(!e.topTarget&&(e.topTarget=a),s!==ug)){e.target=a;break}}}function It(t,e,n){var i=t.painter;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}function kt(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 Dt(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 At(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+c])>0?a=c+1:l=c}return l}function Lt(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+c])<0?l=c:a=c+1}return l}function Ot(t,e,n,i){n||(n=0),i||(i=t.length);var r=i-n;if(!(r<2)){var o=0;if(r<32)Dt(t,n,i,n+(o=kt(t,n,i,e)),e);else{var a=function(t,e){function n(n){var l=i[n],u=r[n],c=i[n+1],h=r[n+1];r[n]=u+h,n===a-3&&(i[n+1]=i[n+2],r[n+1]=r[n+2]),a--;var d=Lt(t[c],t,l,u,0,e);l+=d,0!==(u-=d)&&0!==(h=At(t[l+u-1],t,c,h,h-1,e))&&(u<=h?function(n,i,r,a){var l=0;for(l=0;l=7||p>=7);if(f)break;g<0&&(g=0),g+=2}if((o=g)<1&&(o=1),1===i){for(l=0;l=0;l--)t[p+l]=t[d+l];if(0===i){m=!0;break}}if(t[h--]=s[c--],1===--a){m=!0;break}if(0!==(y=a-At(t[u],s,0,a,a-1,e))){for(a-=y,p=1+(h-=y),d=1+(c-=y),l=0;l=7||y>=7);if(m)break;f<0&&(f=0),f+=2}if((o=f)<1&&(o=1),1===a){for(p=1+(h-=i),d=1+(u-=i),l=i-1;l>=0;l--)t[p+l]=t[d+l];t[h]=s[c]}else{if(0===a)throw new Error;for(d=h-(a-1),l=0;l=0;l--)t[p+l]=t[d+l];t[h]=s[c]}else for(d=h-(a-1),l=0;l1;){var t=a-2;if(t>=1&&r[t-1]<=r[t]+r[t+1]||t>=2&&r[t-2]<=r[t]+r[t-1])r[t-1]r[t+1])break;n(t)}},forceMergeRuns:function(){for(;a>1;){var t=a-2;t>0&&r[t-1]=32;)e|=1&t,t>>=1;return t+e}(r);do{if((o=kt(t,n,i,e))s&&(l=s),Dt(t,n,n+l,n+o,e),o=l}a.pushRun(n,o),a.mergeRuns(),r-=o,n+=o}while(0!==r);a.forceMergeRuns()}}}function Pt(){yg||(yg=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function Rt(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}function Nt(t){return t>-1e-8&&tCg||t<-1e-8}function Et(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 Bt(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)}function Vt(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,c=s*s-3*a*l,h=s*l-9*a*u,d=l*l-3*s*u,p=0;if(Nt(c)&&Nt(h))Nt(s)?o[0]=0:(C=-l/s)>=0&&C<=1&&(o[p++]=C);else{var f=h*h-4*c*d;if(Nt(f)){var g=h/c,y=-g/2;(C=-s/a+g)>=0&&C<=1&&(o[p++]=C),y>=0&&y<=1&&(o[p++]=y)}else if(f>0){var m=Sg(f),v=c*s+1.5*a*(-h+m),_=c*s+1.5*a*(-h-m);(C=(-s-((v=v<0?-bg(-v,Ig):bg(v,Ig))+(_=_<0?-bg(-_,Ig):bg(_,Ig))))/(3*a))>=0&&C<=1&&(o[p++]=C)}else{var x=(2*c*s-3*a*h)/(2*Sg(c*c*c)),w=Math.acos(x)/3,b=Sg(c),S=Math.cos(w),C=(-s-2*b*S)/(3*a),M=(y=(-s+b*(S+Tg*Math.sin(w)))/(3*a),(-s+b*(S-Tg*Math.sin(w)))/(3*a));C>=0&&C<=1&&(o[p++]=C),y>=0&&y<=1&&(o[p++]=y),M>=0&&M<=1&&(o[p++]=M)}}return p}function Ft(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(Nt(a))zt(o)&&(c=-s/o)>=0&&c<=1&&(r[l++]=c);else{var u=o*o-4*a*s;if(Nt(u))r[0]=-o/(2*a);else if(u>0){var c,h=Sg(u),d=(-o-h)/(2*a);(c=(-o+h)/(2*a))>=0&&c<=1&&(r[l++]=c),d>=0&&d<=1&&(r[l++]=d)}}return l}function Ht(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,c=(l-s)*r+s,h=(c-u)*r+u;o[0]=t,o[1]=a,o[2]=u,o[3]=h,o[4]=h,o[5]=c,o[6]=l,o[7]=i}function Wt(t,e,n,i,r,o,a,s,l){for(var u=t,c=e,h=0,d=1/l,p=1;p<=l;p++){var f=p*d,g=Et(t,n,r,a,f),y=Et(e,i,o,s,f),m=g-u,v=y-c;h+=Math.sqrt(m*m+v*v),u=g,c=y}return h}function Gt(t,e,n,i){var r=1-i;return r*(r*t+2*i*e)+i*i*n}function Ut(t,e,n,i){return 2*((1-i)*(e-t)+i*(n-e))}function jt(t,e,n){var i=t+n-2*e;return 0===i?.5:(t-e)/i}function Zt(t,e,n,i,r){var o=(e-t)*i+t,a=(n-e)*i+e,s=(a-o)*i+o;r[0]=t,r[1]=o,r[2]=s,r[3]=s,r[4]=a,r[5]=n}function Yt(t,e,n,i,r,o,a){for(var s=t,l=e,u=0,c=1/a,h=1;h<=a;h++){var d=h*c,p=Gt(t,n,r,d),f=Gt(e,i,o,d),g=p-s,y=f-l;u+=Math.sqrt(g*g+y*y),s=p,l=f}return u}function Xt(t){var e=t&&Lg.exec(t);if(e){var n=e[1].split(","),i=+P(n[0]),r=+P(n[1]),o=+P(n[2]),a=+P(n[3]);if(isNaN(i+r+o+a))return;var s=[];return function(t){return t<=0?0:t>=1?1:Vt(0,i,o,1,t,s)&&Et(0,r,a,1,s[0])}}}function qt(t){return(t=Math.round(t))<0?0:t>255?255:t}function $t(t){return t<0?0:t>1?1:t}function Kt(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?qt(parseFloat(e)/100*255):qt(parseInt(e,10))}function Jt(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?$t(parseFloat(e)/100):$t(parseFloat(e))}function Qt(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 te(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function ee(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}function ne(t,e){Vg&&ee(Vg,e),Vg=Bg.put(t,Vg||e.slice())}function ie(t,e){if(t){e=e||[];var n=Bg.get(t);if(n)return ee(e,n);var i=(t+="").replace(/ /g,"").toLowerCase();if(i in Eg)return ee(e,Eg[i]),ne(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?(te(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),ne(t,e),e):void te(e,0,0,0,1):7===o||9===o?(r=parseInt(i.slice(1,7),16))>=0&&r<=16777215?(te(e,(16711680&r)>>16,(65280&r)>>8,255&r,9===o?parseInt(i.slice(7),16)/255:1),ne(t,e),e):void te(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(","),c=1;switch(l){case"rgba":if(4!==u.length)return 3===u.length?te(e,+u[0],+u[1],+u[2],1):te(e,0,0,0,1);c=Jt(u.pop());case"rgb":return u.length>=3?(te(e,Kt(u[0]),Kt(u[1]),Kt(u[2]),3===u.length?c:Jt(u[3])),ne(t,e),e):void te(e,0,0,0,1);case"hsla":return 4!==u.length?void te(e,0,0,0,1):(u[3]=Jt(u[3]),re(u,e),ne(t,e),e);case"hsl":return 3!==u.length?void te(e,0,0,0,1):(re(u,e),ne(t,e),e);default:return}}te(e,0,0,0,1)}}function re(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=Jt(t[1]),r=Jt(t[2]),o=r<=.5?r*(i+1):r+i-r*i,a=2*r-o;return te(e=e||[],qt(255*Qt(a,o,n+1/3)),qt(255*Qt(a,o,n)),qt(255*Qt(a,o,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function oe(t,e){var n=ie(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 se(n,4===n.length?"rgba":"rgb")}}function ae(t,e,n,i){var r,o=ie(t);if(t)return o=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 c=((s-i)/6+l/2)/l,h=((s-r)/6+l/2)/l,d=((s-o)/6+l/2)/l;i===s?e=d-h:r===s?e=1/3+c-d:o===s&&(e=2/3+h-c),e<0&&(e+=1),e>1&&(e-=1)}var p=[360*e,n,u];return null!=t[3]&&p.push(t[3]),p}}(o),null!=e&&(o[0]=(r=m(e)?e(o[0]):e,(r=Math.round(r))<0?0:r>360?360:r)),null!=n&&(o[1]=Jt(m(n)?n(o[1]):n)),null!=i&&(o[2]=Jt(m(i)?i(o[2]):i)),se(re(o),"rgba")}function se(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 le(t,e){var n=ie(t);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*e:0}function ue(t){if(v(t)){var e=Fg.get(t);return e||(e=oe(t,-.1),Fg.put(t,e)),e}if(M(t)){var n=o({},t);return n.colorStops=h(t.colorStops,function(t){return{offset:t.offset,color:oe(t.color,-.1)}}),n}return t}function ce(t){var e;if(t&&"transparent"!==t){if("string"==typeof t&&t.indexOf("rgba")>-1){var n=ie(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 he(t){return t-1e-4}function de(t){return Hg(1e3*t)/1e3}function pe(t){return Hg(1e4*t)/1e4}function fe(t){return t&&!!t.image}function ge(t){return fe(t)||function(t){return t&&!!t.svgElement}(t)}function ye(t){return"linear"===t.type}function me(t){return"radial"===t.type}function ve(t){return t&&("linear"===t.type||"radial"===t.type)}function _e(t){return"url(#"+t+")"}function xe(t){var e=t.getGlobalScale(),n=Math.max(e[0],e[1]);return Math.max(Math.ceil(Math.log(n)/Math.log(10)),1)}function we(t){var e=t.x||0,n=t.y||0,i=(t.rotation||0)*Cf,r=k(t.scaleX,1),o=k(t.scaleY,1),a=t.skewX||0,s=t.skewY||0,l=[];return(e||n)&&l.push("translate("+e+"px,"+n+"px)"),i&&l.push("rotate("+i+")"),1===r&&1===o||l.push("scale("+r+","+o+")"),(a||s)&&l.push("skew("+Hg(a*Cf)+"deg, "+Hg(s*Cf)+"deg)"),l.join(" ")}function be(t,e,n){return(e-t)*n+t}function Se(t,e,n,i){for(var r=e.length,o=0;oi?e:t,o=Math.min(n,i),a=r[o-1]||{color:[0,0,0,0],offset:0},s=o;sa)i.length=a;else for(var s=o;sgy||t<-5e-5}function Ve(t,e){for(var n=0;n=My)){t=t||rf;for(var e=[],n=+new Date,i=0;i<=127;i++)e[i]=af.measureText(String.fromCharCode(i),t).width;var r=+new Date-n;return r>16?Cy=My:r>2&&Cy++,e}}(t.font),t.asciiWidthMapTried=!0),0<=e&&e<=127?null!=t.asciiWidthMap?t.asciiWidthMap[e]:t.asciiCharWidth:t.stWideCharWidth}function We(t,e){var n=t.strWidthCache,i=n.get(e);return null==i&&(i=af.measureText(e,t.font).width,n.put(e,i)),i}function Ge(t,e,n,i){var r=We(Fe(e),t),o=Ye(e),a=je(0,r,n),s=Ze(0,o,i);return new lg(a,s,r,o)}function Ue(t,e,n,i){var r=((t||"")+"").split("\n");if(1===r.length)return Ge(r[0],e,n,i);for(var o=new lg(0,0,0,0),a=0;a=0?parseFloat(t)/100*e:parseFloat(t):t}function qe(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,c="left",h="top";if(i instanceof Array)l+=Xe(i[0],n.width),u+=Xe(i[1],n.height),c=null,h=null;else switch(i){case"left":l-=r,u+=s,c="right",h="middle";break;case"right":l+=r+a,u+=s,h="middle";break;case"top":l+=a/2,u-=r,c="center",h="bottom";break;case"bottom":l+=a/2,u+=o+r,c="center";break;case"inside":l+=a/2,u+=s,c="center",h="middle";break;case"insideLeft":l+=r,u+=s,h="middle";break;case"insideRight":l+=a-r,u+=s,c="right",h="middle";break;case"insideTop":l+=a/2,u+=r,c="center";break;case"insideBottom":l+=a/2,u+=o-r,c="center",h="bottom";break;case"insideTopLeft":l+=r,u+=r;break;case"insideTopRight":l+=a-r,u+=r,c="right";break;case"insideBottomLeft":l+=r,u+=o-r,h="bottom";break;case"insideBottomRight":l+=a-r,u+=o-r,c="right",h="bottom"}return(t=t||{}).x=l,t.y=u,t.align=c,t.verticalAlign=h,t}function $e(t,e,n,i,r){var o=[];Qe(t,"",t,e,n=n||{},i,o,r);var a=o.length,s=!1,l=n.done,u=n.aborted,c=function(){s=!0,--a<=0&&(s?l&&l():u&&u())},h=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 d=0;d0||r.force&&!a.length){var I,k=void 0,D=void 0,A=void 0;if(l)for(D={},y&&(k={}),C=0;C0){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 nn(t,e,n){return v(t)?(i=t,i.replace(/^\s+|\s+$/g,"")).match(/%$/)?parseFloat(t)/100*e+(n||0):parseFloat(t):null==t?NaN:+t;var i}function rn(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function on(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 function(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(".");return Math.max(0,(o<0?0:r-1-o)-i)}(t)}function an(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),o=Math.round(n(Gy(e[1]-e[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20}function sn(t,e){var n=Math.max(on(t),on(e)),i=t+e;return n>20?i:rn(i,n)}function ln(t){var e=2*Math.PI;return(t%e+e)%e}function un(t){return t>-1e-4&&t=10&&e++,e}function dn(t,e){var n=hn(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 pn(t){var e=parseFloat(t);return e==t&&(0!==e||!v(t)||t.indexOf("x")<=0)?e:NaN}function fn(){return Math.round(9*Math.random())}function gn(t,e){return 0===e?t:gn(e,t%e)}function yn(t,e){return null==t?e:null==e?t:t*e/gn(t,e)}function mn(t){return t instanceof Array?t:null==t?[]:[t]}function vn(t,e,n){if(t){t[e]=t[e]||{},t.emphasis=t.emphasis||{},t.emphasis[e]=t.emphasis[e]||{};for(var i=0,r=n.length;i=0||r&&s(r,l)<0)){var u=n.getShallow(l,e);null!=u&&(o[t[a][0]]=u)}}return o}}function Fn(t){if("string"==typeof t){var e=im.get(t);return e&&e.image}return t}function Hn(t,e,n,i,r){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var o=im.get(t),a={hostEl:n,cb:i,cbPayload:r};return o?!Gn(e=o.image)&&o.pending.push(a):((e=af.loadImage(t,Wn,Wn)).__zrImageSrc=t,im.put(t,e.__cachedImgObj={image:e,pending:[a]})),e}return t}return e}function Wn(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e=l;c++)u-=l;var h=We(s,n);return h>u&&(n="",h=0),u=t-h,r.ellipsis=n,r.ellipsisWidth=h,r.contentWidth=u,r.containerWidth=t,r}function Zn(t,e,n){var i=n.containerWidth,r=n.contentWidth,o=n.fontMeasureInfo;if(!i)return t.textLine="",void(t.isTruncated=!1);var a=We(o,e);if(a<=i)return t.textLine=e,void(t.isTruncated=!1);for(var s=0;;s++){if(a<=r||s>=n.maxIterations){e+=n.ellipsis;break}var l=0===s?Yn(e,r,o):a>0?Math.floor(e.length*r/a):0;a=We(o,e=e.substr(0,l))}""===e&&(e=n.placeholder),t.textLine=e,t.isTruncated=!0}function Yn(t,e,n){for(var i=0,r=0,o=t.length;r0&&f+i.accumWidth>i.width&&(o=e.split("\n"),h=!0),i.accumWidth=f}else{var g=$n(e,c,i.width,i.breakAll,i.accumWidth);i.accumWidth=g.accumWidth+p,a=g.linesWidths,o=g.lines}}o||(o=e.split("\n"));for(var y=Fe(c),m=0;m=32&&e<=591||e>=880&&e<=4351||e>=4608&&e<=5119||e>=7680&&e<=8303}(t)||!!lm[t]}function $n(t,e,n,i,r){for(var o=[],a=[],s="",l="",u=0,c=0,h=Fe(e),d=0;dn:r+c+f>n)?c?(s||l)&&(g?(s||(s=l,l="",c=u=0),o.push(s),a.push(c-u),l+=p,s="",c=u+=f):(l&&(s+=l,l="",u=0),o.push(s),a.push(c),s=p,c=f)):g?(o.push(l),a.push(u),l=p,u=f):(o.push(p),a.push(f)):(c+=f,g?(l+=p,u+=f):(l&&(s+=l,l="",u=0),s+=p))}else l&&(s+=l,c+=u),o.push(s),a.push(c),s="",l="",u=0,c=0}return l&&(s+=l),s&&(o.push(s),a.push(c)),1===o.length&&(c+=r),{accumWidth:c,lines:o,linesWidths:a}}function Kn(t,e,n,i,r,o){if(t.baseX=n,t.baseY=i,t.outerWidth=t.outerHeight=null,e){var a=2*e.width,s=2*e.height;lg.set(um,je(n,a,r),Ze(i,s,o),a,s),lg.intersect(e,um,null,cm);var l=cm.outIntersectRect;t.outerWidth=l.width,t.outerHeight=l.height,t.baseX=je(l.x,l.width,r,!0),t.baseY=Ze(l.y,l.height,o,!0)}}function Jn(t){return null!=t?t+="":t=""}function Qn(t,e,n,i){var r=new lg(je(t.x||0,e,t.textAlign),Ze(t.y||0,n,t.textBaseline),e,n),o=null!=i?i:ti(t)?t.lineWidth:0;return o>0&&(r.x-=o/2,r.y-=o/2,r.width+=o,r.height+=o),r}function ti(t){var e=t.stroke;return null!=e&&"none"!==e&&t.lineWidth>0}function ei(t,e,n,i,r,o){r[0]=xm(t,n),r[1]=xm(e,i),o[0]=wm(t,n),o[1]=wm(e,i)}function ni(t,e,n,i,r,o,a,s,l,u){var c=Ft,h=Et,d=c(t,n,r,a,km);l[0]=1/0,l[1]=1/0,u[0]=-1/0,u[1]=-1/0;for(var p=0;p1e-4)return s[0]=t-n,s[1]=e-i,l[0]=t+n,void(l[1]=e+i);if(Mm[0]=Sm(r)*n+t,Mm[1]=bm(r)*i+e,Tm[0]=Sm(o)*n+t,Tm[1]=bm(o)*i+e,u(s,Mm,Tm),c(l,Mm,Tm),(r%=Cm)<0&&(r+=Cm),(o%=Cm)<0&&(o+=Cm),r>o&&!a?o+=Cm:rr&&(Im[0]=Sm(p)*n+t,Im[1]=bm(p)*i+e,u(s,Im,s),c(l,Im,l))}function oi(t){return Math.round(t/Wm*1e8)/1e8%2*Wm}function ai(t,e,n,i,r,o,a){if(0===r)return!1;var s,l=r;if(a>e+l&&a>i+l||at+l&&o>n+l||oe+h&&c>i+h&&c>o+h&&c>s+h||ct+h&&u>n+h&&u>r+h&&u>a+h||u=0&&pe+u&&l>i+u&&l>o+u||lt+u&&s>n+u&&s>r+u||s=0&&gn||c+ur&&(r+=qm);var d=Math.atan2(l,s);return d<0&&(d+=qm),d>=i&&d<=r||d+qm>=i&&d+qm<=r}function hi(t,e,n,i,r,o){if(o>e&&o>i||or?s:0}function di(){var t=Qm[0];Qm[0]=Qm[1],Qm[1]=t}function pi(t,e,n,i,r,o,a,s,l,u){if(u>e&&u>i&&u>o&&u>s||u1&&di(),p=Et(e,i,o,s,Qm[0]),d>1&&(f=Et(e,i,o,s,Qm[1]))),h+=2===d?ye&&s>i&&s>o||s=0&&c<=1&&(r[l++]=c);else{var u=a*a-4*o*s;if(Nt(u))(c=-a/(2*o))>=0&&c<=1&&(r[l++]=c);else if(u>0){var c,h=Sg(u),d=(-a-h)/(2*o);(c=(-a+h)/(2*o))>=0&&c<=1&&(r[l++]=c),d>=0&&d<=1&&(r[l++]=d)}}return l}(e,i,o,s,Jm);if(0===l)return 0;var u=jt(e,i,o);if(u>=0&&u<=1){for(var c=0,h=Gt(e,i,o,u),d=0;dn||s<-n)return 0;var l=Math.sqrt(n*n-s*s);Jm[0]=-l,Jm[1]=l;var u=Math.abs(i-r);if(u<1e-4)return 0;if(u>=Km-1e-4){i=0,r=Km;var c=o?1:-1;return a>=Jm[0]+t&&a<=Jm[1]+t?c:0}if(i>r){var h=i;i=r,r=h}i<0&&(i+=Km,r+=Km);for(var d=0,p=0;p<2;p++){var f=Jm[p];if(f+t>a){var g=Math.atan2(s,f);c=o?1:-1,g<0&&(g=Km+g),(g>=i&&g<=r||g+Km>=i&&g+Km<=r)&&(g>Math.PI/2&&g<1.5*Math.PI&&(c=-c),d+=c)}}return d}function yi(t,e,n,i,r){for(var o,a,s=t.data,l=t.len(),u=0,c=0,h=0,d=0,p=0,f=0;f1&&(n||(u+=hi(c,h,d,p,i,r))),y&&(d=c=s[f],p=h=s[f+1]),g){case $m.M:c=d=s[f++],h=p=s[f++];break;case $m.L:if(n){if(ai(c,h,s[f],s[f+1],e,i,r))return!0}else u+=hi(c,h,s[f],s[f+1],i,r)||0;c=s[f++],h=s[f++];break;case $m.C:if(n){if(si(c,h,s[f++],s[f++],s[f++],s[f++],s[f],s[f+1],e,i,r))return!0}else u+=pi(c,h,s[f++],s[f++],s[f++],s[f++],s[f],s[f+1],i,r)||0;c=s[f++],h=s[f++];break;case $m.Q:if(n){if(li(c,h,s[f++],s[f++],s[f],s[f+1],e,i,r))return!0}else u+=fi(c,h,s[f++],s[f++],s[f],s[f+1],i,r)||0;c=s[f++],h=s[f++];break;case $m.A:var m=s[f++],v=s[f++],_=s[f++],x=s[f++],w=s[f++],b=s[f++];f+=1;var S=!!(1-s[f++]);o=Math.cos(w)*_+m,a=Math.sin(w)*x+v,y?(d=o,p=a):u+=hi(c,h,o,a,i,r);var C=(i-m)*x/_+m;if(n){if(ci(m,v,x,w,w+b,S,e,C,r))return!0}else u+=gi(m,v,x,w,w+b,S,C,r);c=Math.cos(w+b)*_+m,h=Math.sin(w+b)*x+v;break;case $m.R:if(d=c=s[f++],p=h=s[f++],o=d+s[f++],a=p+s[f++],n){if(ai(d,p,o,p,e,i,r)||ai(o,p,o,a,e,i,r)||ai(o,a,d,a,e,i,r)||ai(d,a,d,p,e,i,r))return!0}else u+=hi(o,p,o,a,i,r),u+=hi(d,a,d,p,i,r);break;case $m.Z:if(n){if(ai(c,h,d,p,e,i,r))return!0}else u+=hi(c,h,d,p,i,r);c=d,h=p}}return n||Math.abs(h-p)<1e-4||(u+=hi(c,h,d,p,i,r)||0),0!==u}function mi(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?(dv(2*i)===dv(2*r)&&(t.x1=t.x2=_i(i,s,!0)),dv(2*o)===dv(2*a)&&(t.y1=t.y2=_i(o,s,!0)),t):t}}function vi(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=_i(i,s,!0),t.y=_i(r,s,!0),t.width=Math.max(_i(i+o,s,!1)-t.x,0===o?0:1),t.height=Math.max(_i(r+a,s,!1)-t.y,0===a?0:1),t):t}}function _i(t,e,n){if(!e)return t;var i=dv(2*t);return(i+dv(e))%2==0?i/2:(i+(n?1:-1))/2}function xi(t){return"string"!=typeof t||-1===t.indexOf("px")&&-1===t.indexOf("rem")&&-1===t.indexOf("em")?isNaN(+t)?"12px":t+"px":t}function wi(t,e){for(var n=0;n=0,a=!1;if(t instanceof rv){var l=kv(t),u=r&&l.selectFill||l.normalFill,c=r&&l.selectStroke||l.normalStroke;if(Di(u)||Di(c)){var h=(i=i||{}).style||{};"inherit"===h.fill?(a=!0,i=o({},i),(h=o({},h)).fill=u):!Di(h.fill)&&Di(u)?(a=!0,i=o({},i),(h=o({},h)).fill=ue(u)):!Di(h.stroke)&&Di(c)&&(a||(i=o({},i),h=o({},h)),h.stroke=ue(c)),i.style=h}}if(i&&null==i.z2){a||(i=o({},i));var d=t.z2EmphasisLift;i.z2=t.z2+(null!=d?d:10)}return i}(this,0,e,n);if("blur"===t)return function(t,e,n){var i=s(t.currentStates,e)>=0,r=t.style.opacity,a=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 er(t,e,n){ir(t,!0),Bi(t,Fi),function(t,e,n){var i=Mv(t);null!=e?(i.focus=e,i.blurScope=n):i.focus&&(i.focus=null)}(t,e,n)}function nr(t,e,n,i){i?function(t){ir(t,!1)}(t):er(t,e,n)}function ir(t,e){var n=!1===e,i=t;t.highDownSilentOnTouch&&(i.__highDownSilentOnTouch=t.highDownSilentOnTouch),n&&!i.__highDownDispatcher||(i.__highByOuter=i.__highByOuter||0,i.__highDownDispatcher=!n)}function rr(t){return!(!t||!t.__highDownDispatcher)}function or(t){var e=t.type;return e===Rv||e===Nv||e===zv}function ar(t){var e=t.type;return e===Ov||e===Pv}function sr(t,e,n){var i,r=t.labelFetcher,o=t.labelDataIndex,a=t.labelDimIndex,s=e.normal;r&&(i=r.getFormattedLabel(o,"normal",null,a,s&&s.get("formatter"),null!=n?{interpolatedValue:n}:null)),null==i&&(i=m(t.defaultText)?t.defaultText(o,t,n):t.defaultText);for(var l={normal:i},u=0;u=12?"pm":"am",y=g.toUpperCase(),m=i instanceof i_?i:function(t){return u_[t]}(i||c_)||u_[s_],v=m.getModel("time"),_=v.get("month"),x=v.get("monthAbbr"),w=v.get("dayOfWeek"),b=v.get("dayOfWeekAbbr");return(e||"").replace(/{a}/g,g+"").replace(/{A}/g,y+"").replace(/{yyyy}/g,o+"").replace(/{yy}/g,mr(o%100+"",2)).replace(/{Q}/g,s+"").replace(/{MMMM}/g,_[a-1]).replace(/{MMM}/g,x[a-1]).replace(/{MM}/g,mr(a,2)).replace(/{M}/g,a+"").replace(/{dd}/g,mr(l,2)).replace(/{d}/g,l+"").replace(/{eeee}/g,w[u]).replace(/{ee}/g,b[u]).replace(/{e}/g,u+"").replace(/{HH}/g,mr(c,2)).replace(/{H}/g,c+"").replace(/{hh}/g,mr(h+"",2)).replace(/{h}/g,h+"").replace(/{mm}/g,mr(d,2)).replace(/{m}/g,d+"").replace(/{ss}/g,mr(p,2)).replace(/{s}/g,p+"").replace(/{SSS}/g,mr(f,3)).replace(/{S}/g,f+"")}function wr(t,e){var n=cn(t),i=n[Cr(e)]()+1,r=n[Mr(e)](),o=n[Tr(e)](),a=n[Ir(e)](),s=n[kr(e)](),l=0===n[Dr(e)](),u=l&&0===s,c=u&&0===a,h=c&&0===o,d=h&&1===r;return d&&1===i?"year":d?"month":h?"day":c?"hour":u?"minute":l?"second":"millisecond"}function br(t,e,n){switch(e){case"year":t[Lr(n)](0);case"month":t[Or(n)](1);case"day":t[Pr(n)](0);case"hour":t[Rr(n)](0);case"minute":t[Nr(n)](0);case"second":t[zr(n)](0)}return t}function Sr(t){return t?"getUTCFullYear":"getFullYear"}function Cr(t){return t?"getUTCMonth":"getMonth"}function Mr(t){return t?"getUTCDate":"getDate"}function Tr(t){return t?"getUTCHours":"getHours"}function Ir(t){return t?"getUTCMinutes":"getMinutes"}function kr(t){return t?"getUTCSeconds":"getSeconds"}function Dr(t){return t?"getUTCMilliseconds":"getMilliseconds"}function Ar(t){return t?"setUTCFullYear":"setFullYear"}function Lr(t){return t?"setUTCMonth":"setMonth"}function Or(t){return t?"setUTCDate":"setDate"}function Pr(t){return t?"setUTCHours":"setHours"}function Rr(t){return t?"setUTCMinutes":"setMinutes"}function Nr(t){return t?"setUTCSeconds":"setSeconds"}function zr(t){return t?"setUTCMilliseconds":"setMilliseconds"}function Er(t){if(isNaN(pn(t)))return v(t)?t:"-";var e=(t+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function Br(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}function Vr(t,e,n){function i(t){return t&&P(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?cn(t):t;if(!isNaN(+s))return xr(s,"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}",n);if(a)return"-"}if("ordinal"===e)return _(t)?i(t):x(t)&&r(t)?t+"":"-";var l=pn(t);return r(l)?Er(l):_(t)?i(t):"boolean"==typeof t?t+"":"-"}function Fr(t,e,n){y(e)||(e=[e]);var i=e.length;if(!i)return"";for(var r=e[0].$vars||[],o=0;oi||l.newline?(o=0,c=g,a+=s+n,s=d.height):s=Math.max(s,d.height)}else{var y=d.height+(f?-f.y+d.y:0);(h=a+y)>r||l.newline?(o+=s+n,a=0,h=y,s=d.width):s=Math.max(s,d.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===t?o=c+n:a=h+n)})}function jr(t,e,n){n=S_(n||0);var i=e.width,r=e.height,o=Uy(t.left,i),a=Uy(t.top,r),s=Uy(t.right,i),l=Uy(t.bottom,r),u=Uy(t.width,i),c=Uy(t.height,r),h=n[2]+n[0],d=n[1]+n[3],p=t.aspect;switch(isNaN(u)&&(u=i-s-d-o),isNaN(c)&&(c=r-l-h-a),null!=p&&(isNaN(u)&&isNaN(c)&&(p>i/r?u=.8*i:c=.8*r),isNaN(u)&&(u=p*c),isNaN(c)&&(c=u/p)),isNaN(o)&&(o=i-s-u-d),isNaN(a)&&(a=r-l-c-h),t.left||t.right){case"center":o=i/2-u/2-n[3];break;case"right":o=i-u-d}switch(t.top||t.bottom){case"middle":case"center":a=r/2-c/2-n[0];break;case"bottom":a=r-c-h}o=o||0,a=a||0,isNaN(u)&&(u=i-d-o-(s||0)),isNaN(c)&&(c=r-h-a-(l||0));var f=new lg((e.x||0)+o+n[3],(e.y||0)+a+n[0],u,c);return f.margin=n,f}function Zr(t,e,n){var i,r,o,a,s=t.boxCoordinateSystem;if(s){var l=function(t){var e=t.getShallow("coord",!0),n=D_;if(null==e){var i=L_.get(t.type);i&&i.getCoord2&&(n=A_,e=i.getCoord2(t))}return{coord:e,from:n}}(t),u=l.coord,c=l.from;if(s.dataToLayout){o=F_.rect,a=c;var h=s.dataToLayout(u);i=h.contentRect||h.rect}else n&&n.enableLayoutOnlyByCenter&&s.dataToPoint&&(o=F_.point,a=c,r=s.dataToPoint(u))}return null==o&&(o=F_.rect),o===F_.rect&&(i||(i={x:0,y:0,width:e.getWidth(),height:e.getHeight()}),r=[i.x+i.width/2,i.y+i.height/2]),{type:o,refContainer:i,refPoint:r,boxCoordFrom:a}}function Yr(t,e,n,i,r,o){var s,l=!r||!r.hv||r.hv[0],u=!r||!r.hv||r.hv[1],c=r&&r.boundingMode||"all";if((o=o||t).x=t.x,o.y=t.y,!l&&!u)return!1;if("raw"===c)s="group"===t.type?new lg(0,0,+e.width||0,+e.height||0):t.getBoundingRect();else if(s=t.getBoundingRect(),t.needLocalTransform()){var h=t.getLocalTransform();(s=s.clone()).applyTransform(h)}var d=jr(a({width:s.width,height:s.height},e),n,i),p=l?d.x-s.x:0,f=u?d.y-s.y:0;return"raw"===c?(o.x=p,o.y=f):(o.x+=p,o.y+=f),o===t&&t.markRedraw(),!0}function Xr(t){var e=t.layoutMode||t.constructor.layoutMode;return w(e)?e:e?{type:e}:null}function qr(t,e,n){function i(n,i){var o={},s=0,l={},u=0;if(z_(n,function(e){l[e]=t[e]}),z_(n,function(t){F(e,t)&&(o[t]=l[t]=e[t]),r(o,t)&&s++,r(l,t)&&u++}),a[i])return r(e,n[1])?l[n[2]]=null:r(e,n[2])&&(l[n[1]]=null),l;if(2!==u&&s){if(s>=2)return o;for(var c=0;c=e:"max"===n?t<=e:t===e})(i[a],t,o)||(r=!1)}}),r}function oo(t){var e=t&&t.itemStyle;if(e)for(var n=0,i=Ex.length;n65535?aw:sw}function Go(){return[1/0,-1/0]}function Uo(t){var e=t.constructor;return e===Array?t.slice():new e(t)}function jo(t,e,n,i,r){var o=cw[n||"float"];if(r){var a=t[e],s=a&&a.length;if(s!==i){for(var l=new o(i),u=0;u1||n>0&&!t.noHeader;return c(t.blocks,function(t){var n=Qo(t);n>=e&&(e=n+ +(i&&(!n||Ko(t)&&!t.noHeader)))}),e}return 0}function ta(t,e,n,i){var r,a=e.noHeader,s=(r=Qo(e),{html:fw[r],richText:gw[r]}),l=[],u=e.blocks||[];O(!u||y(u)),u=u||[];var h=t.orderMode;if(e.sortBlocks&&h){u=u.slice();var d={valueAsc:"asc",valueDesc:"desc"};if(F(d,h)){var p=new nw(d[h],null);u.sort(function(t,e){return p.evaluate(t.sortParam,e.sortParam)})}else"seriesDesc"===h&&u.reverse()}c(u,function(n,r){var a=e.valueFormatter,u=Jo(n)(a?o(o({},t),{valueFormatter:a}):t,n,r>0?s.html:0,i);null!=u&&l.push(u)});var f="richText"===t.renderMode?l.join(s.richText):ia(i,l.join(""),a?n:s.html);if(a)return f;var g=Vr(e.header,"ordinal",t.useUTC),m=qo(i,t.renderMode).nameStyle,v=Xo(i);return"richText"===t.renderMode?ra(t,g,m)+s.richText+f:ia(i,'
'+st(g)+"
"+f,n)}function ea(t,e,n,i){var r=t.renderMode,o=e.noName,a=e.noValue,s=!e.markerType,l=e.name,u=t.useUTC,c=e.valueFormatter||t.valueFormatter||function(t){return h(t=y(t)?t:[t],function(t,e){return Vr(t,y(f)?f[e]:f,u)})};if(!o||!a){var d=s?"":t.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||X_.color.secondary,r),p=o?"":Vr(l,"ordinal",u),f=e.valueType,g=a?[]:c(e.value,e.dataIndex),m=!s||!o,v=!s&&o,_=qo(i,r),x=_.nameStyle,w=_.valueStyle;return"richText"===r?(s?"":d)+(o?"":ra(t,p,x))+(a?"":function(t,e,n,i,r){var o=[r];return n&&o.push({padding:[0,0,0,i?10:20],align:"right"}),t.markupStyleCreator.wrapRichTextStyle(y(e)?e.join(" "):e,o)}(t,g,m,v,w)):ia(i,(s?"":d)+(o?"":function(t,e,n){return''+st(t)+""}(p,!s,x))+(a?"":function(t,e,n,i){return''+h(t=y(t)?t:[t],function(t){return st(t)}).join("  ")+""}(g,m,v,w)),n)}}function na(t,e,n,i,r,o){if(t)return Jo(t)({useUTC:r,renderMode:n,orderMode:i,markupStyleCreator:e,valueFormatter:t.valueFormatter},t,0,o)}function ia(t,e,n){return'
'+e+'
'}function ra(t,e,n){return t.markupStyleCreator.wrapRichTextStyle(e,n)}function oa(t,e){var n=t.get("padding");return null!=n?n:"richText"===e?[8,10]:10}function aa(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,p=o.getRawValue(a),f=y(p),g=function(t,e){return Hr(t.getData().getItemVisual(e,"style")[t.visualDrawType])}(o,a);if(h>1||f&&!h){var m=function(t,e,n,i,r){function o(t,e){var n=a.getDimensionInfo(e);n&&!1!==n.otherDims.tooltip&&(s?h.push($o("nameValue",{markerType:"subItem",markerColor:r,name:n.displayName,value:t,valueType:n.type})):(l.push(t),u.push(n.type)))}var a=e.getData(),s=d(t,function(t,e,n){var i=a.getDimensionInfo(n);return t||i&&!1!==i.tooltip&&null!=i.displayName},!1),l=[],u=[],h=[];return i.length?c(i,function(t){o(Oo(a,n,t),t)}):c(t,o),{inlineValues:l,inlineValueTypes:u,blocks:h}}(p,o,a,u,g);e=m.inlineValues,n=m.inlineValueTypes,i=m.blocks,r=m.inlineValues[0]}else if(h){var v=l.getDimensionInfo(u[0]);r=e=Oo(l,a,u[0]),n=v.type}else r=e=f?p[0]:p;var _=Mn(o),x=_&&o.name||"",w=l.getName(a),b=s?x:w;return $o("section",{header:x,noHeader:s||!_,sortParam:r,blocks:[$o("nameValue",{markerType:"item",markerColor:g,name:b,noName:!P(b),value:e,valueType:n,dataIndex:a})].concat(i||[])})}function sa(t,e){return t.getName(e)||t.getId(e)}function la(t){var e=t.name;Mn(t)||(t.name=function(t){var e=t.getRawData(),n=e.mapDimensionsAll("seriesName"),i=[];return c(n,function(t){var n=e.getDimensionInfo(t);n.displayName&&i.push(n.displayName)}),i.join(" ")}(t)||e)}function ua(t){return t.model.getRawData().count()}function ca(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),ha}function ha(t,e){e.outputData&&t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function da(t,e){c(E(t.CHANGABLE_METHODS,t.DOWNSAMPLE_METHODS),function(n){t.wrapMethod(n,g(pa,e))})}function pa(t,e){var n=fa(t);return n&&n.setOutputEnd((e||this).count()),e}function fa(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}}function ga(){var t=kn();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"}}function ya(t){return Math.sqrt(t[0]*t[0]+t[1]*t[1])}function ma(t,e){return(t[0]*e[0]+t[1]*e[1])/(ya(t)*ya(e))}function va(t,e){return(t[0]*e[1]1&&(a*=Tw(f),s*=Tw(f));var g=(r===o?-1:1)*Tw((a*a*(s*s)-a*a*(p*p)-s*s*(d*d))/(a*a*(p*p)+s*s*(d*d)))||0,y=g*a*p/s,m=g*-s*d/a,v=(t+n)/2+kw(h)*y-Iw(h)*m,_=(e+i)/2+Iw(h)*y+kw(h)*m,x=va([1,0],[(d-y)/a,(p-m)/s]),w=[(d-y)/a,(p-m)/s],b=[(-1*d-y)/a,(-1*p-m)/s],S=va(w,b);if(ma(w,b)<=-1&&(S=Dw),ma(w,b)>=1&&(S=0),S<0){var C=Math.round(S/Dw*1e6)/1e6;S=2*Dw+C%2*Dw}c.addData(u,v,_,a,s,x,S,h,o)}function xa(t){return null!=t.setData}function wa(t,e){var n=function(t){var e=new Ym;if(!t)return e;var n,i=0,r=0,o=i,a=r,s=Ym.CMD,l=t.match(Aw);if(!l)return e;for(var u=0;uA*A+L*L&&(C=T,M=I),{cx:C,cy:M,x0:-c,y0:-h,x1:C*(r/w-1),y1:M*(r/w-1)}}function Sa(t,e,n){var i=e.smooth,r=e.points;if(r&&r.length>=2){if(i){var o=function(t,e,n,i){var r,o,a,s,l=[],u=[],c=[],h=[];if(i){a=[1/0,1/0],s=[-1/0,-1/0];for(var d=0,p=t.length;d0){var h={duration:c.duration,delay:c.delay||0,easing:c.easing,done:o,force:!!o||!!a,setToFinal:!u,scope:t,during:a};l?e.animateFrom(n,h):e.animateTo(n,h)}else e.stopAnimation(),!l&&e.attr(n),a&&a(1),o&&o()}function Ia(t,e,n,i,r,o){Ta("update",t,e,n,i,r,o)}function ka(t,e,n,i,r,o){Ta("enter",t,e,n,i,r,o)}function Da(t){if(!t.__zr)return!0;for(var e=0;eGy(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function Za(t){return!t.isGroup}function Ya(t,e,n){function r(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}if(t&&e){var o,a=(o={},t.traverse(function(t){Za(t)&&t.anid&&(o[t.anid]=t)}),o);e.traverse(function(t){if(Za(t)&&t.anid){var e=a[t.anid];if(e){var i=r(t);t.attr(r(e)),Ia(t,i,n,Mv(t).dataIndex)}}})}}function Xa(t,e){return h(t,function(t){var n=t[0];n=Wy(n,e.x),n=Hy(n,e.x+e.width);var i=t[1];return i=Wy(i,e.y),[n,i=Hy(i,e.y+e.height)]})}function qa(t,e){var n=Wy(t.x,e.x),i=Hy(t.x+t.width,e.x+e.width),r=Wy(t.y,e.y),o=Hy(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 $a(t,e,n){var i=o({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),a(r,n),new hv(i)):Ea(t.replace("path://",""),i,n,"center")}function Ka(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=Qa(f,g,u,c)/p;if(y<0||y>1)return!1;var m=Qa(f,g,h,d)/p;return!(m<0||m>1)}function Qa(t,e,n,i){return t*i-n*e}function ts(t,e,n,i,r){return null==e||(x(e)?Ub[0]=Ub[1]=Ub[2]=Ub[3]=e:(Ub[0]=e[0],Ub[1]=e[1],Ub[2]=e[2],Ub[3]=e[3]),i&&(Ub[0]=Wy(0,Ub[0]),Ub[1]=Wy(0,Ub[1]),Ub[2]=Wy(0,Ub[2]),Ub[3]=Wy(0,Ub[3])),n&&(Ub[0]=-Ub[0],Ub[1]=-Ub[1],Ub[2]=-Ub[2],Ub[3]=-Ub[3]),es(t,Ub,"x","width",3,1,r&&r[0]||0),es(t,Ub,"y","height",0,2,r&&r[1]||0)),t}function es(t,e,n,i,r,o,a){var s=e[o]+e[r],l=t[i];t[i]+=s,a=Wy(0,Hy(a,l)),t[i]=0?-e[r]:e[o]>=0?l+e[o]:Gy(s)>1e-8?(l-a)*e[r]/s:0):t[n]-=e[r]}function ns(t){var e=t.itemTooltipOption,n=t.componentModel,i=t.itemName,r=v(e)?{formatter:e}:e,o=n.mainType,s=n.componentIndex,l={componentType:o,name:i,$vars:["name"]};l[o+"Index"]=s;var u=t.formatterParamsExtra;u&&c(f(u),function(t){F(l,t)||(l[t]=u[t],l.$vars.push(t))});var h=Mv(t.el);h.componentMainType=o,h.componentIndex=s,h.tooltipConfig={name:i,option:a({content:i,encodeHTMLContent:!0,formatterParams:l},r)}}function is(t,e){var n;t.isGroup&&(n=e(t)),n||t.traverse(e)}function rs(t,e){if(t)if(y(t))for(var n=0;ni&&(i=e),ei&&(r=i=0),{min:r,max:i}}function cs(t,e,n){hs(t,e,n,-1/0)}function hs(t,e,n,i){if(t.ignoreModelZ)return i;var r=t.getTextContent(),o=t.getTextGuideLine();if(t.isGroup)for(var a=t.childrenRef(),s=0;s=0?i():h=setTimeout(i,-o),u=r};return d.clear=function(){h&&(clearTimeout(h),h=null)},d.debounceNextCall=function(t){l=t},d}function ms(t,e,n,i){var r=t[e];if(r){var o=r[Jb]||r;if(r[Qb]!==n||r[tS]!==i){if(null==n||!i)return t[e]=o;(r=t[e]=ys(o,n,"debounce"===i))[Jb]=o,r[tS]=i,r[Qb]=n}return r}}function vs(t,e){var n=t[e];n&&n[Jb]&&(n.clear&&n.clear(),t[e]=n[Jb])}function _s(t,e){return t.visualStyleMapper||nS[e]||(console.warn("Unknown style type '"+e+"'."),nS.itemStyle)}function xs(t,e){return t.visualDrawType||iS[e]||(console.warn("Unknown style type '"+e+"'."),"fill")}function ws(t){t.overallReset(t.ecModel,t.api,t.payload)}function bs(t){return t.overallProgress&&Ss}function Ss(){this.agent.dirty(),this.getDownstream().dirty()}function Cs(){this.agent&&this.agent.dirty()}function Ms(t){return t.plan?t.plan(t.model,t.ecModel,t.api,t.payload):null}function Ts(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=mn(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?h(e,function(t,e){return Is(e)}):cS}function Is(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var o=e.start;o=0&&Es(l)?l:.5,t.createRadialGradient(a,s,0,a,s,l)}(t,e,n):function(t,e,n){var i=null==e.x?0:e.x,r=null==e.x2?1:e.x2,o=null==e.y?0:e.y,a=null==e.y2?0:e.y2;return e.global||(i=i*n.width+n.x,r=r*n.width+n.x,o=o*n.height+n.y,a=a*n.height+n.y),i=Es(i)?i:0,r=Es(r)?r:1,o=Es(o)?o:0,a=Es(a)?a:0,t.createLinearGradient(i,o,r,a)}(t,e,n),r=e.colorStops,o=0;o0&&(n=i.lineWidth,(e=i.lineDash)&&"solid"!==e&&n>0?"dashed"===e?[4*n,2*n]:"dotted"===e?[n]:x(e)?[e]:y(e)?e:null:null),o=i.lineDashOffset;if(r){var a=i.strokeNoScale&&t.getLineScale?t.getLineScale():1;a&&1!==a&&(r=h(r,function(t){return t/a}),o/=a)}return[r,o]}function Ws(t){var e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))}function Gs(t){return"string"==typeof t&&"none"!==t}function Us(t){var e=t.fill;return null!=e&&"none"!==e}function js(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 Zs(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 Ys(t,e,n){var i=Hn(e.image,e.__image,n);if(Gn(i)){var r=t.createPattern(i,e.repeat||"repeat");if("function"==typeof DOMMatrix&&r&&r.setTransform){var o=new DOMMatrix;o.translateSelf(e.x||0,e.y||0),o.rotateSelf(0,0,(e.rotation||0)*Cf),o.scaleSelf(e.scaleX||1,e.scaleY||1),r.setTransform(o)}return r}}function Xs(t,e,n,i,r){var o=!1;if(!i&&e===(n=n||{}))return!1;if(i||e.opacity!==n.opacity){Ks(t,r),o=!0;var a=Math.max(Math.min(e.opacity,1),0);t.globalAlpha=isNaN(a)?dm.opacity:a}(i||e.blend!==n.blend)&&(o||(Ks(t,r),o=!0),t.globalCompositeOperation=e.blend||dm.blend);for(var s=0;s=0)){NC.push(n);var o=pS.wrapStageHandler(n,r);o.__prio=e,o.__raw=n,t.push(o)}}function ml(t,e){AC[t]=e}function vl(t,e,n,i){return{eventContent:{selected:tr(n),isFromClick:e.isFromClick||!1}}}function _l(t=!1){return zC||("undefined"!=typeof window&&window.L?(zC=window.L,zC):void(t||console.warn("Leaflet (L) is not defined! Make sure Leaflet is loaded before NetJSONGraph.")))}function xl(t,e,n,i,r,o){if(r-i<=n)return;const a=i+r>>1;wl(t,e,a,i,r,o),xl(t,e,n,i,a-1,1-o),xl(t,e,n,a+1,r,1-o)}function wl(t,e,n,i,r,o){for(;r>i;){if(r-i>600){const a=r-i+1,s=n-i+1,l=Math.log(a),u=.5*Math.exp(2*l/3),c=.5*Math.sqrt(l*u*(a-u)/a)*(s-a/2<0?-1:1);wl(t,e,n,Math.max(i,Math.floor(n-s*u/a+c)),Math.min(r,Math.floor(n+(a-s)*u/a+c)),o)}const a=e[2*n+o];let s=i,l=r;for(bl(t,e,i,n),e[2*r+o]>a&&bl(t,e,i,r);sa;)l--}e[2*i+o]===a?bl(t,e,i,l):(l++,bl(t,e,l,r)),l<=n&&(i=l+1),n<=l&&(r=l-1)}}function bl(t,e,n,i){Sl(t,n,i),Sl(e,2*n,2*i),Sl(e,2*n+1,2*i+1)}function Sl(t,e,n){const i=t[e];t[e]=t[n],t[n]=i}function Cl(t,e,n,i){const r=t-n,o=e-i;return r*r+o*o}function Ml(t){y(t)?c(t,function(t){Ml(t)}):s(ZC,t)>=0||(ZC.push(t),m(t)&&(t={install:t}),t.install(YC))}function Tl(t){return isNaN(+t.cpx1)||isNaN(+t.cpy1)}function Il(t){return"_"+t+"Type"}function kl(t,e,n){var i=e.getItemVisual(n,t);if(!i||"none"===i)return i;var r=e.getItemVisual(n,t+"Size"),o=e.getItemVisual(n,t+"Rotate"),a=e.getItemVisual(n,t+"Offset"),s=e.getItemVisual(n,t+"KeepAspect"),l=Ns(r);return i+l+zs(a||0,l)+(o||"")+(s||"")}function Dl(t,e,n){var i=e.getItemVisual(n,t);if(i&&"none"!==i){var r=e.getItemVisual(n,t+"Size"),o=e.getItemVisual(n,t+"Rotate"),a=e.getItemVisual(n,t+"Offset"),s=e.getItemVisual(n,t+"KeepAspect"),l=Ns(r),u=zs(a||0,l),c=Rs(i,-l[0]/2+u[0],-l[1]/2+u[1],l[0],l[1],null,s);return c.__specifiedRotation=null==o||isNaN(o)?void 0:+o*Math.PI/180||0,c.name=t,c}}function Al(t,e){t.x1=e[0][0],t.y1=e[0][1],t.x2=e[1][0],t.y2=e[1][1],t.percent=1;var n=e[2];n?(t.cpx1=n[0],t.cpy1=n[1]):(t.cpx1=NaN,t.cpy1=NaN)}function Ll(t){var e=t.hostModel,n=e.getModel("emphasis");return{lineStyle:e.getModel("lineStyle").getLineStyle(),emphasisLineStyle:n.getModel(["lineStyle"]).getLineStyle(),blurLineStyle:e.getModel(["blur","lineStyle"]).getLineStyle(),selectLineStyle:e.getModel(["select","lineStyle"]).getLineStyle(),emphasisDisabled:n.get("disabled"),blurScope:n.get("blurScope"),focus:n.get("focus"),labelStatesModels:ur(e)}}function Ol(t){return isNaN(t[0])||isNaN(t[1])}function Pl(t){return t&&!Ol(t[0])&&!Ol(t[1])}function Rl(t){return null==t?0:t.length||1}function Nl(t){return t}function zl(t,e){return t.hasOwnProperty(e)||(t[e]=[]),t[e]}function El(t){return t instanceof IM}function Bl(t){for(var e=z(),n=0;n<(t||[]).length;n++){var i=t[n],r=w(i)?i.name:i;null!=r&&null==e.get(r)&&e.set(r,n)}return e}function Vl(t){var e=MM(t);return e.dimNameMap||(e.dimNameMap=Bl(t.dimensionsDefine))}function Fl(t){return t>30}function Hl(t){var e=t.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(t.data=h(e,function(t){var e={coords:[t[0].coord,t[1].coord]};return t[0].name&&(e.fromName=t[0].name),t[1].name&&(e.toName=t[1].name),function(t){for(var e=t[0],n=1,i=t.length;nn&&!l||r=0?i+=u:i-=u:f>=0?i-=u:i+=u}return i}function bu(t,e){var n=[],i=Zt,r=[[],[],[]],o=[[],[]],a=[];e/=2,t.eachEdge(function(t,s){var l=t.getLayout(),u=t.getVisual("fromSymbol"),c=t.getVisual("toSymbol");l.__original||(l.__original=[j(l[0]),j(l[1])],l[2]&&l.__original.push(j(l[2])));var h=l.__original;if(null!=l[2]){if(U(r[0],h[0]),U(r[1],h[2]),U(r[2],h[1]),u&&"none"!==u){var d=Jl(t.node1),p=wu(r,h[0],d*e);i(r[0][0],r[1][0],r[2][0],p,n),r[0][0]=n[3],r[1][0]=n[4],i(r[0][1],r[1][1],r[2][1],p,n),r[0][1]=n[3],r[1][1]=n[4]}c&&"none"!==c&&(d=Jl(t.node2),p=wu(r,h[1],d*e),i(r[0][0],r[1][0],r[2][0],p,n),r[1][0]=n[1],r[2][0]=n[2],i(r[0][1],r[1][1],r[2][1],p,n),r[1][1]=n[1],r[2][1]=n[2]),U(l[0],r[0]),U(l[1],r[2]),U(l[2],r[1])}else U(o[0],h[0]),U(o[1],h[1]),q(a,o[1],o[0]),J(a,a),u&&"none"!==u&&(d=Jl(t.node1),X(o[0],o[0],a,d*e)),c&&"none"!==c&&(d=Jl(t.node2),X(o[1],o[1],a,-d*e)),U(l[0],o[0]),U(l[1],o[1])})}function Su(t){return"view"===t.type}function Cu(t){return"_EC_"+t}function Mu(t,e){return{getValue:function(n){var i=this[t][e];return i.getStore().get(i.getDimensionIndex(n||"value"),this.dataIndex)},setVisual:function(n,i){this.dataIndex>=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 Tu(t,e){if(wT(this).mainData===this){var n=o({},wT(this).datas);n[this.dataType]=e,Lu(e,n,t)}else Ou(e,this.dataType,wT(this).mainData,t);return e}function Iu(t,e){return t.struct&&t.struct.update(),e}function ku(t,e){return c(wT(e).datas,function(n,i){n!==e&&Ou(n.cloneShallow(),i,e,t)}),e}function Du(t){var e=wT(this).mainData;return null==t||null==e?e:wT(e).datas[t]}function Au(){var t=wT(this).mainData;return null==t?[{data:t}]:h(f(wT(t).datas),function(e){return{type:e,data:wT(t).datas[e]}})}function Lu(t,e,n){wT(t).datas={},c(e,function(e,i){Ou(e,i,t,n)})}function Ou(t,e,n,i){wT(n).datas[e]=t,wT(t).mainData=n,t.dataType=e,i.struct&&(t[i.structAttr]=i.struct,i.struct[i.datasAttr[e]]=t),t.getLinkedData=Du,t.getLinkedDataAll=Au}function Pu(t,e){function n(t){var e=_[t];if(e<0){var n=l[t],i=w(n)?n:{name:n},r=new mM,o=i.name;return null!=o&&null!=g.get(o)&&(r.name=r.displayName=o),null!=i.type&&(r.type=i.type),null!=i.displayName&&(r.displayName=i.displayName),_[t]=h.length,r.storeDimIndex=t,h.push(r),r}return h[e]}function i(t,e,n){null!=ix.get(e)?t.otherDims[e]=n:(t.coordDim=e,t.coordDimIndex=n,u.set(e,!0))}function r(t){null==t.name&&(t.name=t.coordDim)}_o(t)||(t=wo(t));var s=(e=e||{}).coordDimensions||[],l=e.dimensionsDefine||t.dimensionsDefine||[],u=z(),h=[],d=function(t,e,n,i){var r=Math.max(t.dimensionsDetectedCount||1,e.length,n.length,i||0);return c(e,function(t){var e;w(t)&&(e=t.dimsDef)&&(r=Math.max(r,e.length))}),r}(t,s,l,e.dimensionsCount),p=e.canOmitUnusedDimensions&&Fl(d),f=l===t.dimensionsDefine,g=f?Vl(t):Bl(l),y=e.encodeDefine;!y&&e.encodeDefaulter&&(y=e.encodeDefaulter(t,d));for(var m=z(y),_=new lw(d),x=0;x<_.length;x++)_[x]=-1;if(!p)for(x=0;x0&&(i.name=r+(o-1)),o++,e.set(r,o)}}(h),new IM({source:t,dimensions:h,fullDimensionCount:d,dimensionOmitted:p})}function Ru(t,e,n){if(n||e.hasKey(t)){for(var i=0;e.hasKey(t+i);)i++;t+=i}return e.set(t,!0),t}function Nu(t){return"category"===t.get("type")}function zu(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}function Eu(t,e){return{seriesType:t,plan:ga(),reset:function(t){var n=t.getData(),i=t.coordinateSystem,r=e||t.pipelineContext.large;if(i){var o=h(i.dimensions,function(t){return n.mapDimension(t)}).slice(0,2),a=o.length,s=n.getCalculationInfo("stackResultDimension");zu(n,o[0])&&(o[0]=s),zu(n,o[1])&&(o[1]=s);var l=n.getStore(),u=n.getDimensionIndex(o[0]),c=n.getDimensionIndex(o[1]);return a&&{progress:function(t,e){for(var n,o=r&&(y(n=(t.end-t.start)*a)?RT?new Float32Array(n):n:new NT(n)),s=[],h=[],d=t.start,p=0;d=e[0]&&t<=e[1]}function Yu(t,e){return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])}function Xu(t,e){return t*(e[1]-e[0])+e[0]}function qu(t,e,n){var i=Math.log(t);return[Math.log(n?e[0]:Math.max(0,e[0]))/i,Math.log(n?e[1]:Math.max(0,e[1]))/i]}function $u(t){return t.get("stack")||rI+t.seriesIndex}function Ku(t){return t.dim+t.index}function Ju(t,e,n,i){return br(new Date(e),t,i).getTime()===br(new Date(n),t,i).getTime()}function Qu(t,e){return(t/=g_)>16?16:t>7.5?7:t>3.5?4:t>1.5?2:1}function tc(t){return(t/=2592e6)>6?6:t>3?3:t>2?2:1}function ec(t){return(t/=f_)>12?12:t>6?6:t>3.5?4:t>2?2:1}function nc(t,e){return(t/=e?p_:d_)>30?30:t>20?20:t>15?15:t>10?10:t>5?5:t>2?2:1}function ic(t){return dn(t,!0)}function rc(t,e,n){var i=Math.max(0,s(w_,e)-1);return br(new Date(t),w_[i],n).getTime()}function oc(t,e){return lI(t,on(e))}function ac(t,e,n){var i=t.rawExtentInfo;return i||(i=new gI(t,e,n),t.rawExtentInfo=i,i)}function sc(t,e){return null==e?null:T(e)?NaN:t.parse(e)}function lc(t,e){var n=t.type,i=ac(t,e,t.getExtent()).calculate();t.setBlank(i.isBlank);var r,o,a,s=i.min,l=i.max,u=e.ecModel;if(u&&"time"===n){var h=function(t,e){var n=[];return e.eachSeriesByType("bar",function(t){(function(t){return t.coordinateSystem&&"cartesian2d"===t.coordinateSystem.type})(t)&&n.push(t)}),n}(0,u),d=!1;if(c(h,function(t){d=d||t.getBaseAxis()===e.axis}),d){var p=(o=function(t){var e={};c(t,function(t){var n=t.coordinateSystem.getBaseAxis();if("time"===n.type||"value"===n.type)for(var i=t.getData(),r=n.dim+"_"+n.index,o=i.getDimensionIndex(i.mapDimension(n.dim)),a=i.getStore(),s=0,l=a.count();s0&&(o=null===o?s:Math.min(o,s))}n[i]=o}}return n}(r=h),a=[],c(r,function(t){var e,n=t.coordinateSystem.getBaseAxis(),i=n.getExtent();if("category"===n.type)e=n.getBandWidth();else if("value"===n.type||"time"===n.type){var r=o[n.dim+"_"+n.index],s=Math.abs(i[1]-i[0]),l=n.scale.getExtent(),u=Math.abs(l[1]-l[0]);e=r?s/u*r:s}else{var c=t.getData();e=Math.abs(i[1]-i[0])/c.count()}var h=Uy(t.get("barWidth"),e),d=Uy(t.get("barMaxWidth"),e),p=Uy(t.get("barMinWidth")||(function(t){return t.pipelineContext&&t.pipelineContext.large}(t)?.5:1),e),f=t.get("barGap"),g=t.get("barCategoryGap"),y=t.get("defaultBarGap");a.push({bandWidth:e,barWidth:h,barMaxWidth:d,barMinWidth:p,barGap:f,barCategoryGap:g,defaultBarGap:y,axisKey:Ku(n),stackId:$u(t)})}),function(t){var e={};c(t,function(t,n){var i=t.axisKey,r=t.bandWidth,o=e[i]||{bandWidth:r,remainedWidth:r,autoWidthCount:0,categoryGap:null,gap:t.defaultBarGap||0,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 c=t.barMinWidth;c&&(a[s].minWidth=c);var h=t.barGap;null!=h&&(o.gap=h);var d=t.barCategoryGap;null!=d&&(o.categoryGap=d)});var n={};return c(e,function(t,e){n[e]={};var i=t.stacks,r=t.bandWidth,o=t.categoryGap;if(null==o){var a=f(i).length;o=Math.max(35-4*a,15)+"%"}var s=Uy(o,r),l=Uy(t.gap,1),u=t.remainedWidth,h=t.autoWidthCount,d=(u-s)/(h+(h-1)*l);d=Math.max(d,0),c(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=d;e&&ei&&(i=n),i!==d&&(t.width=i,u-=i+l*i,h--)}}),d=(u-s)/(h+(h-1)*l),d=Math.max(d,0);var p,g=0;c(i,function(t,e){t.width||(t.width=d),p=t,g+=t.width*(1+l)}),p&&(g-=p.width*l);var y=-g/2;c(i,function(t,i){n[e][i]=n[e][i]||{bandWidth:r,offset:y,width:t.width},y+=t.width*(1+l)})}),n}(a)),g=function(t,e,n,i){var r=n.axis.getExtent(),o=Math.abs(r[1]-r[0]),a=function(t,e){if(t&&e)return t[Ku(e)]}(i,n.axis);if(void 0===a)return{min:t,max:e};var s=1/0;c(a,function(t){s=Math.min(t.offset,s)});var l=-1/0;c(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,d=h/(1-(s+l)/o)-h;return{min:t-=d*(s/u),max:e+=d*(l/u)}}(s,l,e,p);s=g.min,l=g.max}}return{extent:[s,l],fixMin:i.minFixed,fixMax:i.maxFixed}}function uc(t,e){var n=e,i=lc(t,n),r=i.extent,o=n.get("splitNumber");t instanceof fI&&(t.base=n.get("logBase"));var a=t.type,s=n.get("interval"),l="interval"===a||"time"===a;t.setBreaksFromOption(mc(n)),t.setExtent(r[0],r[1]),t.calcNiceExtent({splitNumber:o,fixMin:i.fixMin,fixMax:i.fixMax,minInterval:l?n.get("minInterval"):null,maxInterval:l?n.get("maxInterval"):null}),null!=s&&t.setInterval&&t.setInterval(s)}function cc(t){var e,n=t.getLabelModel().get("formatter");if("time"===t.type){var i=v(e=n)||m(e)?e:function(t){t=t||{};var e={},n=!0;return c(w_,function(e){n&&(n=null==t[e])}),c(w_,function(i,r){var o=t[i];e[i]={};for(var a=null,s=r;s>=0;s--){var l=w_[s],u=w(o)&&!y(o)?o[l]:o,c=void 0;y(u)?a=(c=u.slice())[0]||"":v(u)?c=[a=u]:(null==a?a=v_[i]:m_[l].test(a)||(a=e[l][l][0]+" "+a),c=[a],n&&(c[1]="{primary|"+a+"}")),e[i][l]=c}}),e}(e);return function(e,n){return t.scale.getFormattedLabel(e,n,i)}}if(v(n))return function(e){var i=t.scale.getLabel(e);return n.replace("{value}",null!=i?i:"")};if(m(n)){if("category"===t.type)return function(e,i){return n(hc(t,e),e.value-t.scale.getExtent()[0],null)};var r=yr();return function(e,i){var o=null;return r&&(o=r.makeAxisLabelFormatterParamBreak(o,e.break)),n(hc(t,e),i,o)}}return function(e){return t.scale.getLabel(e)}}function hc(t,e){return"category"===t.type?t.scale.getLabel(e):e.value}function dc(t){var e=t.get("interval");return null==e?"auto":e}function pc(t){return"category"===t.type&&0===dc(t.getLabelModel())}function fc(t,e){var n={};return c(t.mapDimensionsAll(e),function(e){n[function(t,e){return zu(t,e)?t.getCalculationInfo("stackResultDimension"):e}(t,e)]=!0}),f(n)}function gc(t){return"middle"===t||"center"===t}function yc(t){return t.getShallow("show")}function mc(t){var e,n=t.get("breaks",!0);if(null!=n)return yr()?"x"!==(e=t.axis).dim&&"y"!==e.dim&&"z"!==e.dim&&"single"!==e.dim||"category"===e.type?void 0:n:void 0}function vc(t){return("interval"===t.type||"time"===t.type)&&!t.hasBreaks()}function _c(t){return{out:{noPxChangeTryDetermine:[]},kind:t}}function xc(t,e){var n=h(e,function(e){return t.scale.parse(e)});return"time"===t.type&&n.length>0&&(n.sort(),n.unshift(n[0]),n.push(n[n.length-1])),n}function wc(t,e,n){var i,r,o=II(t),a=dc(e),s=n.kind===CI;if(!s){var l=Sc(o,a);if(l)return l}m(a)?i=kc(t,a):(r="auto"===a?function(t,e){if(e.kind===CI){var n=t.calculateCategoryInterval(e);return e.out.noPxChangeTryDetermine.push(function(){return SI(t).autoInterval=n,!0}),n}var i=SI(t).autoInterval;return null!=i?i:SI(t).autoInterval=t.calculateCategoryInterval(e)}(t,n):a,i=Ic(t,r));var u={labels:i,labelCategoryInterval:r};return s?n.out.noPxChangeTryDetermine.push(function(){return Cc(o,a,u),!0}):Cc(o,a,u),u}function bc(t){return function(e){return SI(e)[t]||(SI(e)[t]={list:[]})}}function Sc(t,e){for(var n=0;ne&&i.axisExtent0===r[0]&&i.axisExtent1===r[1])return o;i.lastTickCount=n,i.lastAutoInterval=e,i.axisExtent0=r[0],i.axisExtent1=r[1]}function Ic(t,e,n){function i(t){var e={value:t};l.push(n?t:{formattedLabel:r(e),rawLabel:o.getLabel(e),tickValue:t,time:void 0,break:void 0})}var r=cc(t),o=t.scale,a=o.getExtent(),s=t.getLabelModel(),l=[],u=Math.max((e||0)+1,1),c=a[0],h=o.count();0!==c&&u>1&&h/u>2&&(c=Math.round(Math.ceil(c/u)*u));var d=pc(t),p=s.get("showMinLabel")||d,f=s.get("showMaxLabel")||d;p&&c!==a[0]&&i(a[0]);for(var g=c;g<=a[1];g+=u)i(g);return f&&g-u!==a[1]&&i(a[1]),l}function kc(t,e,n){var i=t.scale,r=cc(t),o=[];return c(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,time:void 0,break:void 0})}),o}function Dc(t,e){var n=(t[1]-t[0])/e/2;t[0]+=n,t[1]-=n}function Ac(t,e,n){n=n||3,e?t.dirty|=n:t.dirty&=~n}function Lc(t,e){return e=e||3,null==t.dirty||!!(t.dirty&e)}function Oc(t){if(t)return Lc(t)&&function(t,e,n){var i=e.getComputedTransform();t.transform=ss(t.transform,i);var r=t.localRect=as(t.localRect,e.getBoundingRect()),o=e.style,a=o.margin,s=n&&n.marginForce,l=n&&n.minMarginForce,u=n&&n.marginDefault,c=o.__marginType;null==c&&u&&(a=u,c=Gv.textMargin);for(var h=0;h<4;h++)PI[h]=c===Gv.minMargin&&l&&null!=l[h]?l[h]:s&&null!=s[h]?s[h]:a?a[h]:0;c===Gv.textMargin&&ts(r,PI,!1,!1);var d=t.rect=as(t.rect,r);i&&d.applyTransform(i),c===Gv.minMargin&&ts(d,PI,!1,!1),t.axisAligned=os(i),(t.label=t.label||{}).ignore=e.ignore,Ac(t,!1),Ac(t,!0,2)}(t,t.label,t),t}function Pc(t,e){for(var n=0;n=0,o=0,a=t.length;o.1?"x":"y",h=a.transGroup[u];if(s.sort(function(t,e){return Math.abs(t.label[u]-h)-Math.abs(e.label[u]-h)}),l&&r){var d=o.getExtent(),p=Math.min(d[0],d[1]),f=Math.max(d[0],d[1])-p;r.union(new lg(p,0,f,1))}a.stOccupiedRect=r,a.labelInfoList=s}(t,n,i,l)}function Vc(t){t&&(t.ignore=!0)}function Fc(t,e,n,i,r){for(var o=[],a=[],s=[],l=0;l0&&i>0||n<0&&i<0)}(t)}function $c(t,e){c(t.x,function(t){return Kc(t,e.x,e.width)}),c(t.y,function(t){return Kc(t,e.y,e.height)})}function Kc(t,e,n){var i=[0,n],r=t.inverse?1:0;t.setExtent(i[r],i[1-r]),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)}function Jc(t,e,n,i,r,o,a){function s(t){c(r[Vb[t]],function(e){if(yc(e.model)){var n=o.ensureRecord(e.model),i=n.labelInfoList;if(i)for(var r=0;r0&&!T(e)&&e>1e-4&&(t/=e),t}Qc(i,r,CI,e,!1,a);var h=[0,0,0,0];s(0),s(1),l(i,0,NaN),l(i,1,NaN);var d=null==function(t,e){if(t&&e)for(var n=0,i=t.length;n0});return ts(i,h,!0,!0,n),$c(r,i),d}function Qc(t,e,n,i,r,o){function a(e){l[Vb[1-e]]=t[Fb[e]]<=.5*o.refContainer[Fb[e]]?0:1-e==1?2:1}var s=n===MI;c(e,function(e){return c(e,function(e){yc(e.model)&&(function(t,e,n){var i=jc(e,n);t.updateCfg(i)}(e.axisBuilder,t,e.model),e.axisBuilder.build(s?{axisTickLabelDetermine:!0}:{axisTickLabelEstimate:!0},{noPxChange:r}))})});var l={x:0,y:0};a(0),a(1),c(e,function(t,e){return c(t,function(t){yc(t.model)&&(("all"===i||s)&&t.axisBuilder.build({axisName:!0},{nameMarginLevel:l[e]}),s&&t.axisBuilder.build({axisLine:!0}))})})}function th(t,e){return"all"===t||y(t)&&s(t,e)>=0||t===e}function eh(t){var e=(t.ecModel.getComponent("axisPointer")||{}).coordSysAxesInfo;return e&&e.axesInfo[ih(t)]}function nh(t){return!!t.get(["handle","show"])}function ih(t){return t.type+"||"+t.id}function rh(t){t.registerComponentView(uk),t.registerComponentModel(VT),t.registerCoordinateSystem("cartesian2d",QI),Fu(t,"x",HT,ck),Fu(t,"y",HT,ck),t.registerComponentView(sk),t.registerComponentView(lk),t.registerPreprocessor(function(t){t.xAxis&&t.yAxis&&!t.grid&&(t.grid={})})}function oh(t,e,n,i){ah(hk(n).lastProp,i)||(hk(n).lastProp=i,e?Ia(n,i,t):(n.stopAnimation(),n.attr(i)))}function ah(t,e){if(w(t)&&w(e)){var n=!0;return c(e,function(e,i){n=n&&ah(t[i],e)}),!!n}return t===e}function sh(t,e){t[e.get(["label","show"])?"show":"hide"]()}function lh(t){return{x:t.x||0,y:t.y||0,rotation:t.rotation||0}}function uh(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 ch(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:hc(e,{value:t}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};c(i,function(t){var e=n.getSeriesByIndex(t.seriesIndex),i=e&&e.getDataParams(t.dataIndexInside);i&&s.seriesData.push(i)}),v(a)?o=a.replace("{value}",o):m(a)&&(o=a(s))}return o}function hh(t,e,n){var i=[1,0,0,1,0,0];return xt(i,i,n.rotation),_t(i,i,n.position),Ua([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}function dh(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}function ph(t){return"x"===t.dim?0:1}function fh(t,e,n){if(!Qp.node){var i=e.getZr();_k(i).records||(_k(i).records={}),function(t,e){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);xk(_k(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)})}_k(t).initialized||(_k(t).initialized=!0,n("click",g(yh,"click")),n("mousemove",g(yh,"mousemove")),n("globalout",gh))}(i,e),(_k(i).records[t]||(_k(i).records[t]={})).handler=n}}function gh(t,e,n){t.handler("leave",null,n)}function yh(t,e,n,i){e.handler(t,n,i)}function mh(t,e){if(!Qp.node){var n=e.getZr();(_k(n).records||{})[t]&&(_k(n).records[t]=null)}}function vh(t,e){var n,i=[],r=t.seriesIndex;if(null==r||!(n=e.getSeriesByIndex(r)))return{point:[]};var o=n.getData(),a=In(o,t);if(null==a||a<0||y(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(),c=l.getOtherAxis(u).dim,d="x"===c||"radius"===c?1:0,p=o.mapDimension(u.dim),f=[];f[d]=o.get(p,a),f[1-d]=o.get(o.getCalculationInfo("stackResultDimension"),a),i=l.dataToPoint(f)||[]}else i=l.dataToPoint(o.getValues(h(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}}function _h(t,e,n){var i=t.currTrigger,r=[t.x,t.y],o=t,a=t.dispatchAction||_f(n.dispatchAction,n),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){Ch(r)&&(r=vh({seriesIndex:o.seriesIndex,dataIndex:o.dataIndex},e).point);var l=Ch(r),u=o.axesInfo,h=s.axesInfo,d="leave"===i||Ch(r),p={},f={},y={list:[],map:{}},m={showPointer:g(wh,f),showTooltip:g(bh,y)};c(s.coordSysMap,function(t,e){var n=l||t.containPoint(r);c(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(!d&&n&&(!u||o)){var a=o&&o.value;null!=a||l||(a=i.pointToData(r)),null!=a&&xh(t,a,m,!1,p)}})});var v={};return c(h,function(t,e){var n=t.linkGroup;n&&!f[e]&&c(n.axesInfo,function(e,i){var r=f[i];if(e!==t&&r){var o=r.value;n.mapper&&(o=t.axis.scale.parse(n.mapper(o,Sh(e),Sh(t)))),v[t.key]=o}})}),c(v,function(t,e){xh(h[e],t,m,!0,p)}),function(t,e,n){var i=n.axesInfo=[];c(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})})}(f,h,p),function(t,e,n,i){if(!Ch(e)&&t.list.length){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})}else i({type:"hideTip"})}(y,r,t,a),function(t,e,n){var i=n.getZr(),r="axisPointerLastHighlights",o=Sk(i)[r]||{},a=Sk(i)[r]={};c(t,function(t,e){var n=t.axisPointerModel.option;"show"===n.status&&t.triggerEmphasis&&c(n.seriesDataIndices,function(t){a[t.seriesIndex+" | "+t.dataIndex]=t})});var s=[],l=[];c(o,function(t,e){!a[e]&&l.push(t)}),c(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 xh(t,e,n,i,r){var a=t.axis;if(!a.scale.isBlank()&&a.containData(e))if(t.involveSeries){var s=function(t,e){var n=e.axis,i=n.dim,r=t,o=[],a=Number.MAX_VALUE,s=-1;return c(e.seriesModels,function(e,l){var u,h,d=e.getData().mapDimensionsAll(i);if(e.getAxisTooltipData){var p=e.getAxisTooltipData(d,t,n);h=p.dataIndices,u=p.nestestValue}else{if(!(h=e.indicesOfNearest(i,d[0],t,"category"===n.type?.5:null)).length)return;u=e.getData().get(d[0],h[0])}if(null!=u&&isFinite(u)){var f=t-u,g=Math.abs(f);g<=a&&((g=0&&s<0)&&(a=g,s=f,r=u,o.length=0),c(h,function(t){o.push({seriesIndex:e.seriesIndex,dataIndexInside:t,dataIndex:e.getData().getRawIndex(t)})}))}}),{payloadBatch:o,snapToValue:r}}(e,t),l=s.payloadBatch,u=s.snapToValue;l[0]&&null==r.seriesIndex&&o(r,l[0]),!i&&t.snap&&a.containData(u)&&null!=u&&(e=u),n.showPointer(t,e,l),n.showTooltip(t,s,u)}else n.showPointer(t,e)}function wh(t,e,n,i){t[e.key]={value:n,payloadBatch:i}}function bh(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=ih(l),c=t.map[u];c||(c=t.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},t.list.push(c)),c.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 Sh(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 Ch(t){return!t||null==t[0]||isNaN(t[0])||null==t[1]||isNaN(t[1])}function Mh(t){nk.registerAxisPointerClass("CartesianAxisPointer",mk),t.registerComponentModel(vk),t.registerComponentView(bk),t.registerPreprocessor(function(t){if(t){(!t.axisPointer||0===t.axisPointer.length)&&(t.axisPointer={});var e=t.axisPointer.link;e&&!y(e)&&(t.axisPointer.link=[e])}}),t.registerProcessor(t.PRIORITY.PROCESSOR.STATISTIC,function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=function(t,e){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return function(t,e,n){var r=e.getComponent("tooltip"),o=e.getComponent("axisPointer"),s=o.get("link",!0)||[],l=[];c(n.getCoordinateSystems(),function(n){function u(r,u,h){var f=h.model.getModel("axisPointer",o),g=f.get("show");if(g&&("auto"!==g||r||nh(f))){null==u&&(u=f.get("triggerTooltip")),f=r?function(t,e,n,r,o,s){var l=e.getModel("axisPointer"),u={};c(["type","snap","lineStyle","shadowStyle","label","animation","animationDurationUpdate","animationEasingUpdate","z"],function(t){u[t]=i(l.get(t))}),u.snap="category"!==t.type&&!!s,"cross"===l.get("type")&&(u.type="line");var h=u.label||(u.label={});if(null==h.show&&(h.show=!1),"cross"===o){var d=l.get(["label","show"]);if(h.show=null==d||d,!s){var p=u.lineStyle=l.get("crossStyle");p&&a(h,p.textStyle)}}return t.model.getModel("axisPointer",new i_(u,n,r))}(h,p,o,e,r,u):f;var y=f.get("snap"),m=f.get("triggerEmphasis"),v=ih(h.model),_=u||y||"category"===h.type,x=t.axesInfo[v]={key:v,axis:h,coordSys:n,axisPointerModel:f,triggerTooltip:u,triggerEmphasis:m,involveSeries:_,snap:y,useHandle:nh(f),seriesModels:[],linkGroup:null};d[v]=x,t.seriesInvolved=t.seriesInvolved||_;var w=function(t,e){for(var n=e.model,i=e.dim,r=0;r=0;o--){var a=t[o];a&&(a instanceof i_&&(a=a.get("tooltip",!0)),v(a)&&(a={formatter:a}),a&&(i=new i_(a,i,r)))}return i}function Nh(t,e){return t.dispatchAction||_f(e.dispatchAction,e)}function zh(t){return"center"===t||"middle"===t}function Eh(t){return t+"Axis"}function Bh(t){var e={};return c(["start","end","startValue","endValue","throttle"],function(n){t.hasOwnProperty(n)&&(e[n]=t[n])}),e}function Vh(t,e,n,i,r,o){t=t||0;var a=n[1]-n[0];if(null!=r&&(r=Hh(r,[0,a])),null!=o&&(o=Math.max(o,null!=r?r:0)),"all"===i){var s=Math.abs(e[1]-e[0]);s=Hh(s,[0,a]),r=o=Hh(s,[r,o]),i=0}e[0]=Hh(e[0],n),e[1]=Hh(e[1],n);var l=Fh(e,i);e[i]+=t;var u,c=r||0,h=n.slice();return l.sign<0?h[0]+=c:h[1]-=c,e[i]=Hh(e[i],h),u=Fh(e,i),null!=r&&(u.sign!==l.sign||u.spano&&(e[1-i]=e[i]+u.sign*o),e}function Fh(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 Hh(t,e){return Math.min(null!=e[1]?e[1]:1/0,Math.max(null!=e[0]?e[0]:-1/0,t))}function Wh(t){t.registerComponentModel(Fk),t.registerComponentView(Hk),function(t){Yk||(Yk=!0,t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,Zk),function(t){t.registerAction("dataZoom",function(t,e){c(function(t,e){function n(t){!s.get(t.uid)&&function(t){var e=!1;return t.eachTargetAxis(function(t,n){var i=o.get(t);i&&i[n]&&(e=!0)}),e}(t)&&(i(t),r=!0)}function i(t){s.set(t.uid,!0),a.push(t),t.eachTargetAxis(function(t,e){(o.get(t)||o.set(t,[]))[e]=!0})}var r,o=z(),a=[],s=z();t.eachComponent({mainType:"dataZoom",query:e},function(t){s.get(t.uid)||i(t)});do{r=!1,t.eachComponent("dataZoom",n)}while(r);return a}(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"}))}(t)}function Gh(t,e){qk[t]=e}function Uh(t){return qk[t]}function jh(t,e){var n=S_(e.get("padding")),i=e.getItemStyle(["color","opacity"]);return i.fill=e.get("backgroundColor"),new yv({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})}function Zh(t){return t.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}function Yh(t,e){return h(t,function(t,n){var i=e&&e[n];if(w(i)&&!y(i)){w(t)&&!y(t)||(t={value:t});var r=null!=i.name&&null==t.name;return t=a(t,i),r&&delete t.name,t}return t})}function Xh(t){var e=hD(t);return e.snapshots||(e.snapshots=[{}]),e.snapshots}function qh(t,e){var n=MD[e.brushType].createCover(t,e);return n.__brushOption=e,Jh(n,e),t.group.add(n),n}function $h(t,e){var n=td(e);return n.endCreating&&(n.endCreating(t,e),Jh(e,e.__brushOption)),e}function Kh(t,e){var n=e.__brushOption;td(e).updateCoverShape(t,e,n.range,n)}function Jh(t,e){var n=e.z;null==n&&(n=1e4),t.traverse(function(t){t.z=n,t.z2=n})}function Qh(t,e){td(e).updateCommon(t,e),Kh(t,e)}function td(t){return MD[t.__brushOption.brushType]}function ed(t,e,n){var i,r=t._panels;if(!r)return fD;var o=t._transform;return c(r,function(t){t.isTargetByCursor(e,n,o)&&(i=t)}),i}function nd(t,e){var n=t._panels;if(!n)return fD;var i=e.__brushOption.panelId;return null!=i?n[i]:fD}function id(t){var e=t._covers,n=e.length;return c(e,function(e){t.group.remove(e)},t),e.length=0,!!n}function rd(t,e){var n=h(t._covers,function(t){var e=t.__brushOption,n=i(e.range);return{brushType:e.brushType,panelId:e.panelId,range:n}});t.trigger("brush",{areas:n,isEnd:!!e.isEnd,removeOnClick:!!e.removeOnClick})}function od(t){var e=t.length-1;return e<0&&(e=0),[t[0],t[e]]}function ad(t,e,n,i){var r=new Ny;return r.add(new yv({name:"main",style:cd(n),silent:!0,draggable:!0,cursor:"move",drift:g(pd,t,e,r,["n","s","w","e"]),ondragend:g(rd,e,{isEnd:!0})})),c(i,function(n){r.add(new yv({name:n.join(""),style:{opacity:0},draggable:!0,silent:!0,invisible:!0,drift:g(pd,t,e,r,n),ondragend:g(rd,e,{isEnd:!0})}))}),r}function sd(t,e,n,i){var r=i.brushStyle.lineWidth||0,o=yD(r,6),a=n[0][0],s=n[1][0],l=a-r/2,u=s-r/2,c=n[0][1],h=n[1][1],d=c-o+r/2,p=h-o+r/2,f=c-a,g=h-s,y=f+r,m=g+r;ud(t,e,"main",a,s,f,g),i.transformable&&(ud(t,e,"w",l,u,o,m),ud(t,e,"e",d,u,o,m),ud(t,e,"n",l,u,y,o),ud(t,e,"s",l,p,y,o),ud(t,e,"nw",l,u,o,o),ud(t,e,"ne",d,u,o,o),ud(t,e,"sw",l,p,o,o),ud(t,e,"se",d,p,o,o))}function ld(t,e){var n=e.__brushOption,i=n.transformable,r=e.childAt(0);r.useStyle(cd(n)),r.attr({silent:!i,cursor:i?"move":"default"}),c([["w"],["e"],["n"],["s"],["s","e"],["s","w"],["n","e"],["n","w"]],function(n){var r=e.childOfName(n.join("")),o=1===n.length?dd(t,n[0]):function(t,e){var n=[dd(t,e[0]),dd(t,e[1])];return("e"===n[0]||"w"===n[0])&&n.reverse(),n.join("")}(t,n);r&&r.attr({silent:!i,invisible:!i,cursor:i?xD[o]+"-resize":null})})}function ud(t,e,n,i,r,o,a){var s=e.childOfName(n);s&&s.setShape(function(t){var e=gD(t[0][0],t[1][0]),n=gD(t[0][1],t[1][1]);return{x:e,y:n,width:yD(t[0][0],t[1][0])-e,height:yD(t[0][1],t[1][1])-n}}(yd(t,e,[[i,r],[i+o,r+a]])))}function cd(t){return a({strokeNoScale:!0},t.brushStyle)}function hd(t,e,n,i){var r=[gD(t,n),gD(e,i)],o=[yD(t,n),yD(e,i)];return[[r[0],o[0]],[r[1],o[1]]]}function dd(t,e){var n=ja({w:"left",e:"right",n:"top",s:"bottom"}[e],function(t){return Ga(t.group)}(t));return{left:"w",right:"e",top:"n",bottom:"s"}[n]}function pd(t,e,n,i,r,o){var a=n.__brushOption,s=t.toRectRange(a.range),l=gd(e,r,o);c(i,function(t){var e=_D[t];s[e[0]][e[1]]+=l[e[0]]}),a.range=t.fromRectRange(hd(s[0][0],s[1][0],s[0][1],s[1][1])),Qh(e,n),rd(e,{isEnd:!1})}function fd(t,e,n,i){var r=e.__brushOption.range,o=gd(t,n,i);c(r,function(t){t[0]+=o[0],t[1]+=o[1]}),Qh(t,e),rd(t,{isEnd:!1})}function gd(t,e,n){var i=t.group,r=i.transformCoordToLocal(e,n),o=i.transformCoordToLocal(0,0);return[r[0]-o[0],r[1]-o[1]]}function yd(t,e,n){var r=nd(t,e);return r&&r!==fD?r.clipPath(n,t._transform):i(n)}function md(t){var e=t.event;e.preventDefault&&e.preventDefault()}function vd(t,e,n){return t.childOfName("main").contain(e,n)}function _d(t,e,n,r){var o,a=t._creatingCover,s=t._creatingPanel,l=t._brushOption;if(t._track.push(n.slice()),function(t){var e=t._track;if(!e.length)return!1;var n=e[e.length-1],i=e[0],r=n[0]-i[0],o=n[1]-i[1];return mD(r*r+o*o,.5)>6}(t)||a){if(s&&!a){"single"===l.brushMode&&id(t);var u=i(l);u.brushType=xd(u.brushType,s),u.panelId=s===fD?null:s.panelId,a=t._creatingCover=qh(t,u),t._covers.push(a)}if(a){var c=MD[xd(t._brushType,s)];a.__brushOption.range=c.getCreatingRange(yd(t,a,t._track)),r&&($h(t,a),c.updateCommon(t,a)),Kh(t,a),o={isEnd:r}}}else r&&"single"===l.brushMode&&l.removeOnClick&&ed(t,e,n)&&id(t)&&(o={isEnd:r,removeOnClick:!0});return o}function xd(t,e){return"auto"===t?e.defaultBrushType:t}function wd(t,e){if(t._dragging){md(e);var n=t.group.transformCoordToLocal(e.offsetX,e.offsetY),i=_d(t,e,n,!0);t._dragging=!1,t._track=[],t._creatingCover=null,i&&rd(t,i)}}function bd(t){return{createCover:function(e,n){return ad({toRectRange:function(e){var n=[e,[0,100]];return t&&n.reverse(),n},fromRectRange:function(e){return e[t]}},e,n,[[["w"],["e"]],[["n"],["s"]]][t])},getCreatingRange:function(e){var n=od(e);return[gD(n[0][t],n[1][t]),yD(n[0][t],n[1][t])]},updateCoverShape:function(e,n,i,r){var o,a=nd(e,n);if(a!==fD&&a.getLinearBrushOtherExtent)o=a.getLinearBrushOtherExtent(t);else{var s=e._zr;o=[0,[s.getWidth(),s.getHeight()][1-t]]}var l=[i,o];t&&l.reverse(),sd(e,n,l,r)},updateCommon:ld,contain:vd}}function Sd(t){return t=Td(t),function(e){return Xa(e,t)}}function Cd(t,e){return t=Td(t),function(n){var i=null!=e?e:n,r=i?t.x:t.y;return[r,r+((i?t.width:t.height)||0)]}}function Md(t,e,n){var i=Td(t);return function(t,r){return i.contain(r[0],r[1])&&!pu(t,e,n)}}function Td(t){return lg.create(t)}function Id(t){return t[0]>t[1]&&t.reverse(),t}function kd(t,e){return Dn(t,e,{includeMainTypes:ID})}function Dd(t,e,n,i){var r=n.getAxis(["x","y"][t]),o=Id(h([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}}function Ad(t,e,n,i){return[e[0]-i[t]*n[0],e[1]-i[t]*n[1]]}function Ld(t){return t?[t[0][1]-t[0][0],t[1][1]-t[1][0]]:[NaN,NaN]}function Od(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}function Pd(t,e,n,i){zd(t,e,n,i),n.dispatchAction({type:"legendToggleSelect",name:null!=t?t:e}),Nd(t,e,n,i)}function Rd(t){for(var e,n=t.getZr().storage.getDisplayList(),i=0,r=n.length;i0&&(s.during=l?_f($d,{el:e,userDuring:l}):null,s.setToFinal=!0,s.scope=t),o(s,n[a]),s}function Yd(t,e,n,i){var r=(i=i||{}).dataIndex,a=i.isInit,l=i.clearStyle,u=n.isAnimationEnabled(),h=oA(t),d=e.style;h.userDuring=e.during;var p={},g={};if(function(t,e,n){for(var i=0;i=0)){var h=t.getAnimationStyleProps(),d=h?h.style:null;if(d){!r&&(r=i.style={});var p=f(n);for(c=0;c0&&t.animateFrom(_,x)}else!function(t,e,n,i,r){if(r){var o=Zd("update",t,e,i,n);o.duration>0&&t.animateFrom(r,o)}}(t,e,r||0,n,p);Xd(t,e),d?t.dirty():t.markRedraw()}function Xd(t,e){for(var n=oA(t).leaveToProps,i=0;i=0){!a&&(a=i[t]={});var p=f(l);for(d=0;d"}(r,e.attrs)+("style"!==r?st(o):o||"")+(i?""+n+h(i,function(e){return t(e)}).join(n)+n:"")+""}(t)}function lp(t){return{zrId:t,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssStyleCache:{},cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function up(t,e,n,i){return ap("svg","root",{width:t,height:e,xmlns:MA,"xmlns:xlink":TA,version:"1.1",baseProfile:"full",viewBox:!!i&&"0 0 "+t+" "+e},n)}function cp(){return kA++}function hp(t,e,n){var i=o({},t.shape);o(i,e),t.buildPath(n,i);var r=new vA;return r.reset(xe(t)),n.rebuildPath(r,1),r.generateStr(),r.getStr()}function dp(t,e){var n=e.originX,i=e.originY;(n||i)&&(t[AA]=n+"px "+i+"px")}function pp(t,e){var n=e.zrId+"-ani-"+e.cssAnimIdx++;return e.cssAnims[n]=t,n}function fp(t){return v(t)?DA[t]?"cubic-bezier("+DA[t]+")":Xt(t)?t:"":""}function gp(t,e,n,i){function r(r){function a(t,e,n){for(var i=t.getTracks(),r=t.getMaxTime(),o=0;o0}).length)return pp(d,n)+" "+r[0]+" both"}var a=t.animators,s=a.length,l=[];if(t instanceof xb){var u=function(t,e,n){var i,r,o={};if(c(t.shape.paths,function(t){var e=lp(n.zrId);e.animation=!0,gp(t,{},e,!0);var a=e.cssAnims,s=e.cssNodes,l=f(a),u=l.length;if(u){var c=a[r=l[u-1]];for(var h in c){var d=c[h];o[h]=o[h]||{d:""},o[h].d+=d.d||""}for(var p in s){var g=s[p].animation;g.indexOf(r)>=0&&(i=g)}}}),i){e.d=!1;var a=pp(o,n);return i.replace(r,a)}}(t,e,n);if(u)l.push(u);else if(!s)return}else if(!s)return;for(var h={},d=0;d=0&&a||o;s&&(r=ue(s))}var l=i.lineWidth;l&&(l/=!i.strokeNoScale&&t.transform?t.transform[0]:1);var u={cursor:"pointer"};r&&(u.fill=r),i.stroke&&(u.stroke=i.stroke),l&&(u["stroke-width"]=l),yp(u,e,n,!0)}}(t,o,e),ap(s,t.id+"",o)}function Tp(t,e){return t instanceof rv?Mp(t,e):t instanceof hv?function(t,e){var n=t.style,i=n.image;if(i&&!v(i)&&(mp(i)?i=i.src:vp(i)&&(i=i.toDataURL())),i){var r=n.x||0,o=n.y||0,a={href:i,width:n.width,height:n.height};return r&&(a.x=r),o&&(a.y=o),bp(a,t.transform),_p(a,n,t,e),xp(a,t),e.animation&&gp(t,a,e),ap("image",t.id+"",a)}}(t,e):t instanceof sv?function(t,e){var n=t.style,i=n.text;if(null!=i&&(i+=""),i&&!isNaN(n.x)&&!isNaN(n.y)){var r=n.font||rf,o=n.x||0,a=function(t,e,n){return"top"===n?t+=e/2:"bottom"===n&&(t-=e/2),t}(n.y||0,Ye(r),n.textBaseline),s={"dominant-baseline":"central","text-anchor":Gg[n.textAlign]||n.textAlign};if(bi(n)){var l="",u=n.fontStyle,c=xi(n.fontSize);if(!parseFloat(c))return;var h=n.fontWeight;l+="font-size:"+c+";font-family:"+(n.fontFamily||nf)+";",u&&"normal"!==u&&(l+="font-style:"+u+";"),h&&"normal"!==h&&(l+="font-weight:"+h+";"),s.style=l}else s.style="font: "+r;return i.match(/\s/)&&(s["xml:space"]="preserve"),o&&(s.x=o),a&&(s.y=a),bp(s,t.transform),_p(s,n,t,e),xp(s,t),e.animation&&gp(t,s,e),ap("text",t.id+"",s,void 0,i)}}(t,e):void 0}function Ip(t,e,n,i){var r,o=t[n],a={gradientUnits:o.global?"userSpaceOnUse":"objectBoundingBox"};if(ye(o))r="linearGradient",a.x1=o.x,a.y1=o.y,a.x2=o.x2,a.y2=o.y2;else{if(!me(o))return;r="radialGradient",a.cx=k(o.x,.5),a.cy=k(o.y,.5),a.r=k(o.r,.5)}for(var s=o.colorStops,l=[],u=0,c=s.length;ul?Wp(t,null==n[h+1]?null:n[h+1].elm,n,s,h):Gp(t,e,a,l))}(n,i,r):Bp(r)?(Bp(t.text)&&zp(n,""),Wp(n,null,r,0,r.length-1)):Bp(i)?Gp(n,i,0,i.length-1):Bp(t.text)&&zp(n,""):t.text!==e.text&&(Bp(i)&&Gp(n,i,0,i.length-1),zp(n,e.text)))}function Zp(t,e,n){var i=af.createCanvas(),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}function Yp(){_l(!0)&&(function(t){var e=G_.extend(t);G_.registerClass(e)}({type:"leaflet",getLeaflet(){return this.__map},setCenterAndZoom(t,e){this.option.center=t,this.option.zoom=e},centerOrZoomChanged(t,e){const{option:n}=this;return r=n.center,!((i=t)&&r&&i[0]===r[0]&&i[1]===r[1]&&e===n.zoom);var i,r},defaultOption:{mapOptions:{},tiles:[{urlTemplate:"http://{s}.tile.osm.org/{z}/{x}/{y}.png",options:{attribution:'© OpenStreetMap contributors'}}],layerControl:{}}}),function(t){var e=ww.extend(t);ww.registerClass(e)}({type:"leaflet",render(t,e,n){function i(e){if(s)return;const i=l._mapPane;let r=i.style.transform,o=0,a=0;if(r){r=r.replace("translate3d(","");const t=r.split(",");o=-parseInt(t[0],10),a=-parseInt(t[1],10)}else o=-parseInt(i.style.left,10),a=-parseInt(i.style.top,10);const h=[o,a];u.style.left=`${h[0]}px`,u.style.top=`${h[1]}px`,c.setMapOffset(h),t.__mapOffset=h,n.dispatchAction({type:"leafletRoam",animation:{duration:0}})}function r(){s||n.dispatchAction({type:"leafletRoam"})}function o(){i()}function a(){ll(n.getDom()).resize()}let s=!0;const l=t.getLeaflet(),u=n.getZr().painter.getViewportRoot().parentNode,c=t.coordinateSystem,{roam:h}=t.get("mapOptions");h&&"scale"!==h?l.dragging.enable():l.dragging.disable(),h&&"move"!==h?(l.scrollWheelZoom.enable(),l.doubleClickZoom.enable(),l.touchZoom.enable()):(l.scrollWheelZoom.disable(),l.doubleClickZoom.disable(),l.touchZoom.disable()),this._oldMoveHandler&&l.off("move",this._oldMoveHandler),this._oldZoomHandler&&l.off("zoom",this._oldZoomHandler),this._oldZoomEndHandler&&l.off("zoomend",this._oldZoomEndHandler),this._oldResizeHandler&&l.off("resize",this._oldResizeHandler),l.on("move",i),l.on("zoom",o),l.on("zoomend",r),l.on("resize",a),this._oldMoveHandler=i,this._oldZoomHandler=o,this._oldZoomEndHandler=r,this._oldResizeHandler=a,s=!1}}),fl("leaflet",YA()),pl({type:"leafletRoam",event:"leafletRoam",update:"updateLayout"},(t,e)=>{e.eachComponent("leaflet",t=>{const e=t.getLeaflet(),n=e.getCenter();t.setCenterAndZoom([n.lng,n.lat],e.getZoom())})}))}var Xp={d:(t,e)=>{for(var n in e)Xp.o(e,n)&&!Xp.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},o:(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r:t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})}},qp={};Xp.r(qp),Xp.d(qp,{Arc:()=>vb,BezierCurve:()=>gb,BoundingRect:()=>lg,Circle:()=>Nw,CompoundPath:()=>xb,Ellipse:()=>Bw,Group:()=>Ny,Image:()=>hv,IncrementalDisplayable:()=>zb,Line:()=>hb,LinearGradient:()=>Sb,OrientedBoundingRect:()=>Rb,Path:()=>rv,Point:()=>jf,Polygon:()=>rb,Polyline:()=>sb,RadialGradient:()=>Cb,Rect:()=>yv,Ring:()=>eb,Sector:()=>Jw,Text:()=>Cv,WH:()=>Fb,XY:()=>Vb,applyTransform:()=>Ua,calcZ2Range:()=>us,clipPointsByRect:()=>Xa,clipRectByRect:()=>qa,createIcon:()=>$a,ensureCopyRect:()=>as,ensureCopyTransform:()=>ss,expandOrShrinkRect:()=>ts,extendPath:()=>Ra,extendShape:()=>Pa,getShapeClass:()=>za,getTransform:()=>Ga,groupTransition:()=>Ya,initProps:()=>ka,isBoundingRectAxisAligned:()=>os,isElementRemoved:()=>Da,lineLineIntersect:()=>Ja,linePolygonIntersect:()=>Ka,makeImage:()=>Ba,makePath:()=>Ea,mergePath:()=>Wb,registerShape:()=>Na,removeElement:()=>Aa,removeElementWithFadeOut:()=>Oa,resizePath:()=>Fa,retrieveZInfo:()=>ls,setTooltipConfig:()=>ns,subPixelOptimize:()=>Gb,subPixelOptimizeLine:()=>Ha,subPixelOptimizeRect:()=>Wa,transformDirection:()=>ja,traverseElements:()=>rs,traverseUpdateZ:()=>cs,updateProps:()=>Ia});var $p=function(t,e){return $p=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])},$p(t,e)},Kp=function(){this.firefox=!1,this.ie=!1,this.edge=!1,this.newEdge=!1,this.weChat=!1},Jp=new function(){this.browser=new Kp,this.node=!1,this.wxa=!1,this.worker=!1,this.svgSupported=!1,this.touchEventsSupported=!1,this.pointerEventsSupported=!1,this.domSupported=!1,this.transformSupported=!1,this.transform3dSupported=!1,this.hasGlobalWindow="undefined"!=typeof window};"object"==typeof wx&&"function"==typeof wx.getSystemInfoSync?(Jp.wxa=!0,Jp.touchEventsSupported=!0):"undefined"==typeof document&&"undefined"!=typeof self?Jp.worker=!0:!Jp.hasGlobalWindow||"Deno"in window||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&navigator.userAgent.indexOf("Node.js")>-1?(Jp.node=!0,Jp.svgSupported=!0):function(t,e){var n=e.browser,i=t.match(/Firefox\/([\d.]+)/),r=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),o=t.match(/Edge?\/([\d.]+)/),a=/micromessenger/i.test(t);if(i&&(n.firefox=!0,n.version=i[1]),r&&(n.ie=!0,n.version=r[1]),o&&(n.edge=!0,n.version=o[1],n.newEdge=+o[1].split(".")[0]>18),a&&(n.weChat=!0),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,Jp);const Qp=Jp;var tf,ef,nf="sans-serif",rf="12px "+nf,of=function(){var t={};if("undefined"==typeof JSON)return t;for(var e=0;e<95;e++){var n=String.fromCharCode(e+32),i=("007LLmW'55;N0500LLLLLLLLLL00NNNLzWW\\\\WQb\\0FWLg\\bWb\\WQ\\WrWWQ000CL5LLFLL0LL**F*gLLLL5F0LF\\FFF5.5N".charCodeAt(e)-20)/100;t[n]=i}return t}(),af={createCanvas:function(){return"undefined"!=typeof document&&document.createElement("canvas")},measureText:function(t,e){if(!tf){var n=af.createCanvas();tf=n&&n.getContext("2d")}if(tf)return ef!==e&&(ef=tf.font=e||rf),tf.measureText(t);t=t||"";var i=/((?:\d+)?\.?\d*)px/.exec(e=e||rf),r=i&&+i[1]||12,o=0;if(e.indexOf("mono")>=0)o=r*t.length;else for(var a=0;a"'])/g,Ef={"&":"&","<":"<",">":">",'"':""","'":"'"},Bf=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,Vf=[],Ff=Qp.browser.firefox&&+Qp.browser.version.split(".")[0]<39,Hf=function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0},Wf=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=gt(r)/gt(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}}}}},Uf=function(){function t(t,e){this.x=t||0,this.y=e||0}return t.prototype.copy=function(t){return this.x=t.x,this.y=t.y,this},t.prototype.clone=function(){return new t(this.x,this.y)},t.prototype.set=function(t,e){return this.x=t,this.y=e,this},t.prototype.equal=function(t){return t.x===this.x&&t.y===this.y},t.prototype.add=function(t){return this.x+=t.x,this.y+=t.y,this},t.prototype.scale=function(t){this.x*=t,this.y*=t},t.prototype.scaleAndAdd=function(t,e){this.x+=t.x*e,this.y+=t.y*e},t.prototype.sub=function(t){return this.x-=t.x,this.y-=t.y,this},t.prototype.dot=function(t){return this.x*t.x+this.y*t.y},t.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},t.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},t.prototype.normalize=function(){var t=this.len();return this.x/=t,this.y/=t,this},t.prototype.distance=function(t){var e=this.x-t.x,n=this.y-t.y;return Math.sqrt(e*e+n*n)},t.prototype.distanceSquare=function(t){var e=this.x-t.x,n=this.y-t.y;return e*e+n*n},t.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},t.prototype.transform=function(t){if(t){var e=this.x,n=this.y;return this.x=t[0]*e+t[2]*n+t[4],this.y=t[1]*e+t[3]*n+t[5],this}},t.prototype.toArray=function(t){return t[0]=this.x,t[1]=this.y,t},t.prototype.fromArray=function(t){this.x=t[0],this.y=t[1]},t.set=function(t,e,n){t.x=e,t.y=n},t.copy=function(t,e){t.x=e.x,t.y=e.y},t.len=function(t){return Math.sqrt(t.x*t.x+t.y*t.y)},t.lenSquare=function(t){return t.x*t.x+t.y*t.y},t.dot=function(t,e){return t.x*e.x+t.y*e.y},t.add=function(t,e,n){t.x=e.x+n.x,t.y=e.y+n.y},t.sub=function(t,e,n){t.x=e.x-n.x,t.y=e.y-n.y},t.scale=function(t,e,n){t.x=e.x*n,t.y=e.y*n},t.scaleAndAdd=function(t,e,n,i){t.x=e.x+n.x*i,t.y=e.y+n.y*i},t.lerp=function(t,e,n,i){var r=1-i;t.x=r*e.x+i*n.x,t.y=r*e.y+i*n.y},t}();const jf=Uf;var Zf=Math.min,Yf=Math.max,Xf=Math.abs,qf=["x","y"],$f=["width","height"],Kf=new jf,Jf=new jf,Qf=new jf,tg=new jf,eg=St(),ng=eg.minTv,ig=eg.maxTv,rg=[0,0],og=function(){function t(e,n,i,r){t.set(this,e,n,i,r)}return t.set=function(t,e,n,i,r){return i<0&&(e+=i,i=-i),r<0&&(n+=r,r=-r),t.x=e,t.y=n,t.width=i,t.height=r,t},t.prototype.union=function(t){var e=Zf(t.x,this.x),n=Zf(t.y,this.y);this.width=isFinite(this.x)&&isFinite(this.width)?Yf(t.x+t.width,this.x+this.width)-e:t.width,this.height=isFinite(this.y)&&isFinite(this.height)?Yf(t.y+t.height,this.y+this.height)-n:t.height,this.x=e,this.y=n},t.prototype.applyTransform=function(e){t.applyTransform(this,this,e)},t.prototype.calculateTransform=function(t){var e=this,n=t.width/e.width,i=t.height/e.height,r=[1,0,0,1,0,0];return _t(r,r,[-e.x,-e.y]),function(t,e,n){var i=n[0],r=n[1];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}(r,r,[n,i]),_t(r,r,[t.x,t.y]),r},t.prototype.intersect=function(e,n,i){return t.intersect(this,e,n,i)},t.intersect=function(e,n,i,r){i&&jf.set(i,0,0);var o=r&&r.outIntersectRect||null,a=r&&r.clamp;if(o&&(o.x=o.y=o.width=o.height=NaN),!e||!n)return!1;e instanceof t||(e=t.set(ag,e.x,e.y,e.width,e.height)),n instanceof t||(n=t.set(sg,n.x,n.y,n.width,n.height));var s=!!i;eg.reset(r,s);var l=eg.touchThreshold,u=e.x+l,c=e.x+e.width-l,h=e.y+l,d=e.y+e.height-l,p=n.x+l,f=n.x+n.width-l,g=n.y+l,y=n.y+n.height-l;if(u>c||h>d||p>f||g>y)return!1;var m=!(c=t.x&&e<=t.x+t.width&&n>=t.y&&n<=t.y+t.height},t.prototype.contain=function(e,n){return t.contain(this,e,n)},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){return t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height,t},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[5];return e.x=n.x*r+i[4],e.y=n.y*o+a,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))}Kf.x=Qf.x=n.x,Kf.y=tg.y=n.y,Jf.x=tg.x=n.x+n.width,Jf.y=Qf.y=n.y+n.height,Kf.transform(i),tg.transform(i),Jf.transform(i),Qf.transform(i),e.x=Zf(Kf.x,Jf.x,Qf.x,tg.x),e.y=Zf(Kf.y,Jf.y,Qf.y,tg.y);var s=Yf(Kf.x,Jf.x,Qf.x,tg.x),l=Yf(Kf.y,Jf.y,Qf.y,tg.y);e.width=s-e.x,e.height=l-e.y}else e!==n&&t.copy(e,n)},t}(),ag=new og(0,0,0,0),sg=new og(0,0,0,0);const lg=og;var ug="silent",cg=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.handler=null,e}return W(e,t),e.prototype.dispose=function(){},e.prototype.setCursor=function(){},e}(Of),hg=function(t,e){this.x=t,this.y=e},dg=["click","dblclick","mousewheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],pg=new lg(0,0,0,0),fg=function(t){function e(e,n,i,r,o){var a=t.call(this)||this;return a._hovered=new hg(0,0),a.storage=e,a.painter=n,a.painterRoot=r,a._pointerSize=o,i=i||new cg,a.proxy=null,a.setHandlerProxy(i),a._draggingMgr=new Af(a),a}return W(e,t),e.prototype.setHandlerProxy=function(t){this.proxy&&this.proxy.dispose(),t&&(c(dg,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=It(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 hg(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 hg(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:Ct}}(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){var i=this.storage.getDisplayList(),r=new hg(t,e);if(Tt(i,r,t,e,n),this._pointerSize&&!r.target){for(var o=[],a=this._pointerSize,s=a/2,l=new lg(t-s,e-s,a,a),u=i.length-1;u>=0;u--){var c=i[u];c===n||c.ignore||c.ignoreCoarsePointer||c.parent&&c.parent.ignoreCoarsePointer||(pg.copy(c.getBoundingRect()),c.transform&&pg.applyTransform(c.transform),pg.intersect(l)&&o.push(c))}if(o.length)for(var h=Math.PI/12,d=2*Math.PI,p=0;p4)return;this._downPoint=null}this.dispatchToElement(n,t,e)}});const gg=fg;var yg=!1,mg=function(){function t(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=Rt}return t.prototype.traverse=function(t,e){for(var n=0;n=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}();const vg=mg,_g=Qp.hasGlobalWindow&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(t){return setTimeout(t,16)};var xg={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;return 0===t?0:1===t?1:(!n||n<1?(n=1,e=.1):e=.4*Math.asin(1/n)/(2*Math.PI),(t*=2)<1?n*Math.pow(2,10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4)*-.5:n*Math.pow(2,-10*(t-=1))*Math.sin((t-e)*(2*Math.PI)/.4)*.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-xg.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*xg.bounceIn(2*t):.5*xg.bounceOut(2*t-1)+.5}};const wg=xg;var bg=Math.pow,Sg=Math.sqrt,Cg=1e-8,Mg=1e-4,Tg=Sg(3),Ig=1/3,kg=G(),Dg=G(),Ag=G(),Lg=/cubic-bezier\(([0-9,\.e ]+)\)/;const Og=function(){function t(t){this._inited=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=t.life||1e3,this._delay=t.delay||0,this.loop=t.loop||!1,this.onframe=t.onframe||H,this.ondestroy=t.ondestroy||H,this.onrestart=t.onrestart||H,t.easing&&this.setEasing(t.easing)}return t.prototype.step=function(t,e){if(this._inited||(this._startTime=t+this._delay,this._inited=!0),!this._paused){var n=this._life,i=t-this._startTime-this._pausedTime,r=i/n;r<0&&(r=0),r=Math.min(r,1);var o=this.easingFunc,a=o?o(r):r;if(this.onframe(a),1===r){if(!this.loop)return!0;this._startTime=t-i%n,this._pausedTime=0,this.onrestart()}return!1}this._pausedTime+=e},t.prototype.pause=function(){this._paused=!0},t.prototype.resume=function(){this._paused=!1},t.prototype.setEasing=function(t){this.easing=t,this.easingFunc=m(t)?t:wg[t]||Xt(t)},t}();var Pg=function(t){this.value=t},Rg=function(){function t(){this._len=0}return t.prototype.insert=function(t){var e=new Pg(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}(),Ng=function(){function t(t){this._list=new Rg,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 Pg(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}();const zg=Ng;var Eg={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]},Bg=new zg(20),Vg=null,Fg=new zg(100),Hg=Math.round,Wg=1e-4,Gg={left:"start",right:"end",center:"middle",middle:"middle"},Ug=Qp.hasGlobalWindow&&m(window.btoa)?function(t){return window.btoa(unescape(encodeURIComponent(t)))}:"undefined"!=typeof Buffer?function(t){return Buffer.from(t).toString("base64")}:function(t){return null},jg=Array.prototype.slice,Zg=[0,0,0,0],Yg=function(){function t(t){this.keyframes=[],this.discrete=!1,this._invalid=!1,this._needsSort=!1,this._lastFr=0,this._lastFrP=0,this.propName=t}return t.prototype.isFinished=function(){return this._finished},t.prototype.setFinished=function(){this._finished=!0,this._additiveTrack&&this._additiveTrack.setFinished()},t.prototype.needsAnimate=function(){return this.keyframes.length>=1},t.prototype.getAdditiveTrack=function(){return this._additiveTrack},t.prototype.addKeyframe=function(t,e,n){this._needsSort=!0;var i=this.keyframes,r=i.length,a=!1,s=6,l=e;if(u(e)){var c=function(t){return u(t&&t[0])?2:1}(e);s=c,(1===c&&!x(e[0])||2===c&&!x(e[0][0]))&&(a=!0)}else if(x(e)&&!T(e))s=0;else if(v(e))if(isNaN(+e)){var d=ie(e);d&&(l=d,s=3)}else s=0;else if(M(e)){var p=o({},l);p.colorStops=h(e.colorStops,function(t){return{offset:t.offset,color:ie(t.color)}}),ye(e)?s=4:me(e)&&(s=5),l=p}0===r?this.valType=s:s===this.valType&&6!==s||(a=!0),this.discrete=this.discrete||a;var f={time:t,value:l,rawValue:e,percent:0};return n&&(f.easing=n,f.easingFunc=m(n)?n:wg[n]||Xt(n)),i.push(f),f},t.prototype.prepare=function(t,e){var n=this.keyframes;this._needsSort&&n.sort(function(t,e){return t.time-e.time});for(var i=this.valType,r=n.length,o=n[r-1],a=this.discrete,s=Le(i),l=Ae(i),u=0;u=0&&!(l[n].percent<=e);n--);n=f(n,u-2)}else{for(n=p;ne);n++);n=f(n-1,u-2)}r=l[n+1],i=l[n]}if(i&&r){this._lastFr=n,this._lastFrP=e;var g=r.percent-i.percent,y=0===g?1:f((e-i.percent)/g,1);r.easingFunc&&(y=r.easingFunc(y));var m=o?this._additiveValue:d?Zg:t[c];if(!Le(s)&&!d||m||(m=this._additiveValue=[]),this.discrete)t[c]=y<1?i.rawValue:r.rawValue;else if(Le(s))1===s?Se(m,i[a],r[a],y):function(t,e,n,i){for(var r=e.length,o=r&&e[0].length,a=0;a0&&s.addKeyframe(0,ke(l),i),this._trackKeys.push(a)}s.addKeyframe(t,ke(e[a]),i)}return this._maxTime=Math.max(this._maxTime,t),this},t.prototype.pause=function(){this._clip.pause(),this._paused=!0},t.prototype.resume=function(){this._clip.resume(),this._paused=!1},t.prototype.isPaused=function(){return!!this._paused},t.prototype.duration=function(t){return this._maxTime=t,this._force=!0,this},t.prototype._doneCallback=function(){this._setTracksFinished(),this._clip=null;var t=this._doneCbs;if(t)for(var e=t.length,n=0;n0)){this._started=1;for(var e=this,n=[],i=this._maxTime||0,r=0;r1){var a=o.pop();r.addKeyframe(a.time,t[i]),r.prepare(this._maxTime,r.getAdditiveTrack())}}}},t}();const qg=Xg;var $g=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,n.stage=(e=e||{}).stage||{},n}return W(e,t),e.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._head?(this._tail.next=t,t.prev=this._tail,t.next=null,this._tail=t):this._head=this._tail=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._head=n,n?n.prev=e:this._tail=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=Oe()-this._pausedTime,n=e-this._time,i=this._head;i;){var r=i.next;i.step(e,n)?(i.ondestroy(),this.removeClip(i),i=r):i=r}this._time=e,t||(this.trigger("frame",n),this.stage.update&&this.stage.update())},e.prototype._startLoop=function(){var t=this;this._running=!0,_g(function e(){t._running&&(_g(e),!t._paused&&t.update())})},e.prototype.start=function(){this._running||(this._time=Oe(),this._pausedTime=0,this._startLoop())},e.prototype.stop=function(){this._running=!1},e.prototype.pause=function(){this._paused||(this._pauseStart=Oe(),this._paused=!0)},e.prototype.resume=function(){this._paused&&(this._pausedTime+=Oe()-this._pauseStart,this._paused=!1)},e.prototype.clear=function(){for(var t=this._head;t;){var e=t.next;t.prev=t.next=t.animation=null,t=e}this._head=this._tail=null},e.prototype.isFinished=function(){return null==this._head},e.prototype.animate=function(t,e){e=e||{},this.start();var n=new qg(t,e.loop);return this.addAnimator(n),n},e}(Of);const Kg=$g;var Jg,Qg,ty=Qp.domSupported,ey=(Qg={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},{mouse:Jg=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],touch:["touchstart","touchend","touchmove"],pointer:h(Jg,function(t){var e=t.replace("mouse","pointer");return Qg.hasOwnProperty(e)?e:t})}),ny=["mousemove","mouseup"],iy=["pointermove","pointerup"],ry=!1,oy=function(t,e){this.stopPropagation=H,this.stopImmediatePropagation=H,this.preventDefault=H,this.type=e.type,this.target=this.currentTarget=t.dom,this.pointerType=e.pointerType,this.clientX=e.clientX,this.clientY=e.clientY},ay={mousedown:function(t){t=ht(this.dom,t),this.__mayPointerCapture=[t.zrX,t.zrY],this.trigger("mousedown",t)},mousemove:function(t){t=ht(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=ht(this.dom,t),this.__togglePointerCapture(!1),this.trigger("mouseup",t)},mouseout:function(t){Ne(this,(t=ht(this.dom,t)).toElement||t.relatedTarget)||(this.__pointerCapturing&&(t.zrEventControl="no_globalout"),this.trigger("mouseout",t))},wheel:function(t){ry=!0,t=ht(this.dom,t),this.trigger("mousewheel",t)},mousewheel:function(t){ry||(t=ht(this.dom,t),this.trigger("mousewheel",t))},touchstart:function(t){Re(t=ht(this.dom,t)),this.__lastTouchMoment=new Date,this.handler.processGesture(t,"start"),ay.mousemove.call(this,t),ay.mousedown.call(this,t)},touchmove:function(t){Re(t=ht(this.dom,t)),this.handler.processGesture(t,"change"),ay.mousemove.call(this,t)},touchend:function(t){Re(t=ht(this.dom,t)),this.handler.processGesture(t,"end"),ay.mouseup.call(this,t),+new Date-+this.__lastTouchMoment<300&&ay.click.call(this,t)},pointerdown:function(t){ay.mousedown.call(this,t)},pointermove:function(t){Pe(t)||ay.mousemove.call(this,t)},pointerup:function(t){ay.mouseup.call(this,t)},pointerout:function(t){Pe(t)||ay.mouseout.call(this,t)}};c(["click","dblclick","contextmenu"],function(t){ay[t]=function(e){e=ht(this.dom,e),this.trigger(t,e)}});var sy={pointermove:function(t){Pe(t)||sy.mousemove.call(this,t)},pointerup:function(t){sy.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))}},ly=function(t,e){this.mounted={},this.listenerOpts={},this.touching=!1,this.domTarget=t,this.domHandlers=e};const uy=function(t){function e(e,n){var i,r,o,a=t.call(this)||this;return a.__pointerCapturing=!1,a.dom=e,a.painterRoot=n,a._localHandlerScope=new ly(e,ay),ty&&(a._globalHandlerScope=new ly(document,sy)),i=a,o=(r=a._localHandlerScope).domHandlers,Qp.pointerEventsSupported?c(ey.pointer,function(t){ze(r,t,function(e){o[t].call(i,e)})}):(Qp.touchEventsSupported&&c(ey.touch,function(t){ze(r,t,function(e){o[t].call(i,e),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)}(r)})}),c(ey.mouse,function(t){ze(r,t,function(e){e=ct(e),r.touching||o[t].call(i,e)})})),a}return W(e,t),e.prototype.dispose=function(){Ee(this._localHandlerScope),ty&&Ee(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,ty&&+this.__pointerCapturing^+t){this.__pointerCapturing=t;var e=this._globalHandlerScope;t?function(t,e){function n(n){ze(e,n,function(i){i=ct(i),Ne(t,i.target)||(i=function(t,e){return ht(t.dom,new oy(t,e),!0)}(t,i),e.domHandlers[n].call(t,i))},{capture:!0})}Qp.pointerEventsSupported?c(iy,n):Qp.touchEventsSupported||c(ny,n)}(this,e):Ee(e)}},e}(Of);var cy=1;Qp.hasGlobalWindow&&(cy=Math.max(window.devicePixelRatio||window.screen&&window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var hy=cy,dy="#333",py="#ccc",fy=yt,gy=5e-5,yy=[],my=[],vy=[1,0,0,1,0,0],_y=Math.abs,xy=function(){function t(){}var e;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 Be(this.rotation)||Be(this.x)||Be(this.y)||Be(this.scaleX-1)||Be(this.scaleY-1)||Be(this.skewX)||Be(this.skewY)},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):fy(n),t&&(e?vt(n,t,n):mt(n,t)),this.transform=n,this._resolveGlobalScaleRatio(n)):n&&(fy(n),this.invTransform=null)},t.prototype._resolveGlobalScaleRatio=function(t){var e=this.globalScaleRatio;if(null!=e&&1!==e){this.getGlobalScale(yy);var n=yy[0]<0?-1:1,i=yy[1]<0?-1:1,r=((yy[0]-n)*e+n)/yy[0]||0,o=((yy[1]-i)*e+i)/yy[1]||0;t[0]*=r,t[1]*=r,t[2]*=o,t[3]*=o}this.invTransform=this.invTransform||[1,0,0,1,0,0],wt(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&&(t.invTransform=t.invTransform||[1,0,0,1,0,0],vt(my,t.invTransform,e),e=my);var n=this.originX,i=this.originY;(n||i)&&(vy[4]=n,vy[5]=i,vt(my,e,vy),my[4]-=n,my[5]-=i,e=my),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&&tt(n,n,i),n},t.prototype.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&tt(n,n,i),n},t.prototype.getLineScale=function(){var t=this.transform;return t&&_y(t[0]-1)>1e-10&&_y(t[3]-1)>1e-10?Math.sqrt(_y(t[0]*t[3]-t[2]*t[1])):1},t.prototype.copyTransform=function(t){Ve(this,t)},t.getLocalTransform=function(t,e){e=e||[];var n=t.originX||0,i=t.originY||0,r=t.scaleX,o=t.scaleY,a=t.anchorX,s=t.anchorY,l=t.rotation||0,u=t.x,c=t.y,h=t.skewX?Math.tan(t.skewX):0,d=t.skewY?Math.tan(-t.skewY):0;if(n||i||a||s){var p=n+a,f=i+s;e[4]=-p*r-h*f*o,e[5]=-f*o-d*p*r}else e[4]=e[5]=0;return e[0]=r,e[3]=o,e[1]=d*r,e[2]=h*o,l&&xt(e,e,l),e[4]+=n+u,e[5]+=i+c,e},t.initDefaultProps=((e=t.prototype).scaleX=e.scaleY=e.globalScaleRatio=1,void(e.x=e.y=e.originX=e.originY=e.skewX=e.skewY=e.rotation=e.anchorX=e.anchorY=0)),t}(),wy=["x","y","originX","originY","anchorX","anchorY","rotation","scaleX","scaleY","skewX","skewY"];const by=xy;var Sy,Cy=0,My=5,Ty="__zr_normal__",Iy=wy.concat(["ignore"]),ky=d(wy,function(t,e){return t[e]=!0,t},{ignore:!1}),Dy={},Ay=new lg(0,0,0,0),Ly=[],Oy=function(){function t(t){this.id=e(),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;r.copyTransform(e);var u=null!=n.position,c=n.autoOverflowArea,h=void 0;if((c||u)&&((h=Ay).copy(n.layoutRect?n.layoutRect:this.getBoundingRect()),i||h.applyTransform(this.transform)),u){this.calculateTextPosition?this.calculateTextPosition(Dy,n,h):qe(Dy,n,h),r.x=Dy.x,r.y=Dy.y,o=Dy.align,a=Dy.verticalAlign;var d=n.origin;if(d&&null!=n.rotation){var p=void 0,f=void 0;"center"===d?(p=.5*h.width,f=.5*h.height):(p=Xe(d[0],h.width),f=Xe(d[1],h.height)),l=!0,r.originX=-r.x+p+(i?0:h.x),r.originY=-r.y+f+(i?0:h.y)}}null!=n.rotation&&(r.rotation=n.rotation);var g=n.offset;g&&(r.x+=g[0],r.y+=g[1],l||(r.originX=-g[0],r.originY=-g[1]));var y=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={});if(c){var m=y.overflowRect=y.overflowRect||new lg(0,0,0,0);r.getLocalTransform(Ly),wt(Ly,Ly),lg.copy(m,h),m.applyTransform(Ly)}else y.overflowRect=null;var v=void 0,_=void 0,x=void 0;(null==n.inside?"string"==typeof n.position&&n.position.indexOf("inside")>=0:n.inside)&&this.canBeInsideText()?(_=n.insideStroke,null!=(v=n.insideFill)&&"auto"!==v||(v=this.getInsideTextFill()),null!=_&&"auto"!==_||(_=this.getInsideTextStroke(v),x=!0)):(_=n.outsideStroke,null!=(v=n.outsideFill)&&"auto"!==v||(v=this.getOutsideFill()),null!=_&&"auto"!==_||(_=this.getOutsideStroke(v),x=!0)),(v=v||"#000")===y.fill&&_===y.stroke&&x===y.autoStroke&&o===y.align&&a===y.verticalAlign||(s=!0,y.fill=v,y.stroke=_,y.autoStroke=x,y.align=o,y.verticalAlign=a,e.setDefaultTextStyle(y)),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()?py:dy},t.prototype.getOutsideStroke=function(t){var e=this.__zr&&this.__zr.getBackgroundColor(),n="string"==typeof e&&ie(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,se(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||{},o(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(w(t))for(var n=f(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(Ty,!1,t)},t.prototype.useState=function(t,e,i,r){var o=t===Ty;if(this.hasState()||!o){var a=this.currentStates,l=this.stateTransition;if(!(s(a,t)>=0)||!e&&1!==a.length){var u;if(this.stateProxy&&!o&&(u=this.stateProxy(t)),u||(u=this.states&&this.states[t]),u||o){o||this.saveCurrentToNormalState(u);var c=!!(u&&u.hoverLayer||r);c&&this._toggleHoverLayerFlag(!0),this._applyStateObj(t,u,this._normalState,e,!i&&!this.__inHover&&l&&l.duration>0,l);var h=this._textContent,d=this._textGuide;return h&&h.useState(t,e,i,c),d&&d.useState(t,e,i,c),o?(this.currentStates=[],this._normalState={}):e?this.currentStates.push(t):this.currentStates=[t],this._updateAnimationTargets(),this.markRedraw(),!c&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2),u}n("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,p);var f=this._textContent,g=this._textGuide;f&&f.useStates(t,e,h),g&&g.useStates(t,e,h),this._updateAnimationTargets(),this.currentStates=t.slice(),this.markRedraw(),!h&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2)}else this.clearStates()},t.prototype.isSilent=function(){for(var t=this;t;){if(t.silent)return!0;var e=t.__hostTarget;t=e?t.ignoreHostSilent?null:e:t.parent}return!1},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=s(i,t),o=s(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;o=0&&(n.splice(i,0,t),this._doAdd(t))}return this},e.prototype.replace=function(t,e){var n=s(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=s(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._disposed||(this.animation.start(),this._stillFrameAccum=0)},t.prototype.refreshHover=function(){this._needsRefreshHover=!0},t.prototype.refreshHoverImmediately=function(){this._disposed||(this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover())},t.prototype.resize=function(t){this._disposed||(this.painter.resize((t=t||{}).width,t.height),this.handler.resize())},t.prototype.clearAnimation=function(){this._disposed||this.animation.clear()},t.prototype.getWidth=function(){if(!this._disposed)return this.painter.getWidth()},t.prototype.getHeight=function(){if(!this._disposed)return this.painter.getHeight()},t.prototype.setCursorStyle=function(t){this._disposed||this.handler.setCursorStyle(t)},t.prototype.findHover=function(t,e){if(!this._disposed)return this.handler.findHover(t,e)},t.prototype.on=function(t,e,n){return this._disposed||this.handler.on(t,e,n),this},t.prototype.off=function(t,e){this._disposed||this.handler.off(t,e)},t.prototype.trigger=function(t,e){this._disposed||this.handler.trigger(t,e)},t.prototype.clear=function(){if(!this._disposed){for(var t=this.storage.getRoots(),e=0;e0?t.length:0,this.item=null,this.key=NaN,this},t.prototype.next=function(){return(this._step>0?this._idx=this._end)&&(this.item=this._list[this._idx],this.key=this._idx=this._idx+this._step,!0)}}(),"___EC__COMPONENT__CONTAINER___"),Qy="___EC__EXTENDED_CLASS___",tm=Math.round(10*Math.random()),em=Vn([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),nm=function(){function t(){}return t.prototype.getAreaStyle=function(t,e){return em(this,t,e)},t}(),im=new zg(50),rm=/\{([a-zA-Z0-9_]+)\|([^}]*)\}/g,om=function(){},am=function(t){this.tokens=[],t&&(this.tokens=t)},sm=function(){this.width=0,this.height=0,this.contentWidth=0,this.contentHeight=0,this.outerWidth=0,this.outerHeight=0,this.lines=[],this.isTruncated=!1},lm=d(",&?/;] ".split(""),function(t,e){return t[e]=!0,t},{}),um=new lg(0,0,0,0),cm={outIntersectRect:{},clamp:!0},hm="__zr_style_"+Math.round(10*Math.random()),dm={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"#000",opacity:1,blend:"source-over"},pm={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};dm[hm]=!0;var fm=["z","z2","invisible"],gm=["invisible"],ym=function(t){function e(e){return t.call(this,e)||this}var n;return W(e,t),e.prototype._init=function(e){for(var n=f(e),i=0;i0&&(this._ux=Hm(n/hy/t)||0,this._uy=Hm(n/hy/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._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},t.prototype.moveTo=function(t,e){return this._drawPendingPt(),this.addData(Am.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=Hm(t-this._xi),i=Hm(e-this._yi),r=n>this._ux||i>this._uy;if(this.addData(Am.L,t,e),this._ctx&&r&&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(Am.C,t,e,n,i,r,o),this._ctx&&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(Am.Q,t,e,n,i),this._ctx&&this._ctx.quadraticCurveTo(t,e,n,i),this._xi=n,this._yi=i,this},t.prototype.arc=function(t,e,n,i,r,o){return this._drawPendingPt(),jm[0]=i,jm[1]=r,function(t,e){var n=oi(t[0]);n<0&&(n+=Gm);var i=t[1];i+=n-t[0],!e&&i-n>=Gm?i=n+Gm:e&&n-i>=Gm?i=n-Gm:!e&&n>i?i=n+(Gm-oi(n-i)):e&&n0&&o))for(var a=0;au.length&&(this._expandData(),u=this.data);for(var c=0;c0&&(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;e11&&(this.data=new Float32Array(t)))}},t.prototype.getBoundingRect=function(){Pm[0]=Pm[1]=Nm[0]=Nm[1]=Number.MAX_VALUE,Rm[0]=Rm[1]=zm[0]=zm[1]=-Number.MAX_VALUE;var t,e=this.data,n=0,i=0,r=0,o=0;for(t=0;tn||Hm(y)>i||h===e-1)&&(f=Math.sqrt(D*D+y*y),r=g,o=_);break;case Am.C:var m=t[h++],v=t[h++],_=(g=t[h++],t[h++]),x=t[h++],w=t[h++];f=Wt(r,o,m,v,g,_,x,w,10),r=x,o=w;break;case Am.Q:f=Yt(r,o,m=t[h++],v=t[h++],g=t[h++],_=t[h++],10),r=g,o=_;break;case Am.A:var b=t[h++],S=t[h++],C=t[h++],M=t[h++],T=t[h++],I=t[h++],k=I+T;h+=1,p&&(a=Vm(T)*C+b,s=Fm(T)*M+S),f=Bm(C,M)*Em(Gm,Math.abs(I)),r=Vm(k)*C+b,o=Fm(k)*M+S;break;case Am.R:a=r=t[h++],s=o=t[h++],f=2*t[h++]+2*t[h++];break;case Am.Z:var D=a-r;y=s-o,f=Math.sqrt(D*D+y*y),r=a,o=s}f>=0&&(l[c++]=f,u+=f)}return this._pathLen=u,u},t.prototype.rebuildPath=function(t,e){var n,i,r,o,a,s,l,u,c,h,d=this.data,p=this._ux,f=this._uy,g=this._len,y=e<1,m=0,v=0,_=0;if(!y||(this._pathSegLen||this._calculateLength(),l=this._pathSegLen,u=e*this._pathLen))t:for(var x=0;x0&&(t.lineTo(c,h),_=0),w){case Am.M:n=r=d[x++],i=o=d[x++],t.moveTo(r,o);break;case Am.L:a=d[x++],s=d[x++];var S=Hm(a-r),C=Hm(s-o);if(S>p||C>f){if(y){if(m+(Y=l[v++])>u){t.lineTo(r*(1-(X=(u-m)/Y))+a*X,o*(1-X)+s*X);break t}m+=Y}t.lineTo(a,s),r=a,o=s,_=0}else{var M=S*S+C*C;M>_&&(c=a,h=s,_=M)}break;case Am.C:var T=d[x++],I=d[x++],k=d[x++],D=d[x++],A=d[x++],L=d[x++];if(y){if(m+(Y=l[v++])>u){Ht(r,T,k,A,X=(u-m)/Y,Lm),Ht(o,I,D,L,X,Om),t.bezierCurveTo(Lm[1],Om[1],Lm[2],Om[2],Lm[3],Om[3]);break t}m+=Y}t.bezierCurveTo(T,I,k,D,A,L),r=A,o=L;break;case Am.Q:if(T=d[x++],I=d[x++],k=d[x++],D=d[x++],y){if(m+(Y=l[v++])>u){Zt(r,T,k,X=(u-m)/Y,Lm),Zt(o,I,D,X,Om),t.quadraticCurveTo(Lm[1],Om[1],Lm[2],Om[2]);break t}m+=Y}t.quadraticCurveTo(T,I,k,D),r=k,o=D;break;case Am.A:var O=d[x++],P=d[x++],R=d[x++],N=d[x++],z=d[x++],E=d[x++],B=d[x++],V=!d[x++],F=R>N?R:N,H=Hm(R-N)>.001,W=z+E,G=!1;if(y&&(m+(Y=l[v++])>u&&(W=z+E*(u-m)/Y,G=!0),m+=Y),H&&t.ellipse?t.ellipse(O,P,R,N,B,z,W,V):t.arc(O,P,F,z,W,V),G)break t;b&&(n=Vm(z)*R+O,i=Fm(z)*N+P),r=Vm(W)*R+O,o=Fm(W)*N+P;break;case Am.R:n=r=d[x],i=o=d[x+1],a=d[x++],s=d[x++];var U=d[x++],j=d[x++];if(y){if(m+(Y=l[v++])>u){var Z=u-m;t.moveTo(a,s),t.lineTo(a+Em(Z,U),s),(Z-=U)>0&&t.lineTo(a+U,s+Em(Z,j)),(Z-=j)>0&&t.lineTo(a+Bm(U-Z,0),s+j),(Z-=U)>0&&t.lineTo(a,s+Bm(j-Z,0));break t}m+=Y}t.rect(a,s,U,j);break;case Am.Z:if(y){var Y;if(m+(Y=l[v++])>u){var X;t.lineTo(r*(1-(X=(u-m)/Y))+n*X,o*(1-X)+i*X);break t}m+=Y}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.prototype.canSave=function(){return!!this._saveData},t.CMD=Am,t.initDefaultProps=((e=t.prototype)._saveData=!0,e._ux=0,e._uy=0,e._pendingPtDist=0,void(e._version=0)),t}();const Ym=Zm;var Xm=2*Math.PI,qm=2*Math.PI,$m=Ym.CMD,Km=2*Math.PI,Jm=[-1,-1,-1],Qm=[-1,-1],tv=a({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},dm),ev={style:a({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},pm.style)},nv=wy.concat(["invisible","culling","z","z2","zlevel","parent"]),iv=function(t){function e(e){return t.call(this,e)||this}var n;return W(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.5?dy:e>.2?"#eee":py}if(t)return py}return dy},e.prototype.getInsideTextStroke=function(t){var e=this.style.fill;if(v(e)){var n=this.__zr;if(!(!n||!n.isDarkMode())==le(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 Ym(!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._rectStroke||(this._rectStroke=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(i.contain(t=n[0],e=n[1])){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 yi(t,e,!0,n,i)}(o,a/s,t,e)))return!0}if(this.hasFill())return function(t,e,n){return yi(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:o(n,t),this.dirtyShape(),this},e.prototype.shapeChanged=function(){return!!(4&this.__dirty)},e.prototype.createStyle=function(t){return B(tv,t)},e.prototype._innerSaveToNormal=function(e){t.prototype._innerSaveToNormal.call(this,e);var n=this._normalState;e.shape&&!n.shape&&(n.shape=o({},this.shape))},e.prototype._applyStateObj=function(e,n,i,r,a,s){t.prototype._applyStateObj.call(this,e,n,i,r,a,s);var l,u=!(n&&r);if(n&&n.shape?a?r?l=n.shape:(l=o({},i.shape),o(l,n.shape)):(l=o({},r?this.shape:i.shape),o(l,n.shape)):u&&(l=i.shape),l)if(a){this.shape=o({},this.shape);for(var c={},h=f(l),d=0;du&&(n*=u/(a=n+i),i*=u/a),r+o>u&&(r*=u/(a=r+o),o*=u/a),i+r>c&&(i*=c/(a=i+r),r*=c/a),n+o>c&&(n*=c/(a=n+o),o*=c/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+c-r),0!==r&&t.arc(s+u-r,l+c-r,r,0,Math.PI/2),t.lineTo(s+o,l+c),0!==o&&t.arc(s+o,l+c-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}(rv);gv.prototype.type="rect";const yv=gv;var mv={fill:"#000"},vv={},_v={style:a({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},pm.style)},xv=function(t){function e(e){var n=t.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=mv,n.attr(e),n}return W(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;em&&p){var _=Math.floor(m/d);f=f||y.length>_,v=(y=y.slice(0,_)).length*d}if(r&&c&&null!=g)for(var x=jn(g,u,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),w={},b=0;b0,M=0;My&&Xn(a,s.substring(y,m),e,g),Xn(a,p[2],e,g,p[1]),y=rm.lastIndex}yd){var z=a.lines.length;A>0?(M.tokens=M.tokens.slice(0,A),o(M,I,T),a.lines=a.lines.slice(0,C+1)):a.lines=a.lines.slice(0,C),a.isTruncated=a.isTruncated||a.lines.length=0&&"right"===(I=_[T]).align;)this._placeToken(I,t,w,f,M,"right",y),b-=I.width,M-=I.width,T--;for(C+=(s-(C-p)-(g-M)-b)/2;S<=T;)this._placeToken(I=_[S],t,w,f,C+I.width/2,"center",y),C+=I.width,S++;f+=w}},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&&ki(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 c=!!s.backgroundColor,h=t.textPadding;h&&(r=Ti(r,o,h),u-=t.height/2-h[0]-t.innerHeight/2);var d=this._getOrCreateChild(sv),p=d.createStyle();d.useStyle(p);var f=this._defaultStyle,g=!1,y=0,m=!1,v=Mi("fill"in s?s.fill:"fill"in e?e.fill:(g=!0,f.fill)),_=Ci("stroke"in s?s.stroke:"stroke"in e?e.stroke:c||a||f.autoStroke&&!g?null:(y=2,m=!0,f.stroke)),x=s.textShadowBlur>0||e.textShadowBlur>0;p.text=t.text,p.x=r,p.y=u,x&&(p.shadowBlur=s.textShadowBlur||e.textShadowBlur||0,p.shadowColor=s.textShadowColor||e.textShadowColor||"transparent",p.shadowOffsetX=s.textShadowOffsetX||e.textShadowOffsetX||0,p.shadowOffsetY=s.textShadowOffsetY||e.textShadowOffsetY||0),p.textAlign=o,p.textBaseline="middle",p.font=t.font||rf,p.opacity=D(s.opacity,e.opacity,1),wi(p,s),_&&(p.lineWidth=D(s.lineWidth,e.lineWidth,y),p.lineDash=k(s.lineDash,e.lineDash),p.lineDashOffset=e.lineDashOffset||0,p.stroke=_),v&&(p.fill=v),d.setBoundingRect(Qn(p,t.contentWidth,t.contentHeight,m?0:null))},e.prototype._renderBackground=function(t,e,n,i,r,o){var a,s,l,u=t.backgroundColor,c=t.borderWidth,h=t.borderColor,d=u&&u.image,p=u&&!d,f=t.borderRadius,g=this;if(p||t.lineHeight||c&&h){(a=this._getOrCreateChild(yv)).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(p)(l=a.style).fill=u||null,l.fillOpacity=k(t.fillOpacity,1);else if(d){(s=this._getOrCreateChild(hv)).onload=function(){g.dirtyStyle()};var m=s.style;m.image=u.image,m.x=n,m.y=i,m.width=r,m.height=o}c&&h&&((l=a.style).lineWidth=c,l.stroke=h,l.strokeOpacity=k(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 v=(a||s).style;v.shadowBlur=t.shadowBlur||0,v.shadowColor=t.shadowColor||"transparent",v.shadowOffsetX=t.shadowOffsetX||0,v.shadowOffsetY=t.shadowOffsetY||0,v.opacity=D(t.opacity,e.opacity,1)},e.makeFont=function(t){var e="";return bi(t)&&(e=[t.fontStyle,t.fontWeight,xi(t.fontSize),t.fontFamily||"sans-serif"].join(" ")),e&&P(e)||t.textFont||t.font},e}(_m),wv={left:!0,right:1,center:1},bv={top:1,bottom:1,middle:1},Sv=["fontStyle","fontWeight","fontSize","fontFamily"];const Cv=xv;var Mv=kn(),Tv=1,Iv={},kv=kn(),Dv=kn(),Av=["emphasis","blur","select"],Lv=["normal","emphasis","blur","select"],Ov="highlight",Pv="downplay",Rv="select",Nv="unselect",zv="toggleSelect",Ev="selectchanged",Bv={},Vv=["fontStyle","fontWeight","fontSize","fontFamily","textShadowColor","textShadowBlur","textShadowOffsetX","textShadowOffsetY"],Fv=["align","lineHeight","width","height","tag","verticalAlign","ellipsis"],Hv=["padding","borderWidth","borderRadius","borderDashOffset","backgroundColor","borderColor","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"],Wv=kn(),Gv={minMargin:1,textMargin:2},Uv=["textStyle","color"],jv=["fontStyle","fontWeight","fontSize","fontFamily","padding","lineHeight","rich","width","height","overflow"],Zv=new Cv;const Yv=function(){function t(){}return t.prototype.getTextColor=function(t){var e=this.ecModel;return this.getShallow("color")||(!t&&e?e.get(Uv):null)},t.prototype.getFont=function(){return pr({fontStyle:this.getShallow("fontStyle"),fontWeight:this.getShallow("fontWeight"),fontSize:this.getShallow("fontSize"),fontFamily:this.getShallow("fontFamily")},this.ecModel)},t.prototype.getTextRect=function(t){for(var e={text:t,verticalAlign:this.getShallow("verticalAlign")||this.getShallow("baseline")},n=0;n-1?o_:s_;gr(a_,{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",custom:"Custom chart",chart:"Chart"}},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:". "}}}}),gr(o_,{time:{month:["\u4e00\u6708","\u4e8c\u6708","\u4e09\u6708","\u56db\u6708","\u4e94\u6708","\u516d\u6708","\u4e03\u6708","\u516b\u6708","\u4e5d\u6708","\u5341\u6708","\u5341\u4e00\u6708","\u5341\u4e8c\u6708"],monthAbbr:["1\u6708","2\u6708","3\u6708","4\u6708","5\u6708","6\u6708","7\u6708","8\u6708","9\u6708","10\u6708","11\u6708","12\u6708"],dayOfWeek:["\u661f\u671f\u65e5","\u661f\u671f\u4e00","\u661f\u671f\u4e8c","\u661f\u671f\u4e09","\u661f\u671f\u56db","\u661f\u671f\u4e94","\u661f\u671f\u516d"],dayOfWeekAbbr:["\u65e5","\u4e00","\u4e8c","\u4e09","\u56db","\u4e94","\u516d"]},legend:{selector:{all:"\u5168\u9009",inverse:"\u53cd\u9009"}},toolbox:{brush:{title:{rect:"\u77e9\u5f62\u9009\u62e9",polygon:"\u5708\u9009",lineX:"\u6a2a\u5411\u9009\u62e9",lineY:"\u7eb5\u5411\u9009\u62e9",keep:"\u4fdd\u6301\u9009\u62e9",clear:"\u6e05\u9664\u9009\u62e9"}},dataView:{title:"\u6570\u636e\u89c6\u56fe",lang:["\u6570\u636e\u89c6\u56fe","\u5173\u95ed","\u5237\u65b0"]},dataZoom:{title:{zoom:"\u533a\u57df\u7f29\u653e",back:"\u533a\u57df\u7f29\u653e\u8fd8\u539f"}},magicType:{title:{line:"\u5207\u6362\u4e3a\u6298\u7ebf\u56fe",bar:"\u5207\u6362\u4e3a\u67f1\u72b6\u56fe",stack:"\u5207\u6362\u4e3a\u5806\u53e0",tiled:"\u5207\u6362\u4e3a\u5e73\u94fa"}},restore:{title:"\u8fd8\u539f"},saveAsImage:{title:"\u4fdd\u5b58\u4e3a\u56fe\u7247",lang:["\u53f3\u952e\u53e6\u5b58\u4e3a\u56fe\u7247"]}},series:{typeNames:{pie:"\u997c\u56fe",bar:"\u67f1\u72b6\u56fe",line:"\u6298\u7ebf\u56fe",scatter:"\u6563\u70b9\u56fe",effectScatter:"\u6d9f\u6f2a\u6563\u70b9\u56fe",radar:"\u96f7\u8fbe\u56fe",tree:"\u6811\u56fe",treemap:"\u77e9\u5f62\u6811\u56fe",boxplot:"\u7bb1\u578b\u56fe",candlestick:"K\u7ebf\u56fe",k:"K\u7ebf\u56fe",heatmap:"\u70ed\u529b\u56fe",map:"\u5730\u56fe",parallel:"\u5e73\u884c\u5750\u6807\u56fe",lines:"\u7ebf\u56fe",graph:"\u5173\u7cfb\u56fe",sankey:"\u6851\u57fa\u56fe",funnel:"\u6f0f\u6597\u56fe",gauge:"\u4eea\u8868\u76d8\u56fe",pictorialBar:"\u8c61\u5f62\u67f1\u56fe",themeRiver:"\u4e3b\u9898\u6cb3\u6d41\u56fe",sunburst:"\u65ed\u65e5\u56fe",custom:"\u81ea\u5b9a\u4e49\u56fe\u8868",chart:"\u56fe\u8868"}},aria:{general:{withTitle:"\u8fd9\u662f\u4e00\u4e2a\u5173\u4e8e\u201c{title}\u201d\u7684\u56fe\u8868\u3002",withoutTitle:"\u8fd9\u662f\u4e00\u4e2a\u56fe\u8868\uff0c"},series:{single:{prefix:"",withName:"\u56fe\u8868\u7c7b\u578b\u662f{seriesType}\uff0c\u8868\u793a{seriesName}\u3002",withoutName:"\u56fe\u8868\u7c7b\u578b\u662f{seriesType}\u3002"},multiple:{prefix:"\u5b83\u7531{seriesCount}\u4e2a\u56fe\u8868\u7cfb\u5217\u7ec4\u6210\u3002",withName:"\u7b2c{seriesId}\u4e2a\u7cfb\u5217\u662f\u4e00\u4e2a\u8868\u793a{seriesName}\u7684{seriesType}\uff0c",withoutName:"\u7b2c{seriesId}\u4e2a\u7cfb\u5217\u662f\u4e00\u4e2a{seriesType}\uff0c",separator:{middle:"\uff1b",end:"\u3002"}}},data:{allData:"\u5176\u6570\u636e\u662f\u2014\u2014",partialData:"\u5176\u4e2d\uff0c\u524d{displayCnt}\u9879\u662f\u2014\u2014",withName:"{name}\u7684\u6570\u636e\u662f{value}",withoutName:"{value}",separator:{middle:"\uff0c",end:""}}}});var h_=null,d_=1e3,p_=6e4,f_=36e5,g_=864e5,y_=31536e6,m_={year:/({yyyy}|{yy})/,month:/({MMMM}|{MMM}|{MM}|{M})/,day:/({dd}|{d})/,hour:/({HH}|{H}|{hh}|{h})/,minute:/({mm}|{m})/,second:/({ss}|{s})/,millisecond:/({SSS}|{S})/},v_={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}"},__="{yyyy}-{MM}-{dd}",x_={year:"{yyyy}",month:"{yyyy}-{MM}",day:__,hour:__+" "+v_.hour,minute:__+" "+v_.minute,second:__+" "+v_.second,millisecond:"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}"},w_=["year","month","day","hour","minute","second","millisecond"],b_=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"],S_=L,C_=["a","b","c","d","e","f","g"],M_=function(t,e){return"{"+t+(null==e?"":e)+"}"},T_={},I_={},k_=function(){function t(){this._normalMasterList=[],this._nonSeriesBoxMasterList=[]}return t.prototype.create=function(t,e){function n(n,i){var r=[];return c(n,function(n,i){var o=n.create(t,e);r=r.concat(o||[])}),r}this._nonSeriesBoxMasterList=n(T_),this._normalMasterList=n(I_)},t.prototype.update=function(t,e){c(this._normalMasterList,function(n){n.update&&n.update(t,e)})},t.prototype.getCoordinateSystems=function(){return this._normalMasterList.concat(this._nonSeriesBoxMasterList)},t.register=function(t,e){"matrix"!==t&&"calendar"!==t?I_[t]=e:T_[t]=e},t.get=function(t){return I_[t]||T_[t]},t}(),D_=1,A_=2,L_=z(),O_=0,P_=1,R_=2;const N_=k_;var z_=c,E_=["left","right","top","bottom","width","height"],B_=[["width","left","right"],["height","top","bottom"]],V_=Ur,F_=(g(Ur,"vertical"),g(Ur,"horizontal"),{rect:1,point:2}),H_=kn(),W_=function(e){function n(t,n,i){var r=e.call(this,t,n,i)||this;return r.uid=fr("ec_cpt_model"),r}var i;return t(n,e),n.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n)},n.prototype.mergeDefaultAndTheme=function(t,e){var n=Xr(this),i=n?$r(t):{};r(t,e.getTheme().get(this.mainType)),r(t,this.getDefaultOption()),n&&qr(t,i,n)},n.prototype.mergeOption=function(t,e){r(this.option,t,!0);var n=Xr(this);n&&qr(this.option,t,n)},n.prototype.optionUpdated=function(t,e){},n.prototype.getDefaultOption=function(){var t=this.constructor;if(!function(t){return!(!t||!t[Qy])}(t))return t.defaultOption;var e=H_(this);if(!e.defaultOption){for(var n=[],i=t;i;){var o=i.prototype.defaultOption;o&&n.push(o),i=i.superClass}for(var a={},s=n.length-1;s>=0;s--)a=r(a,n[s],!0);e.defaultOption=a}return e.defaultOption},n.prototype.getReferringComponents=function(t,e){var n=t+"Id";return Ln(this.ecModel,t,{index:this.get(t+"Index",!0),id:this.get(n,!0)},e)},n.prototype.getBoxLayoutParams=function(){return{left:(t=this).getShallow("left",e=!1),top:t.getShallow("top",e),right:t.getShallow("right",e),bottom:t.getShallow("bottom",e),width:t.getShallow("width",e),height:t.getShallow("height",e)};var t,e},n.prototype.getZLevelKey=function(){return""},n.prototype.setZLevel=function(t){this.option.zlevel=t},n.protoInitialize=((i=n.prototype).type="component",i.id="",i.name="",i.mainType="",i.subType="",void(i.componentIndex=0)),n}(i_);Nn(W_,i_),Bn(W_),function(t){var e={};t.registerSubTypeDefaulter=function(t,n){var i=Pn(t);e[i.main]=n},t.determineSubType=function(n,i){var r=i.type;if(!r){var o=Pn(n).main;t.hasSubTypes(n)&&e[o]&&(r=e[o](i))}return r}}(W_),function(t){function e(t,e){return t[e]||(t[e]={predecessor:[],successor:[]}),t[e]}t.topologicalTravel=function(t,n,i,r){function o(t){u[t].entryCount--,0===u[t].entryCount&&d.push(t)}function a(t){p[t]=!0,o(t)}if(t.length){var l=function(t){var n={},i=[];return c(t,function(r){var o,a,l=e(n,r),u=function(t,e){var n=[];return c(t,function(t){s(e,t)>=0&&n.push(t)}),n}(l.originalDeps=(a=[],c(W_.getClassesByMainType(o=r),function(t){a=a.concat(t.dependencies||t.prototype.dependencies||[])}),a=h(a,function(t){return Pn(t).main}),"dataset"!==o&&s(a,"dataset")<=0&&a.unshift("dataset"),a),t);l.entryCount=u.length,0===l.entryCount&&i.push(r),c(u,function(t){s(l.predecessor,t)<0&&l.predecessor.push(t);var i=e(n,t);s(i.successor,t)<0&&i.successor.push(r)})}),{graph:n,noEntryList:i}}(n),u=l.graph,d=l.noEntryList,p={};for(c(t,function(t){p[t]=!0});d.length;){var f=d.pop(),g=u[f],y=!!p[f];y&&(i.call(r,f,g.originalDeps.slice()),delete p[f]),c(g.successor,y?a:o)}c(p,function(){throw new Error("")})}}}(W_);const G_=W_;var U_={color:{},darkColor:{},size:{}},j_=U_.color={theme:["#5070dd","#b6d634","#505372","#ff994d","#0ca8df","#ffd10a","#fb628b","#785db0","#3fbe95"],neutral00:"#fff",neutral05:"#f4f7fd",neutral10:"#e8ebf0",neutral15:"#dbdee4",neutral20:"#cfd2d7",neutral25:"#c3c5cb",neutral30:"#b7b9be",neutral35:"#aaacb2",neutral40:"#9ea0a5",neutral45:"#929399",neutral50:"#86878c",neutral55:"#797b7f",neutral60:"#6d6e73",neutral65:"#616266",neutral70:"#54555a",neutral75:"#48494d",neutral80:"#3c3c41",neutral85:"#303034",neutral90:"#232328",neutral95:"#17171b",neutral99:"#000",accent05:"#eff1f9",accent10:"#e0e4f2",accent15:"#d0d6ec",accent20:"#c0c9e6",accent25:"#b1bbdf",accent30:"#a1aed9",accent35:"#91a0d3",accent40:"#8292cc",accent45:"#7285c6",accent50:"#6578ba",accent55:"#5c6da9",accent60:"#536298",accent65:"#4a5787",accent70:"#404c76",accent75:"#374165",accent80:"#2e3654",accent85:"#252b43",accent90:"#1b2032",accent95:"#121521",transparent:"rgba(0,0,0,0)",highlight:"rgba(255,231,130,0.8)"};for(var Z_ in o(j_,{primary:j_.neutral80,secondary:j_.neutral70,tertiary:j_.neutral60,quaternary:j_.neutral50,disabled:j_.neutral20,border:j_.neutral30,borderTint:j_.neutral20,borderShade:j_.neutral40,background:j_.neutral05,backgroundTint:"rgba(234,237,245,0.5)",backgroundTransparent:"rgba(255,255,255,0)",backgroundShade:j_.neutral10,shadow:"rgba(0,0,0,0.2)",shadowTint:"rgba(129,130,136,0.2)",axisLine:j_.neutral70,axisLineTint:j_.neutral40,axisTick:j_.neutral70,axisTickMinor:j_.neutral60,axisLabel:j_.neutral70,axisSplitLine:j_.neutral15,axisMinorSplitLine:j_.neutral05}),j_)if(j_.hasOwnProperty(Z_)){var Y_=j_[Z_];"theme"===Z_?U_.darkColor.theme=j_.theme.slice():"highlight"===Z_?U_.darkColor.highlight="rgba(255,231,130,0.4)":U_.darkColor[Z_]=0===Z_.indexOf("accent")?ae(Y_,null,function(t){return.5*t},function(t){return Math.min(1,1.3-t)}):ae(Y_,null,function(t){return.9*t},function(t){return 1-Math.pow(t,1.5)})}U_.size={xxs:2,xs:5,s:10,m:15,l:20,xl:30,xxl:40,xxxl:50};const X_=U_;var q_="";"undefined"!=typeof navigator&&(q_=navigator.platform||"");var $_="rgba(0, 0, 0, 0.2)",K_=X_.color.theme[0],J_=ae(K_,null,null,.9);const Q_={darkMode:"auto",colorBy:"series",color:X_.color.theme,gradientColor:[J_,K_],aria:{decal:{decals:[{color:$_,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:$_,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:$_,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:$_,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:$_,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:$_,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:q_.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};var tx,ex,nx,ix=z(["tooltip","label","itemName","itemId","itemGroupId","itemChildGroupId","seriesName"]),rx="original",ox="arrayRows",ax="objectRows",sx="keyedColumns",lx="typedArray",ux="unknown",cx="column",hx="row",dx=1,px=2,fx=3,gx=kn(),yx=z(),mx=kn(),vx=(kn(),function(){function t(){}return t.prototype.getColorFromPalette=function(t,e,n){var i=mn(this.get("color",!0)),r=this.get("colorLayer",!0);return function(t,e,n,i,r,o,a){var s=e(o=o||t),l=s.paletteIdx||0,u=s.paletteNameMap=s.paletteNameMap||{};if(u.hasOwnProperty(r))return u[r];var c=null!=a&&i?function(t,e){for(var n=t.length,i=0;ie)return t[i];return t[n-1]}(i,a):n;if((c=c||n)&&c.length){var h=c[l];return r&&(u[r]=h),s.paletteIdx=(l+1)%c.length,h}}(this,mx,i,r,t,e,n)},t.prototype.clearColorPalette=function(){!function(t,e){e(t).paletteIdx=0,e(t).paletteNameMap={}}(this,mx)},t}()),_x="\0_ec_inner",xx=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.init=function(t,e,n,i,r,o){i=i||{},this.option=null,this._theme=new i_(i),this._locale=new i_(r),this._optionManager=o},n.prototype.setOption=function(t,e,n){var i=io(e);this._optionManager.setOption(t,n,i),this._resetOption(null,i)},n.prototype.resetOption=function(t,e){return this._resetOption(t,io(e))},n.prototype._resetOption=function(t,e){var n=!1,i=this._optionManager;if(!t||"recreate"===t){var r=i.mountOption("recreate"===t);this.option&&"recreate"!==t?(this.restoreData(),this._mergeOption(r,e)):nx(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&&c(a,function(t){n=!0,this._mergeOption(t,e)},this)}return n},n.prototype.mergeOption=function(t){this._mergeOption(t,null)},n.prototype._mergeOption=function(t,e){var n=this.option,a=this._componentsMap,s=this._componentsCount,l=[],u=z(),h=e&&e.replaceMergeMainTypeMap;gx(this).datasetMap=z(),c(t,function(t,e){null!=t&&(G_.hasClass(e)?e&&(l.push(e),u.set(e,!0)):n[e]=null==n[e]?i(t):r(n[e],t,!0))}),h&&h.each(function(t,e){G_.hasClass(e)&&!u.get(e)&&(l.push(e),u.set(e,!0))}),G_.topologicalTravel(l,G_.getAllClassMainTypes(),function(e){var i=function(t,e,n){var i=yx.get(e);if(!i)return n;var r=i(t);return r?n.concat(r):n}(this,e,mn(t[e])),r=a.get(e),l=wn(r,i,r?h&&h.get(e)?"replaceMerge":"normalMerge":"replaceAll");!function(t,e,n){c(t,function(t){var i=t.newOption;w(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))})}(l,e,G_),n[e]=null,a.set(e,null),s.set(e,0);var u,d=[],p=[],f=0;c(l,function(t,n){var i=t.existing,r=t.newOption;if(r){var a=G_.getClass(e,t.keyInfo.subType,!("series"===e));if(!a)return;if("tooltip"===e){if(u)return;u=!0}if(i&&i.constructor===a)i.name=t.keyInfo.name,i.mergeOption(r,this),i.optionUpdated(r,!1);else{var s=o({componentIndex:n},t.keyInfo);o(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?(d.push(i.option),p.push(i),f++):(d.push(void 0),p.push(void 0))},this),n[e]=d,a.set(e,p),s.set(e,f),"series"===e&&tx(this)},this),this._seriesIndices||tx(this)},n.prototype.getOption=function(){var t=i(this.option);return c(t,function(e,n){if(G_.hasClass(n)){for(var i=mn(e),r=i.length,o=!1,a=r-1;a>=0;a--)i[a]&&!Tn(i[a])?o=!0:(i[a]=null,!o&&r--);i.length=r,t[n]=i}}),delete t[_x],t},n.prototype.setTheme=function(t){this._theme=new i_(t),this._resetOption("recreate",null)},n.prototype.getTheme=function(){return this._theme},n.prototype.getLocaleModel=function(){return this._locale},n.prototype.setUpdatePayload=function(t){this._payload=t},n.prototype.getUpdatePayload=function(){return this._payload},n.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;ru&&(u=p)}s[0]=l,s[1]=u}},r=function(){return this._data?this._data.length/this._dimSize:0};(e={})[ox+"_"+cx]={pure:!0,appendData:t},e[ox+"_"+hx]={pure:!0,appendData:function(){throw new Error('Do not support appendData when set seriesLayoutBy: "row".')}},e[ax]={pure:!0,appendData:t},e[sx]={pure:!0,appendData:function(t){var e=this._data;c(t,function(t,n){for(var i=e[n]||(e[n]=[]),r=0;r<(t||[]).length;r++)i.push(t[r])})}},e[rx]={appendData:t},e[lx]={persistent:!1,pure:!0,appendData:function(t){this._data=t},clean:function(){this._offset+=this.count(),this._data=null}},Ox=e}(),t}(),jx=function(t){y(t)||To("series.data or dataset.source must be an array.")},Zx=((kx={})[ox+"_"+cx]=jx,kx[ox+"_"+hx]=jx,kx[ax]=jx,kx[sx]=function(t,e){for(var n=0;n=0&&(s=o.interpolatedValue[l])}return null!=s?s+"":""}):void 0},t.prototype.getRawValue=function(t,e){return Oo(this.getData(e),t)},t.prototype.formatTooltip=function(t,e,n){},t}(),tw=function(){function t(t){this._reset=(t=t||{}).reset,this._plan=t.plan,this._count=t.count,this._onDirty=t.onDirty,this._dirty=!0}return t.prototype.perform=function(t){function e(t){return!(t>=1)&&(t=1),t}var n,i=this._upstream,r=t&&t.skip;if(this._dirty&&i){var o=this.context;o.data=o.outputData=i.context.outputData}this.__pipeline&&(this.__pipeline.currentTask=this),this._plan&&!r&&(n=this._plan(this.context));var a,s=e(this._modBy),l=this._modDataCount||0,u=e(t&&t.modBy),c=t&&t.modDataCount||0;s===u&&l===c||(n="reset"),(this._dirty||"reset"===n)&&(this._dirty=!1,a=this._doReset(r)),this._modBy=u,this._modDataCount=c;var h=t&&t.step;if(this._dueEnd=i?i._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var d=this._dueIndex,p=Math.min(null!=h?this._dueIndex+h:1/0,this._dueEnd);if(!r&&(a||d=n?null:t1&&o>0?e:t}};return s}(),nw=(z({number:function(t){return parseFloat(t)},time:function(t){return+cn(t)},trim:function(t){return v(t)?P(t):t}}),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=x(t)?t:pn(t),i=x(e)?e:pn(e),r=isNaN(n),o=isNaN(i);if(r&&(n=this._incomparable),o&&(i=this._incomparable),r&&o){var a=v(t),s=v(e);a&&(n=s?t:0),s&&(i=a?e:0)}return ni?-this._resultLT:0},t}()),iw=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 No(t,e)},t}(),rw=z(),ow="undefined",aw=typeof Uint32Array===ow?Array:Uint32Array,sw=typeof Uint16Array===ow?Array:Uint16Array,lw=typeof Int32Array===ow?Array:Int32Array,uw=typeof Float64Array===ow?Array:Float64Array,cw={float:uw,int:lw,ordinal:Array,number:Array,time:uw},hw=function(){function t(){this._chunks=[],this._rawExtent=[],this._extent=[],this._count=0,this._rawCount=0,this._calcDimNameToIdx=z()}return t.prototype.initData=function(t,e,n){this._provider=t,this._chunks=[],this._indices=null,this.getRawIndex=this._getRawIdxIdentity;var i=t.getSource(),r=this.defaultDimValueGetter=Rx[i.sourceFormat];this._dimValueGetter=n||r,this._rawExtent=[],Mo(i),this._dimensions=h(e,function(t){return{type:t.type,property:t.property}}),this._initDataFromProvider(0,t.count())},t.prototype.getProvider=function(){return this._provider},t.prototype.getSource=function(){return this._provider.getSource()},t.prototype.ensureCalculationDimension=function(t,e){var n=this._calcDimNameToIdx,i=this._dimensions,r=n.get(t);if(null!=r){if(i[r].type===e)return r}else r=i.length;return i[r]={type:e},n.set(t,r),this._chunks[r]=new cw[e||"float"](this._rawCount),this._rawExtent[r]=[1/0,-1/0],r},t.prototype.collectOrdinalMeta=function(t,e){var n=this._chunks[t],i=this._dimensions[t],r=this._rawExtent,o=i.ordinalOffset||0,a=n.length;0===o&&(r[t]=[1/0,-1/0]);for(var s=r[t],l=o;lf[1]&&(f[1]=p)}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=h(o,function(t){return t.property}),u=0;um[1]&&(m[1]=y)}}!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.getIndices=function(){var t,e=this._indices;if(e){var n=this._count;if((r=e.constructor)===Array){t=new r(n);for(var i=0;i=u&&C<=c||isNaN(C))&&(a[s++]=p),p++;d=!0}else if(2===r){g=h[i[0]];var m=h[i[1]],v=t[i[1]][0],_=t[i[1]][1];for(y=0;y=u&&C<=c||isNaN(C))&&(x>=v&&x<=_||isNaN(x))&&(a[s++]=p),p++}d=!0}}if(!d)if(1===r)for(y=0;y=u&&C<=c||isNaN(C))&&(a[s++]=w)}else for(y=0;yt[M][1])&&(b=!1)}b&&(a[s++]=e.getRawIndex(y))}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),c=this.getRawIndex(0),h=new(Wo(this._rawCount))(Math.min(2*(Math.ceil(s/u)+2),s));h[l++]=c;for(var d=1;dn&&(n=i,r=M)}C>0&&Ca&&(f=a-u);for(var g=0;gp&&(p=y,d=u+g)}var m=this.getRawIndex(c),v=this.getRawIndex(d);cu-p&&(a.length=s=u-p);for(var f=0;fc[1]&&(c[1]=y),h[d++]=m}return r._count=d,r._indices=h,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 this._extent[t]=i=[o,a],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 No(t[i],this._dimensions[i])}Rx={arrayRows:t,objectRows:function(t,e,n,i){return No(t[e],this._dimensions[i])},keyedColumns:t,original:function(t,e,n,i){var r=t&&(null==t.value?t:t.value);return No(r instanceof Array?r[i]:r,this._dimensions[i])},typedArray:function(t,e,n,i){return t[i]}}}(),t}();const dw=hw;var pw=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(Zo(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=S(a=o.get("data",!0))?lx:rx,e=[];var c=this._getSourceMetaRawOption()||{},h=l&&l.metaRawOption||{},d=k(c.seriesLayoutBy,h.seriesLayoutBy)||null,p=k(c.sourceHeader,h.sourceHeader),f=k(c.dimensions,h.dimensions);t=d!==h.seriesLayoutBy||!!p!=!!h.sourceHeader||f?[xo(a,{seriesLayoutBy:d,sourceHeader:p,dimensions:f},s)]:[]}else{var g=n;if(r){var y=this._applyTransform(i);t=y.sourceList,e=y.upstreamSignList}else t=[xo(g.get("source",!0),this._getSourceMetaRawOption(),null)],e=[]}this._setLocalSource(t,e)},t.prototype._applyTransform=function(t){var e,n=this._sourceHost,r=n.get("transform",!0),o=n.get("fromTransformResult",!0);null!=o&&1!==t.length&&Yo("");var a,s=[],l=[];return c(t,function(t){t.prepareSource();var e=t.getSource(o||0);null==o||e||Yo(""),s.push(e),l.push(t._getVersionSign())}),r?e=function(t,e){var n=mn(t),i=n.length;i||Io("");for(var r=0,o=i;r':'':{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}}:""}({color:e,type:t,renderMode:n,markerId:i});return v(r)?r:(this.richTextStyles[i]=r.style,r.content)},t.prototype.wrapRichTextStyle=function(t,e){var n={};y(e)?c(e,function(t){return o(n,t)}):o(n,e);var i=this._generateStyleName();return this.richTextStyles[i]=n,"{"+i+"|"+t+"}"},t}(),mw=kn(),vw=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t._selectedDataIndicesMap={},t}var i;return t(n,e),n.prototype.init=function(t,e,n){this.seriesIndex=this.componentIndex,this.dataTask=Ro({count:ua,reset:ca}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,n),(mw(this).sourceManager=new pw(this)).prepareSource();var i=this.getInitialData(t,n);da(i,this),this.dataTask.context.data=i,mw(this).dataBeforeProcessed=i,la(this),this._initSelectedMapFromData(i)},n.prototype.mergeDefaultAndTheme=function(t,e){var n=Xr(this),i=n?$r(t):{},o=this.subType;G_.hasClass(o)&&(o+="Series"),r(t,e.getTheme().get(this.subType)),r(t,this.getDefaultOption()),vn(t,"label",["show"]),this.fillDataTextStyle(t.data),n&&qr(t,i,n)},n.prototype.mergeOption=function(t,e){t=r(this.option,t,!0),this.fillDataTextStyle(t.data);var n=Xr(this);n&&qr(this.option,t,n);var i=mw(this).sourceManager;i.dirty(),i.prepareSource();var o=this.getInitialData(t,e);da(o,this),this.dataTask.dirty(),this.dataTask.context.data=o,mw(this).dataBeforeProcessed=o,la(this),this._initSelectedMapFromData(o)},n.prototype.fillDataTextStyle=function(t){if(t&&!S(t))for(var e=["show"],n=0;n=0&&c<0)&&(u=o,c=r,h=0),r===c&&(l[h++]=e))}),l.length=h,l},n.prototype.formatTooltip=function(t,e,n){return aa({series:this,dataIndex:t,multipleSeries:e})},n.prototype.isAnimationEnabled=function(){var t=this.ecModel;if(Qp.node&&(!t||!t.ssr))return!1;var e=this.getShallow("animation");return e&&this.getData().count()>this.getShallow("animationThreshold")&&(e=!1),!!e},n.prototype.restoreData=function(){this.dataTask.dirty()},n.prototype.getColorFromPalette=function(t,e,n){var i=this.ecModel,r=vx.prototype.getColorFromPalette.call(this,t,e,n);return r||(r=i.getColorFromPalette(t,e,n)),r},n.prototype.coordDimToDataDim=function(t){return this.getRawData().mapDimensionsAll(t)},n.prototype.getProgressive=function(){return this.get("progressive")},n.prototype.getProgressiveThreshold=function(){return this.get("progressiveThreshold")},n.prototype.select=function(t,e){this._innerSelect(this.getData(e),t)},n.prototype.unselect=function(t,e){var n=this.option.selectedMap;if(n){var i=this.option.selectedMode,r=this.getData(e);if("series"===i||"all"===n)return this.option.selectedMap={},void(this._selectedDataIndicesMap={});for(var o=0;o=0&&n.push(r)}return n},n.prototype.isSelected=function(t,e){var n=this.option.selectedMap;if(!n)return!1;var i=this.getData(e);return("all"===n||n[sa(i,t)])&&!i.getItemModel(t).get(["select","disabled"])},n.prototype.isUniversalTransitionEnabled=function(){if(this.__universalTransitionEnabled)return!0;var t=this.option.universalTransition;return!!t&&(!0===t||t&&t.enabled)},n.prototype._innerSelect=function(t,e){var n,i,r=this.option,o=r.selectedMode,a=e.length;if(o&&a)if("series"===o)r.selectedMap="all";else if("multiple"===o){w(r.selectedMap)||(r.selectedMap={});for(var s=r.selectedMap,l=0;l0&&this._innerSelect(t,e)}},n.registerClass=function(t){return G_.registerClass(t)},n.protoInitialize=((i=n.prototype).type="series.__base__",i.seriesIndex=0,i.ignoreStyleOnData=!1,i.hasSymbolVisual=!1,i.defaultSymbol="circle",i.visualStyleAccessPath="itemStyle",void(i.visualDrawType="fill")),n}(G_);l(vw,Qx),l(vw,vx),Nn(vw,G_);const _w=vw;var xw=function(){function t(){this.group=new Ny,this.uid=fr("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.toggleBlurSeries=function(t,e,n){},t.prototype.eachRendered=function(t){var e=this.group;e&&e.traverse(t)},t}();Rn(xw),Bn(xw);const ww=xw;var bw=Ym.CMD,Sw=[[],[],[]],Cw=Math.sqrt,Mw=Math.atan2,Tw=Math.sqrt,Iw=Math.sin,kw=Math.cos,Dw=Math.PI,Aw=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,Lw=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g,Ow=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return W(e,t),e.prototype.applyTransform=function(t){},e}(rv),Pw=function(){this.cx=0,this.cy=0,this.r=0},Rw=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultShape=function(){return new Pw},e.prototype.buildPath=function(t,e){t.moveTo(e.cx+e.r,e.cy),t.arc(e.cx,e.cy,e.r,0,2*Math.PI)},e}(rv);Rw.prototype.type="circle";const Nw=Rw;var zw=function(){this.cx=0,this.cy=0,this.rx=0,this.ry=0},Ew=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultShape=function(){return new zw},e.prototype.buildPath=function(t,e){var n=.5522848,i=e.cx,r=e.cy,o=e.rx,a=e.ry,s=o*n,l=a*n;t.moveTo(i-o,r),t.bezierCurveTo(i-o,r-l,i-s,r-a,i,r-a),t.bezierCurveTo(i+s,r-a,i+o,r-l,i+o,r),t.bezierCurveTo(i+o,r+l,i+s,r+a,i,r+a),t.bezierCurveTo(i-s,r+a,i-o,r+l,i-o,r),t.closePath()},e}(rv);Ew.prototype.type="ellipse";const Bw=Ew;var Vw=Math.PI,Fw=2*Vw,Hw=Math.sin,Ww=Math.cos,Gw=Math.acos,Uw=Math.atan2,jw=Math.abs,Zw=Math.sqrt,Yw=Math.max,Xw=Math.min,qw=1e-4,$w=function(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0,this.cornerRadius=0},Kw=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultShape=function(){return new $w},e.prototype.buildPath=function(t,e){!function(t,e){var n,i=Yw(e.r,0),r=Yw(e.r0||0,0),o=i>0;if(o||r>0){if(o||(i=r,r=0),r>i){var a=i;i=r,r=a}var s=e.startAngle,l=e.endAngle;if(!isNaN(s)&&!isNaN(l)){var u=e.cx,c=e.cy,h=!!e.clockwise,d=jw(l-s),p=d>Fw&&d%Fw;if(p>qw&&(d=p),i>qw)if(d>Fw-qw)t.moveTo(u+i*Ww(s),c+i*Hw(s)),t.arc(u,c,i,s,l,!h),r>qw&&(t.moveTo(u+r*Ww(l),c+r*Hw(l)),t.arc(u,c,r,l,s,h));else{var f=void 0,g=void 0,m=void 0,v=void 0,_=void 0,x=void 0,w=void 0,b=void 0,S=void 0,C=void 0,M=void 0,T=void 0,I=void 0,k=void 0,D=void 0,A=void 0,L=i*Ww(s),O=i*Hw(s),P=r*Ww(l),R=r*Hw(l),N=d>qw;if(N){var z=e.cornerRadius;z&&(n=function(t){var e;if(y(t)){var n=t.length;if(!n)return t;e=1===n?[t[0],t[0],0,0]:2===n?[t[0],t[0],t[1],t[1]]:3===n?t.concat(t[2]):t}else e=[t,t,t,t];return e}(z),f=n[0],g=n[1],m=n[2],v=n[3]);var E=jw(i-r)/2;if(_=Xw(E,m),x=Xw(E,v),w=Xw(E,f),b=Xw(E,g),M=S=Yw(_,x),T=C=Yw(w,b),(S>qw||C>qw)&&(I=i*Ww(l),k=i*Hw(l),D=r*Ww(s),A=r*Hw(s),dqw){var j=Xw(m,M),Z=Xw(v,M),Y=ba(D,A,L,O,i,j,h),X=ba(I,k,P,R,i,Z,h);t.moveTo(u+Y.cx+Y.x0,c+Y.cy+Y.y0),M0&&t.arc(u+Y.cx,c+Y.cy,j,Uw(Y.y0,Y.x0),Uw(Y.y1,Y.x1),!h),t.arc(u,c,i,Uw(Y.cy+Y.y1,Y.cx+Y.x1),Uw(X.cy+X.y1,X.cx+X.x1),!h),Z>0&&t.arc(u+X.cx,c+X.cy,Z,Uw(X.y1,X.x1),Uw(X.y0,X.x0),!h))}else t.moveTo(u+L,c+O),t.arc(u,c,i,s,l,!h);else t.moveTo(u+L,c+O);r>qw&&N?T>qw?(j=Xw(f,T),Y=ba(P,R,I,k,r,-(Z=Xw(g,T)),h),X=ba(L,O,D,A,r,-j,h),t.lineTo(u+Y.cx+Y.x0,c+Y.cy+Y.y0),T0&&t.arc(u+Y.cx,c+Y.cy,Z,Uw(Y.y0,Y.x0),Uw(Y.y1,Y.x1),!h),t.arc(u,c,r,Uw(Y.cy+Y.y1,Y.cx+Y.x1),Uw(X.cy+X.y1,X.cx+X.x1),h),j>0&&t.arc(u+X.cx,c+X.cy,j,Uw(X.y1,X.x1),Uw(X.y0,X.x0),!h))):(t.lineTo(u+P,c+R),t.arc(u,c,r,l,s,h)):t.lineTo(u+P,c+R)}else t.moveTo(u,c);t.closePath()}}}(t,e)},e.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},e}(rv);Kw.prototype.type="sector";const Jw=Kw;var Qw=function(){this.cx=0,this.cy=0,this.r=0,this.r0=0},tb=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultShape=function(){return new Qw},e.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=2*Math.PI;t.moveTo(n+e.r,i),t.arc(n,i,e.r,0,r,!1),t.moveTo(n+e.r0,i),t.arc(n,i,e.r0,0,r,!0)},e}(rv);tb.prototype.type="ring";const eb=tb;var nb=function(){this.points=null,this.smooth=0,this.smoothConstraint=null},ib=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultShape=function(){return new nb},e.prototype.buildPath=function(t,e){Sa(t,e,!0)},e}(rv);ib.prototype.type="polygon";const rb=ib;var ob=function(){this.points=null,this.percent=1,this.smooth=0,this.smoothConstraint=null},ab=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new ob},e.prototype.buildPath=function(t,e){Sa(t,e,!1)},e}(rv);ab.prototype.type="polyline";const sb=ab;var lb={},ub=function(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.percent=1},cb=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new ub},e.prototype.buildPath=function(t,e){var n,i,r,o;if(this.subPixelOptimize){var a=mi(lb,e,this.style);n=a.x1,i=a.y1,r=a.x2,o=a.y2}else n=e.x1,i=e.y1,r=e.x2,o=e.y2;var s=e.percent;0!==s&&(t.moveTo(n,i),s<1&&(r=n*(1-s)+r*s,o=i*(1-s)+o*s),t.lineTo(r,o))},e.prototype.pointAt=function(t){var e=this.shape;return[e.x1*(1-t)+e.x2*t,e.y1*(1-t)+e.y2*t]},e}(rv);cb.prototype.type="line";const hb=cb;var db=[],pb=function(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.cpx1=0,this.cpy1=0,this.percent=1},fb=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new pb},e.prototype.buildPath=function(t,e){var n=e.x1,i=e.y1,r=e.x2,o=e.y2,a=e.cpx1,s=e.cpy1,l=e.cpx2,u=e.cpy2,c=e.percent;0!==c&&(t.moveTo(n,i),null==l||null==u?(c<1&&(Zt(n,a,r,c,db),a=db[1],r=db[2],Zt(i,s,o,c,db),s=db[1],o=db[2]),t.quadraticCurveTo(a,s,r,o)):(c<1&&(Ht(n,a,l,r,c,db),a=db[1],l=db[2],r=db[3],Ht(i,s,u,o,c,db),s=db[1],u=db[2],o=db[3]),t.bezierCurveTo(a,s,l,u,r,o)))},e.prototype.pointAt=function(t){return Ca(this.shape,t,!1)},e.prototype.tangentAt=function(t){var e=Ca(this.shape,t,!0);return J(e,e)},e}(rv);fb.prototype.type="bezier-curve";const gb=fb;var yb=function(){this.cx=0,this.cy=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0},mb=function(t){function e(e){return t.call(this,e)||this}return W(e,t),e.prototype.getDefaultStyle=function(){return{stroke:"#000",fill:null}},e.prototype.getDefaultShape=function(){return new yb},e.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=Math.max(e.r,0),o=e.startAngle,a=e.endAngle,s=e.clockwise,l=Math.cos(o),u=Math.sin(o);t.moveTo(l*r+n,u*r+i),t.arc(n,i,r,o,a,!s)},e}(rv);mb.prototype.type="arc";const vb=mb;var _b=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="compound",e}return W(e,t),e.prototype._updatePathDirty=function(){for(var t=this.shape.paths,e=this.shapeChanged(),n=0;nDb[1]){if(r=!1,Ab.negativeSize||n)return r;var s=Ib(Db[0]-kb[1]),l=Ib(kb[0]-Db[1]);Mb(s,l)>Ob.len()&&jf.scale(Ob,a,s=l||!Ab.bidirectional)&&(jf.scale(Lb,a,-l*i),Ab.useDir&&Ab.calcDirMTV())))}return r},t.prototype._getProjMinMaxOnAxis=function(t,e,n){for(var i=this._axes[t],r=this._origin,o=e[0].dot(i)+r[t],a=o,s=o,l=1;ln.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=z();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;c(this._allHandlers,function(i){var r=t.get(i.uid)||t.set(i.uid,{});O(!(i.reset&&i.overallReset),""),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){function r(t,e){return t.setDirty&&(!t.dirtyMap||t.dirtyMap.get(e.__pipeline.id))}i=i||{};var o=!1,a=this;c(t,function(t,s){if(!i.visualType||i.visualType===t.visualType){var l=a._stageTaskMap.get(t.uid),u=l.seriesTaskMap,c=l.overallTask;if(c){var h,d=c.agentStubMap;d.each(function(t){r(i,t)&&(t.dirty(),h=!0)}),h&&c.dirty(),a.updatePayload(c,n);var p=a.getPerformArgs(c,i.block);d.each(function(t){t.perform(p)}),c.perform(p)&&(o=!0)}else u&&u.each(function(s,l){r(i,s)&&s.dirty();var u=a.getPerformArgs(s,i.block);u.skip=!t.performRawSeries&&e.isSeriesFiltered(s.context.model),a.updatePayload(s,n),s.perform(u)&&(o=!0)})}}),this.unfinished=o||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){function r(e){var r=e.uid,l=s.set(r,a&&a.get(r)||Ro({plan:Ms,reset:Ts,count:ks}));l.context={model:e,ecModel:n,api:i,useClearVisual:t.isVisual&&!t.isLayout,plan:t.plan,reset:t.reset,scheduler:o},o._pipe(e,l)}var o=this,a=e.seriesTaskMap,s=e.seriesTaskMap=z(),l=t.seriesType,u=t.getTargetSeries;t.createOnAllSeries?n.eachRawSeries(r):l?n.eachRawSeriesByType(l,r):u&&u(n,i).each(r)},t.prototype._createOverallStageTask=function(t,e,n,i){function r(t){var e=t.uid,n=l.set(e,s&&s.get(e)||(p=!0,Ro({reset:bs,onDirty:Cs})));n.context={model:t,overallProgress:d},n.agent=a,n.__block=d,o._pipe(t,n)}var o=this,a=e.overallTask=e.overallTask||Ro({reset:ws});a.context={ecModel:n,api:i,overallReset:t.overallReset,scheduler:o};var s=a.agentStubMap,l=a.agentStubMap=z(),u=t.seriesType,h=t.getTargetSeries,d=!0,p=!1;O(!t.createOnAllSeries,""),u?n.eachRawSeriesByType(u,r):h?h(n,i).each(r):(d=!1,c(n.getSeries(),r)),p&&a.dirty()},t.prototype._pipe=function(t,e){var n=this._pipelineMap.get(t.uid);!n.head&&(n.head=e),n.tail&&n.tail.pipe(e),n.tail=e,e.__idxInPipeline=n.count++,e.__pipeline=n},t.wrapStageHandler=function(t,e){return m(t)&&(t={overallReset:t,seriesType:Ds(t)}),t.uid=fr("stageHandler"),e&&(t.visualType=e),t},t}(),cS=Is(0),hS={},dS={};As(hS,bx),As(dS,Cx),hS.eachSeriesByType=hS.eachRawSeriesByType=function(t){Kb=t},hS.eachComponent=function(t){"series"===t.mainType&&t.subType&&(Kb=t.subType)};const pS=uS;var fS,gS=X_.darkColor,yS=function(){return{axisLine:{lineStyle:{color:gS.axisLine}},splitLine:{lineStyle:{color:gS.axisSplitLine}},splitArea:{areaStyle:{color:[gS.backgroundTint,gS.backgroundTransparent]}},minorSplitLine:{lineStyle:{color:gS.axisMinorSplitLine}},axisLabel:{color:gS.axisLabel},axisName:{}}},mS={label:{color:gS.secondary},itemStyle:{borderColor:gS.borderTint},dividerLineStyle:{color:gS.border}},vS={darkMode:!0,color:gS.theme,backgroundColor:gS.background,axisPointer:{lineStyle:{color:gS.border},crossStyle:{color:gS.borderShade},label:{color:gS.tertiary}},legend:{textStyle:{color:gS.secondary},pageTextStyle:{color:gS.tertiary}},textStyle:{color:gS.secondary},title:{textStyle:{color:gS.primary},subtextStyle:{color:gS.quaternary}},toolbox:{iconStyle:{borderColor:gS.accent50}},tooltip:{backgroundColor:gS.neutral20,defaultBorderColor:gS.border,textStyle:{color:gS.tertiary}},dataZoom:{borderColor:gS.accent10,textStyle:{color:gS.tertiary},brushStyle:{color:gS.backgroundTint},handleStyle:{color:gS.neutral00,borderColor:gS.accent20},moveHandleStyle:{color:gS.accent40},emphasis:{handleStyle:{borderColor:gS.accent50}},dataBackground:{lineStyle:{color:gS.accent30},areaStyle:{color:gS.accent20}},selectedDataBackground:{lineStyle:{color:gS.accent50},areaStyle:{color:gS.accent30}}},visualMap:{textStyle:{color:gS.secondary},handleStyle:{borderColor:gS.neutral30}},timeline:{lineStyle:{color:gS.accent10},label:{color:gS.tertiary},controlStyle:{color:gS.accent30,borderColor:gS.accent30}},calendar:{itemStyle:{color:gS.neutral00,borderColor:gS.neutral20},dayLabel:{color:gS.tertiary},monthLabel:{color:gS.secondary},yearLabel:{color:gS.secondary}},matrix:{x:mS,y:mS,backgroundColor:{borderColor:gS.axisLine},body:{itemStyle:{borderColor:gS.borderTint}}},timeAxis:yS(),logAxis:yS(),valueAxis:yS(),categoryAxis:yS(),line:{symbol:"circle"},graph:{color:gS.theme},gauge:{title:{color:gS.secondary},axisLine:{lineStyle:{color:[[1,gS.neutral05]]}},axisLabel:{color:gS.axisLabel},detail:{color:gS.primary}},candlestick:{itemStyle:{color:"#f64e56",color0:"#54ea92",borderColor:"#f64e56",borderColor0:"#54ea92"}},funnel:{itemStyle:{borderColor:gS.background}},radar:(fS=yS(),fS.axisName={color:gS.axisLabel},fS.axisLine.lineStyle.color=gS.neutral20,fS),treemap:{breadcrumb:{itemStyle:{color:gS.neutral20,textStyle:{color:gS.secondary}},emphasis:{itemStyle:{color:gS.neutral30}}}},sunburst:{itemStyle:{borderColor:gS.background}},map:{itemStyle:{borderColor:gS.border,areaColor:gS.neutral10},label:{color:gS.tertiary},emphasis:{label:{color:gS.primary},itemStyle:{areaColor:gS.highlight}},select:{label:{color:gS.primary},itemStyle:{areaColor:gS.highlight}}},geo:{itemStyle:{borderColor:gS.border,areaColor:gS.neutral10},emphasis:{label:{color:gS.primary},itemStyle:{areaColor:gS.highlight}},select:{label:{color:gS.primary},itemStyle:{color:gS.highlight}}}};vS.categoryAxis.splitLine.show=!1;const _S=vS;var xS=function(){function t(){}return t.prototype.normalizeQuery=function(t){var e={},n={},i={};if(v(t)){var r=Pn(t);e.mainType=r.main||null,e.subType=r.sub||null}else{var o=["Index","Name","Id"],a={name:1,dataIndex:1,dataType:1};c(t,function(t,r){for(var s=!1,l=0;l0&&c===r.length-u.length){var h=r.slice(0,c);"data"!==h&&(e.mainType=h,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){function n(t,e,n,i){return null==t[n]||e[i||n]===t[n]}var i=this.eventInfo;if(!i)return!0;var r=i.targetEl,o=i.packedEvent,a=i.model,s=i.view;if(!a||!s)return!0;var l=e.cptQuery,u=e.dataQuery;return n(l,a,"mainType")&&n(l,a,"subType")&&n(l,a,"index","componentIndex")&&n(l,a,"name")&&n(l,a,"id")&&n(u,o,"name")&&n(u,o,"dataIndex")&&n(u,o,"dataType")&&(!s.filterForExposedEvent||s.filterForExposedEvent(t,e.otherQuery,r,o))},t.prototype.afterTrigger=function(){this.eventInfo=null},t}(),wS=["symbol","symbolSize","symbolRotate","symbolOffset"],bS=wS.concat(["symbolKeepAspect"]),SS={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData();if(t.legendIcon&&n.setVisual("legendIcon",t.legendIcon),t.hasSymbolVisual){for(var i={},r={},a=!1,s=0;s0&&t.unfinished);t.unfinished||this._zr.flush()}}},n.prototype.getDom=function(){return this._dom},n.prototype.getId=function(){return this.id},n.prototype.getZr=function(){return this._zr},n.prototype.isSSR=function(){return this._ssr},n.prototype.setOption=function(t,e,n){if(!this[dC])if(this._disposed);else{var i,r,o;if(w(e)&&(n=e.lazyUpdate,i=e.silent,r=e.replaceMerge,o=e.transition,e=e.notMerge),this[dC]=!0,sC(this),!this._model||e){var a=new Ix(this._api),s=this._theme,l=this._model=new bx;l.scheduler=this._scheduler,l.ssr=this._ssr,l.init(null,null,null,s,this._locale,a)}this._model.setOption(t,{replaceMerge:r},IC);var u={seriesTransition:o,optionChanged:!0};if(n)this[fC]={silent:i,updateParams:u},this[dC]=!1,this.getZr().wakeUp();else{try{GS(this),ZS.update.call(this,null,u)}catch(t){throw this[fC]=null,this[dC]=!1,t}this._ssr||this._zr.flush(),this[fC]=null,this[dC]=!1,$S.call(this,i),KS.call(this,i)}}},n.prototype.setTheme=function(t,e){if(!this[dC])if(this._disposed);else{var n=this._model;if(n){var i=e&&e.silent,r=null;this[fC]&&(null==i&&(i=this[fC].silent),r=this[fC].updateParams,this[fC]=null),this[dC]=!0,sC(this);try{this._updateTheme(t),n.setTheme(this._theme),GS(this),ZS.update.call(this,{type:"setTheme"},r)}catch(t){throw this[dC]=!1,t}this[dC]=!1,$S.call(this,i),KS.call(this,i)}}},n.prototype._updateTheme=function(t){v(t)&&(t=DC[t]),t&&((t=i(t))&&vo(t,!0),this._theme=t)},n.prototype.getModel=function(){return this._model},n.prototype.getOption=function(){return this._model&&this._model.getOption()},n.prototype.getWidth=function(){return this._zr.getWidth()},n.prototype.getHeight=function(){return this._zr.getHeight()},n.prototype.getDevicePixelRatio=function(){return this._zr.painter.dpr||Qp.hasGlobalWindow&&window.devicePixelRatio||1},n.prototype.getRenderedCanvas=function(t){return this.renderToCanvas(t)},n.prototype.renderToCanvas=function(t){return this._zr.painter.getRenderedCanvas({backgroundColor:(t=t||{}).backgroundColor||this._model.get("backgroundColor"),pixelRatio:t.pixelRatio||this.getDevicePixelRatio()})},n.prototype.renderToSVGString=function(t){return this._zr.painter.renderToString({useViewBox:(t=t||{}).useViewBox})},n.prototype.getSvgDataURL=function(){var t=this._zr;return c(t.storage.getDisplayList(),function(t){t.stopAnimation(null,!0)}),t.painter.toDataURL()},n.prototype.getDataURL=function(t){if(!this._disposed){var e=this._model,n=[],i=this;c((t=t||{}).excludeComponents,function(t){e.eachComponent({mainType:t},function(t){var e=i._componentsMap[t.__viewId];e.group.ignore||(n.push(e),e.group.ignore=!0)})});var r="svg"===this._zr.painter.getType()?this.getSvgDataURL():this.renderToCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return c(n,function(t){t.group.ignore=!1}),r}},n.prototype.getConnectedDataURL=function(t){if(!this._disposed){var e="svg"===t.type,n=this.group,r=Math.min,o=Math.max,a=1/0;if(OC[n]){var s=a,l=a,u=-1/0,h=-1/0,d=[],p=t&&t.pixelRatio||this.getDevicePixelRatio();c(LC,function(a,c){if(a.group===n){var p=e?a.getZr().painter.getSvgDom().innerHTML:a.renderToCanvas(i(t)),f=a.getDom().getBoundingClientRect();s=r(f.left,s),l=r(f.top,l),u=o(f.right,u),h=o(f.bottom,h),d.push({dom:p,left:f.left,top:f.top})}});var f=(u*=p)-(s*=p),g=(h*=p)-(l*=p),y=af.createCanvas(),m=tn(y,{renderer:e?"svg":"canvas"});if(m.resize({width:f,height:g}),e){var v="";return c(d,function(t){v+=''+t.dom+""}),m.painter.getSvgRoot().innerHTML=v,t.connectedBackgroundColor&&m.painter.setBackgroundColor(t.connectedBackgroundColor),m.refreshImmediately(),m.painter.toDataURL()}return t.connectedBackgroundColor&&m.add(new yv({shape:{x:0,y:0,width:f,height:g},style:{fill:t.connectedBackgroundColor}})),c(d,function(t){var e=new hv({style:{x:t.left*p-s,y:t.top*p-l,image:t.dom}});m.add(e)}),m.refreshImmediately(),y.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}},n.prototype.convertToPixel=function(t,e,n){return YS(this,"convertToPixel",t,e,n)},n.prototype.convertToLayout=function(t,e,n){return YS(this,"convertToLayout",t,e,n)},n.prototype.convertFromPixel=function(t,e,n){return YS(this,"convertFromPixel",t,e,n)},n.prototype.containPixel=function(t,e){var n;if(!this._disposed)return c(Dn(this._model,t),function(t,i){i.indexOf("Models")>=0&&c(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))}},this)},this),!!n},n.prototype.getVisual=function(t,e){var n=Dn(this._model,t,{defaultMainType:"series"}),i=n.seriesModel.getData(),r=n.hasOwnProperty("dataIndexInside")?n.dataIndexInside:n.hasOwnProperty("dataIndex")?i.indexOfRawIndex(n.dataIndex):null;return null!=r?function(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)}}(i,r,e):function(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)}}(i,e)},n.prototype.getViewOfComponentModel=function(t){return this._componentsMap[t.__viewId]},n.prototype.getViewOfSeriesModel=function(t){return this._chartsMap[t.__viewId]},n.prototype._initEvents=function(){var t=this;c(bC,function(e){var n=function(n){var i,r=t.getModel(),a=n.target;if("globalout"===e?i={}:a&&Os(a,function(t){var e=Mv(t);if(e&&null!=e.dataIndex){var n=e.dataModel||r.getSeriesByIndex(e.seriesIndex);return i=n&&n.getDataParams(e.dataIndex,e.dataType,a)||{},!0}if(e.eventData)return i=o({},e.eventData),!0},!0),i){var s=i.componentType,l=i.componentIndex;"markLine"!==s&&"markPoint"!==s&&"markArea"!==s||(s="series",l=i.seriesIndex);var u=s&&null!=l&&r.getComponent(s,l),c=u&&t["series"===u.mainType?"_chartsMap":"_componentsMap"][u.__viewId];i.event=n,i.type=e,t._$eventProcessor.eventInfo={targetEl:a,packedEvent:i,model:u,view:c},t.trigger(e,i)}};n.zrEventfulCallAtLast=!0,t._zr.on(e,n,t)});var e=this._messageCenter;c(MC,function(n,i){e.on(i,function(e){t.trigger(i,e)})}),function(t,e,n){t.on("selectchanged",function(t){var i=n.getModel();t.isFromClick?(Ls("map","selectchanged",e,i,t),Ls("pie","selectchanged",e,i,t)):"select"===t.fromAction?(Ls("map","selected",e,i,t),Ls("pie","selected",e,i,t)):"unselect"===t.fromAction&&(Ls("map","unselected",e,i,t),Ls("pie","unselected",e,i,t))})}(e,this,this._api)},n.prototype.isDisposed=function(){return this._disposed},n.prototype.clear=function(){this._disposed||this.setOption({series:[]},!0)},n.prototype.dispose=function(){if(this._disposed);else{this._disposed=!0,this.getDom()&&On(this.getDom(),RC,"");var t=this,e=t._api,n=t._model;c(t._componentsViews,function(t){t.dispose(n,e)}),c(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 LC[t.id]}},n.prototype.resize=function(t){if(!this[dC])if(this._disposed);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[fC]&&(null==i&&(i=this[fC].silent),n=!0,this[fC]=null),this[dC]=!0,sC(this);try{n&&GS(this),ZS.update.call(this,{type:"resize",animation:o({duration:0},t&&t.animation)})}catch(t){throw this[dC]=!1,t}this[dC]=!1,$S.call(this,i),KS.call(this,i)}}},n.prototype.showLoading=function(t,e){if(this._disposed);else if(w(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),AC[t]){var n=AC[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},n.prototype.hideLoading=function(){this._disposed||(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},n.prototype.makeActionFromEvent=function(t){var e=o({},t);return e.type=CC[t.type],e},n.prototype.dispatchAction=function(t,e){if(this._disposed);else if(w(e)||(e={silent:!!e}),SC[t.type]&&this._model)if(this[dC])this._pendingActions.push(t);else{var n=e.silent;qS.call(this,t,n);var i=e.flush;i?this._zr.flush():!1!==i&&Qp.browser.weChat&&this._throttledZrFlush(),$S.call(this,n),KS.call(this,n)}},n.prototype.updateLabelLayout=function(){WS.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},n.prototype.appendData=function(t){if(this._disposed);else{var e=t.seriesIndex;this.getModel().getSeriesByIndex(e).appendData(t),this._scheduler.unfinished=!0,this.getZr().wakeUp()}},n.internalField=function(){function e(t){t.clearColorPalette(),t.eachSeries(function(t){t.clearColorPalette()})}function n(t){for(var e=[],n=t.currentStates,i=0;i0?{duration:o,delay:i.get("delay"),easing:i.get("easing")}:null;e.eachRendered(function(t){if(t.states&&t.states.emphasis){if(Da(t))return;if(t instanceof rv&&function(t){var e=kv(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}(t),t.__dirty){var e=t.prevStates;e&&t.useStates(e)}if(r){t.stateTransition=a;var i=t.getTextContent(),o=t.getTextGuideLine();i&&(i.stateTransition=a),o&&(o.stateTransition=a)}t.__dirty&&n(t)}})}GS=function(t){var e=t._scheduler;e.restorePipelines(t._model),e.prepareStageTasks(),US(t,!0),US(t,!1),e.plan()},US=function(t,e){function n(t){var n=t.__requireNewView;t.__requireNewView=!1;var u="_ec_"+t.id+"_"+t.type,c=!n&&a[u];if(!c){var h=Pn(t.type);(c=new(e?ww.getClass(h.main,h.sub):$b.getClass(h.sub))).init(i,l),a[u]=c,o.push(c),s.add(c.group)}t.__viewId=c.__id=u,c.__alive=!0,c.__model=t,c.group.__ecComponentInfo={mainType:t.mainType,index:t.componentIndex},!e&&r.prepareView(c,t,i,l)}for(var i=t._model,r=t._scheduler,o=e?t._componentsViews:t._chartsViews,a=e?t._componentsMap:t._chartsMap,s=t._zr,l=t._api,u=0;ue.get("hoverLayerThreshold")&&!Qp.node&&!Qp.worker&&e.eachSeries(function(e){if(!e.preventUsingHoverLayer){var n=t._chartsMap[e.__viewId];n.__alive&&n.eachRendered(function(t){t.states.emphasis&&(t.states.emphasis.hoverLayer=!0)})}})}(t,e),WS.trigger("series:afterupdate",e,n,l)},oC=function(t){t[gC]=!0,t.getZr().wakeUp()},sC=function(t){t[pC]=(t[pC]+1)%1e3},aC=function(t){t[gC]&&(t.getZr().storage.traverse(function(t){Da(t)||n(t)}),t[gC]=!1)},iC=function(e){return new(function(n){function i(){return null!==n&&n.apply(this,arguments)||this}return t(i,n),i.prototype.getCoordinateSystems=function(){return e._coordSysMgr.getCoordinateSystems()},i.prototype.getComponentByElement=function(t){for(;t;){var n=t.__ecComponentInfo;if(null!=n)return e._model.getComponent(n.mainType,n.index);t=t.parent}},i.prototype.enterEmphasis=function(t,n){Gi(t,n),oC(e)},i.prototype.leaveEmphasis=function(t,n){Ui(t,n),oC(e)},i.prototype.enterBlur=function(t){!function(t){Bi(t,Pi)}(t),oC(e)},i.prototype.leaveBlur=function(t){ji(t),oC(e)},i.prototype.enterSelect=function(t){Zi(t),oC(e)},i.prototype.leaveSelect=function(t){Yi(t),oC(e)},i.prototype.getModel=function(){return e.getModel()},i.prototype.getViewOfComponentModel=function(t){return e.getViewOfComponentModel(t)},i.prototype.getViewOfSeriesModel=function(t){return e.getViewOfSeriesModel(t)},i.prototype.getMainProcessVersion=function(){return e[pC]},i}(Cx))(e)},rC=function(t){function e(t,e){for(var n=0;n0?t[n-1].seriesModel:null)}),function(t){c(t,function(e,n){var i=[],r=[NaN,NaN],o=[e.stackResultDimension,e.stackedOverDimension],a=e.data,s=e.isStackedByIndex,l=e.seriesModel.get("stackStrategy")||"samesign";a.modify(o,function(o,u,c){var h,d,p=a.get(e.stackedDimension,c);if(isNaN(p))return r;s?d=a.getRawIndex(c):h=a.get(e.stackedByDimension,c);for(var f=NaN,g=n-1;g>=0;g--){var y=t[g];if(s||(d=y.data.rawIndexOf(y.stackedByDimension,h)),d>=0){var m=y.data.getByRawIndex(y.stackResultDimension,d);if("all"===l||"positive"===l&&m>0||"negative"===l&&m<0||"samesign"===l&&p>=0&&m>0||"samesign"===l&&p<=0&&m<0){p=sn(p,m),f=m;break}}}return i[0]=p,i[1]=f,i})})}(t))})}),ml("default",function(t,e){a(e=e||{},{text:"loading",textColor:X_.color.primary,fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255,255,255,0.8)",showSpinner:!0,color:X_.color.theme[0],spinnerRadius:10,lineWidth:5,zlevel:0});var n=new Ny,i=new yv({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});n.add(i);var r,o=new Cv({style:{text:e.text,fill:e.textColor,fontSize:e.fontSize,fontWeight:e.fontWeight,fontStyle:e.fontStyle,fontFamily:e.fontFamily},zlevel:e.zlevel,z:10001}),s=new yv({style:{fill:"none"},textContent:o,textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});return n.add(s),e.showSpinner&&((r=new vb({shape:{startAngle:-lS/2,endAngle:-lS/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*lS/2}).start("circularInOut"),r.animateShape(!0).when(1e3,{startAngle:3*lS/2}).delay(300).start("circularInOut"),n.add(r)),n.resize=function(){var n=o.getBoundingRect().width,a=e.showSpinner?e.spinnerRadius:0,l=(t.getWidth()-2*a-(e.showSpinner&&n?10:0)-n)/2-(e.showSpinner&&n?0:5+n/2)+(e.showSpinner?0:n/2)+(n?0:a),u=t.getHeight()/2;e.showSpinner&&r.setShape({cx:l,cy:u}),s.setShape({x:l-a,y:u-a,width:2*a,height:2*a}),i.setShape({x:0,y:0,width:t.getWidth(),height:t.getHeight()})},n.resize(),n}),pl({type:Ov,event:Ov,update:Ov},H),pl({type:Pv,event:Pv,update:Pv},H),pl({type:Rv,event:Ev,update:Rv,action:H,refineEvent:vl,publishNonRefinedEvent:!0}),pl({type:Nv,event:Ev,update:Nv,action:H,refineEvent:vl,publishNonRefinedEvent:!0}),pl({type:zv,event:Ev,update:zv,action:H,refineEvent:vl,publishNonRefinedEvent:!0}),ul("default",{}),ul("dark",_S);const EC={...{metadata:!0,svgRender:!1,switchMode:!1,maxPointsFetched:1e4,loadMoreAtZoomLevel:9,clustering:!1,clusteringThreshold:100,disableClusteringAtLevel:8,clusterRadius:80,clusterSeparation:20,showMetaOnNarrowScreens:!1,showMapLabelsAtZoom:13,showGraphLabelsAtZoom:null,echartsOption:{aria:{show:!0,description:"This is a force-oriented graph chart that depicts the relationship between ip nodes."},toolbox:{show:!0,iconStyle:{borderColor:"#fff"},feature:{restore:{show:!0,title:"Restore view"},saveAsImage:{show:!0,title:"Save image"}}}},graphConfig:{series:{layout:"force",label:{show:!0,color:"#fff",position:"top"},labelLayout:{hideOverlap:!0},force:{gravity:.1,edgeLength:[20,60],repulsion:120},roam:!0,draggable:!0,legendHoverLink:!0,emphasis:{focus:"none",lineStyle:{color:"#3acc38",opacity:1}},nodeStyle:{color:"#ffebc4"},linkStyle:{width:6,color:"#1ba619"},nodeSize:"15"},baseOptions:{backgroundColor:"#282222",media:[{query:{minWidth:320,maxWidth:500},option:{series:[{zoom:.7}],toolbox:{itemSize:18}}},{query:{minWidth:501},option:{series:[{zoom:1}],toolbox:{itemSize:15}}},{query:{minWidth:320,maxWidth:850},option:{tooltip:{show:!1}}},{query:{minWidth:851},option:{tooltip:{show:!0}}}]}},mapOptions:{roam:!0,zoomAnimation:!1,worldCopyJump:!0,minZoom:3,maxZoom:18,nodeConfig:{type:"scatter",label:{show:!1,color:"#000000",position:"top",formatter:"{b}",fontSize:13,backgroundColor:"rgba(255, 255, 255, 0.8)",padding:[6,8],borderRadius:5},emphasis:{scale:1},nodeStyle:{color:"#1566a9"},nodeSize:"17"},linkConfig:{linkStyle:{width:5,color:"#1ba619"},emphasis:{focus:"none",lineStyle:{color:"#3acc38",opacity:1}}},clusterConfig:{symbolSize:30,itemStyle:{color:"#1566a9"},tooltip:{show:!1},label:{show:!0,position:"inside",color:"#fff",offset:[0,0],backgroundColor:"transparent"}},baseOptions:{toolbox:{show:!1},media:[{query:{minWidth:320,maxWidth:850},option:{tooltip:{show:!1}}},{query:{minWidth:851},option:{tooltip:{show:!0}}}]}},mapTileConfig:[{urlTemplate:"MISSING_ENV_VAR".MAPBOX_URL_TEMPLATE||"http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png",options:{attribution:'© OpenStreetMap contributors,\n tiles offered by Mapbox'}}],geoOptions:{style:{fillColor:"#1566a9",weight:0,fillOpacity:.8,radius:8}},nodeCategories:[{name:"ok",nodeStyle:{color:"#1ba619"}},{name:"problem",nodeStyle:{color:"#ffa500"}},{name:"critical",nodeStyle:{color:"#c92517"}}],linkCategories:[],bookmarkableActions:{enabled:!1,id:null,zoomOnRestore:!0,zoomLevel:null},prepareData(t){t&&t.nodes&&t.nodes.forEach(t=>{if(t.properties&&t.properties.status){const e=t.properties.status.toLowerCase();"ok"!==e&&"problem"!==e&&"critical"!==e||(t.category=e)}})},onClickElement(t,e){let n;this.utils&&this.utils.isNetJSON(this.data)?(n="node"===t?this.utils.nodeInfo(e):"link"===t?this.utils.linkInfo(e):e,(this.config.showMetaOnNarrowScreens||this.el.clientWidth>850)&&(this.gui.metaInfoContainer.style.display="flex")):({nodeLinkData:n}={nodeLinkData:e}),this.gui.getNodeLinkInfo(t,n),this.gui.sideBar.classList.remove("hidden")},onReady(){}}};Object.defineProperty(EC,"crs",{get(){const t=_l(!0);return t?t.CRS.EPSG3857:null},enumerable:!0,configurable:!0});const BC=EC,VC=[Int8Array,Uint8Array,Uint8ClampedArray,Int16Array,Uint16Array,Int32Array,Uint32Array,Float32Array,Float64Array];class FC{static from(t){if(!(t instanceof ArrayBuffer))throw new Error("Data must be an instance of ArrayBuffer.");const[e,n]=new Uint8Array(t,0,2);if(219!==e)throw new Error("Data does not appear to be in a KDBush format.");const i=n>>4;if(1!==i)throw new Error(`Got v${i} data when expected v1.`);const r=VC[15&n];if(!r)throw new Error("Unrecognized array type.");const[o]=new Uint16Array(t,2,1),[a]=new Uint32Array(t,4,1);return new FC(a,o,r,t)}constructor(t,e=64,n=Float64Array,i){if(isNaN(t)||t<0)throw new Error(`Unpexpected numItems value: ${t}.`);this.numItems=+t,this.nodeSize=Math.min(Math.max(+e,2),65535),this.ArrayType=n,this.IndexArrayType=t<65536?Uint16Array:Uint32Array;const r=VC.indexOf(this.ArrayType),o=2*t*this.ArrayType.BYTES_PER_ELEMENT,a=t*this.IndexArrayType.BYTES_PER_ELEMENT,s=(8-a%8)%8;if(r<0)throw new Error(`Unexpected typed array class: ${n}.`);i&&i instanceof ArrayBuffer?(this.data=i,this.ids=new this.IndexArrayType(this.data,8,t),this.coords=new this.ArrayType(this.data,8+a+s,2*t),this._pos=2*t,this._finished=!0):(this.data=new ArrayBuffer(8+o+a+s),this.ids=new this.IndexArrayType(this.data,8,t),this.coords=new this.ArrayType(this.data,8+a+s,2*t),this._pos=0,this._finished=!1,new Uint8Array(this.data,0,2).set([219,16+r]),new Uint16Array(this.data,2,1)[0]=e,new Uint32Array(this.data,4,1)[0]=t)}add(t,e){const n=this._pos>>1;return this.ids[n]=n,this.coords[this._pos++]=t,this.coords[this._pos++]=e,n}finish(){const t=this._pos>>1;if(t!==this.numItems)throw new Error(`Added ${t} items when expected ${this.numItems}.`);return xl(this.ids,this.coords,this.nodeSize,0,this.numItems-1,0),this._finished=!0,this}range(t,e,n,i){if(!this._finished)throw new Error("Data not yet indexed - call index.finish().");const{ids:r,coords:o,nodeSize:a}=this,s=[0,r.length-1,0],l=[];for(;s.length;){const u=s.pop()||0,c=s.pop()||0,h=s.pop()||0;if(c-h<=a){for(let a=h;a<=c;a++){const s=o[2*a],u=o[2*a+1];s>=t&&s<=n&&u>=e&&u<=i&&l.push(r[a])}continue}const d=h+c>>1,p=o[2*d],f=o[2*d+1];p>=t&&p<=n&&f>=e&&f<=i&&l.push(r[d]),(0===u?t<=p:e<=f)&&(s.push(h),s.push(d-1),s.push(1-u)),(0===u?n>=p:i>=f)&&(s.push(d+1),s.push(c),s.push(1-u))}return l}within(t,e,n){if(!this._finished)throw new Error("Data not yet indexed - call index.finish().");const{ids:i,coords:r,nodeSize:o}=this,a=[0,i.length-1,0],s=[],l=n*n;for(;a.length;){const u=a.pop()||0,c=a.pop()||0,h=a.pop()||0;if(c-h<=o){for(let n=h;n<=c;n++)Cl(r[2*n],r[2*n+1],t,e)<=l&&s.push(i[n]);continue}const d=h+c>>1,p=r[2*d],f=r[2*d+1];Cl(p,f,t,e)<=l&&s.push(i[d]),(0===u?t-n<=p:e-n<=f)&&(a.push(h),a.push(d-1),a.push(1-u)),(0===u?t+n>=p:e+n>=f)&&(a.push(d+1),a.push(c),a.push(1-u))}return s}}const HC=class{JSONParamParse(t){return"string"==typeof t?fetch(t,{method:"GET",headers:{"Content-Type":"application/json",Accept:"application/json"},credentials:"include"}).then(t=>t).catch(t=>{console.error(t)}):Promise.resolve(t)}async paginatedDataParse(t){let e,n;try{let i=await this.utils.JSONParamParse(t);if(i.json)for(e=await i.json(),n=e.results?e.results:e;e.next&&n.nodes.length<=this.config.maxPointsFetched;)i=await this.utils.JSONParamParse(e.next),e=await i.json(),n.nodes=n.nodes.concat(e.results.nodes),n.links=n.links.concat(e.results.links),this.hasMoreData=!!e.next;else n=i}catch(t){console.error(t)}return n}async getBBoxData(t,e){let n;try{const i=`${t=t[0].split("?")[0]}bbox?swLat=${e._southWest.lat}&swLng=${e._southWest.lng}&neLat=${e._northEast.lat}&neLng=${e._northEast.lng}`,r=await this.utils.JSONParamParse(i);n=await r.json()}catch(t){console.error(t)}return n}dateParse({dateString:t,parseRegular:e=/^([1-9]\d{3})-(\d{1,2})-(\d{1,2})T(\d{1,2}):(\d{1,2}):(\d{1,2})(?:\.(\d{1,3}))?Z$/,hourDiffer:n=(new Date).getTimezoneOffset()/60}){const i=e.exec(t);if(!i||i.length<7)return console.error("Date doesn't meet the specifications."),"";const r=["dateYear","dateMonth","dateDay","dateHour"],o={},a=new Map([["dateMonth",12],["dateDay",[31,i[1]%4==0&&i[1]%100!=0||i[1]%400==0?29:28,31,30,31,30,31,31,30,31,30,31]],["dateHour",24]]);for(let t=r.length;t>0;t-=1)o[r[t-1]]=parseInt(i[t],10);let s,l=-n;for(let t=r.length;t>0;t-=1){if("dateYear"===r[t-1]){o[r[t-1]]+=l;break}s="dateDay"===r[t-1]?a.get("dateDay")[o.dateMonth-1]:a.get(r[t-1]);let e=o[r[t-1]]+l;l="dateHour"===r[t-1]?e<0?-1:e>=s?1:0:e<=0?-1:e>s?1:0,1===l?e-=s:l<0&&("dateDay"===r[t-1]&&(s=a.get("dateDay")[(o[r[t-1]]+10)%11]),e+=s),o[r[t-1]]=e}return`${o.dateYear}.${this.numberMinDigit(o.dateMonth)}.${this.numberMinDigit(o.dateDay)} ${this.numberMinDigit(o.dateHour)}:${this.numberMinDigit(i[5])}:${this.numberMinDigit(i[6])}${i[7]?`.${this.numberMinDigit(i[7],3)}`:""}`}numberMinDigit(t,e=2,n="0"){return(Array(e).join(n)+t).slice(-e)}isObject(t){return"Object"===Object.prototype.toString.call(t).slice(8,14)}isArray(t){return"Array"===Object.prototype.toString.call(t).slice(8,13)}isElement(t){return"object"==typeof HTMLElement?t instanceof HTMLElement:t&&"object"==typeof t&&null!==t&&1===t.nodeType&&"string"==typeof t.nodeName}isNetJSON(t){return!(!t.nodes||!t.links)&&this.isObject(t)&&this.isArray(t.nodes)&&this.isArray(t.links)}isGeoJSON(t){return t.type&&"FeatureCollection"===t.type?this.isObject(t)&&this.isArray(t.features):!(!t.type||"Feature"!==t.type)&&this.isObject(t)&&this.isArray(t.geometry)}geojsonToNetjson(t){return function(t){const e=[],n=[];if(!t||!Array.isArray(t.features))return{nodes:e,links:n};const i=new Map,r=(t,n={})=>{const r=`${t[0]},${t[1]}`;if(i.has(r))return i.get(r);const o=n.id||n.node_id||null,a=n.label||n.name||o||null,s=o?String(o):`gjn_${e.length}`,l=!o,u={id:s,...a?{label:String(a)}:{},location:{lng:t[0],lat:t[1]},properties:{...n,location:{lng:t[0],lat:t[1]}},_generatedIdentity:l};return e.push(u),i.set(r,s),s},o=(t,e,i={})=>{n.push({source:t,target:e,properties:i})},a=(t,e,n=!1)=>{for(let n=0;n2){const n=r(t[0],e),i=r(t[t.length-1],e);o(i,n,e)}},s=(t,e)=>{if(!t)return;const{type:n,coordinates:i,geometries:o}=t;switch(n){case"Point":r(i,{...e,_featureType:"Point"});break;case"MultiPoint":i.forEach(t=>r(t,{...e,_featureType:"Point"}));break;case"LineString":a(i,{...e,_featureType:"LineString"},!1);break;case"MultiLineString":i.forEach(t=>a(t,{...e,_featureType:"LineString"},!1));break;case"Polygon":case"MultiPolygon":break;case"GeometryCollection":o.forEach(t=>s(t,e));break;default:console.warn(`Unsupported GeoJSON geometry type: ${n}`)}};return t.features.forEach(t=>{const e={...t.properties||{},...null!=t.id?{id:t.id}:{}};s(t.geometry,e)}),{nodes:e,links:n}}(t)}deepCopy(t){if(null===t||"object"!=typeof t)return t;if(Array.isArray(t))return t.map(t=>this.deepCopy(t));const e={};return Object.keys(t).forEach(n=>{e[n]=this.deepCopy(t[n])}),e}fastDeepCopy(t){return"function"==typeof structuredClone?structuredClone(t):JSON.parse(JSON.stringify(t))}deepMergeObj(...t){const e=[...t].reverse(),n=e.length;for(let t=0;t{i[t]&&this.isObject(i[t])&&this.isObject(n[t])?this.deepMergeObj(i[t],n[t]):i[t]=n[t]}):i||(e[t+1]=n)}return e[n-1]}makeCluster(t){const{nodes:e,links:n}=t.data,i=t=>!(t.properties&&t.properties._featureType)||"Point"===t.properties._featureType,r=e.filter(i),o=e.filter(t=>!i(t)),a=[],s=[],l=new Map;o.forEach(t=>l.set(t.id,null));let u=0;r.forEach(e=>{const n=e.properties&&e.properties.location||e.location;if(!n||void 0===n.lat||void 0===n.lng)return;e.location=n,e._origLocation?(n.lat=e._origLocation.lat,n.lng=e._origLocation.lng):e._origLocation={lat:n.lat,lng:n.lng};const i=t.leaflet.latLngToContainerPoint([n.lat,n.lng]);e.x=i.x,e.y=i.y,e.visited=!1,e.cluster=null});const c=new FC(r.length);r.forEach(({x:t,y:e})=>c.add(t,e)),c.finish();const h=t.config&&t.config.mapOptions&&t.config.mapOptions.clusterConfig&&t.config.mapOptions.clusterConfig.symbolSize,d=t=>{if("function"==typeof h)try{return h(t)}catch(t){return 30}return Array.isArray(h)?h[0]||30:"number"==typeof h?h:30},p=new Map;r.forEach(e=>{if(e.visited)return;const n=c.within(e.x,e.y,t.config.clusterRadius).map(t=>r[t]);if(n.length>1){const i=`${Math.round(e.x)},${Math.round(e.y)}`;p.has(i)||p.set(i,new Map);const r=p.get(i);n.forEach(e=>{if(e.visited)return;const n=t.config.clusteringAttribute?e.properties[t.config.clusteringAttribute]:"default";r.has(n)||r.set(n,[]),r.get(n).push(e),e.visited=!0})}else e.visited=!0,l.set(e.id,null),o.push(e)}),p.forEach(e=>{const n=Array.from(e.entries()),i=n.length;let r=0;n.forEach(([,t])=>{const e=d(t.length);e>r&&(r=e)});const a="number"==typeof t.config.clusterSeparation?t.config.clusterSeparation:Math.max(10,Math.floor(t.config.clusterRadius/2));let c=0;if(i>1){const t=Math.PI/i,e=Math.sin(t);e>0&&(c=r/(2*e))}const h=Math.max(a,c+4);n.forEach(([,e],n)=>{if(e.length>1){let r=0,o=0;if(e.forEach(t=>{t.cluster=u,l.set(t.id,t.cluster),r+=t.location.lng,o+=t.location.lat}),r/=e.length,o/=e.length,i>1){const e=2*Math.PI*n/i,a=t.leaflet.latLngToContainerPoint([o,r]),s=[a.x+h*Math.cos(e),a.y+h*Math.sin(e)],l=t.leaflet.containerPointToLatLng(s);r=l.lng,o=l.lat}const a={id:u,cluster:!0,name:e.length,value:[r,o],childNodes:e,...t.config.mapOptions.clusterConfig};if(t.config.clusteringAttribute){const n=t.config.nodeCategories.find(n=>n.name===e[0].properties[t.config.clusteringAttribute]);n&&(a.itemStyle={...a.itemStyle,color:n.nodeStyle.color})}s.push(a),u+=1}else if(1===e.length){const t=e[0];l.set(t.id,null),o.push(t)}})}),n.forEach(t=>{null===l.get(t.source)&&null===l.get(t.target)&&a.push(t)});const f=[...s.map(t=>({ref:t,isCluster:!0,count:t.childNodes.length,get value(){return t.value},set value([e,n]){t.value=[e,n]}})),...o.filter(i).map(t=>({ref:t,isCluster:!1,count:1,get value(){return[t.location.lng,t.location.lat]},set value([e,n]){t.location.lng=e,t.location.lat=n}}))];if(f.length>1){const e=f.map(e=>{const[n,i]=e.value,r=t.leaflet.latLngToContainerPoint([i,n]);return{ref:e.ref,isCluster:e.isCluster,x:r.x,y:r.y,r:d(e.count)/2,setValue:([t,n])=>{e.value=[t,n]}}}),n=4,i=5;for(let t=0;t0&&s{const n=t.leaflet.containerPointToLatLng([e.x,e.y]);e.isCluster?e.ref.value=[n.lng,n.lat]:(e.ref.location.lng=n.lng,e.ref.location.lat=n.lat)})}return{clusters:s,nonClusterNodes:o,nonClusterLinks:a}}updateMetadata(){if(this.config.metadata){const t=this.utils.getMetadata(this.data),e=document.querySelector(".njg-metaData"),n=document.querySelectorAll(".njg-metaDataItems");for(let t=0;t{const i=document.createElement("div");i.classList.add("njg-metaDataItems");const r=document.createElement("span");r.setAttribute("class","njg-keyLabel");const o=document.createElement("span");o.setAttribute("class","njg-valueLabel"),r.innerHTML=n,o.innerHTML=t[n],i.appendChild(r),i.appendChild(o),e.appendChild(i)})}}getMetadata(t){const e=t,n={};return e.label&&(n.label=e.label),["protocol","version","revision","metric","router_id","topology_id"].forEach(t=>{e[t]&&(n[t]=e[t])}),n.nodes=e.nodes.length,n.links=e.links.length,n}nodeInfo(t){const e={};!t._generatedIdentity&&(e.id=t.id,t.label&&"string"==typeof t.label&&(e.label=t.label)),t.name&&(e.name=t.name),t.location&&(e.location=t.location);let n=null;Array.isArray(t.clients)?n=t.clients:t.properties&&Array.isArray(t.properties.clients)&&(n=t.properties.clients);let i=0;n?i=n.length:"number"==typeof t.clients?i=t.clients:t.properties&&"number"==typeof t.properties.clients&&(i=t.properties.clients),i>0&&(e.clients=i),n&&n.length&&n.forEach((t,n)=>{e[`clients [${n+1}]`]=t});const r=(t,e)=>"location"===t&&e&&"object"==typeof e?{lat:e.lat,lng:e.lng}:"time"===t&&"string"==typeof e?this.dateParse({dateString:e}):e,o=t._source&&this.isObject(t._source)?t._source:t;if(Object.keys(o).forEach(t=>{if("properties"===t||"clients"===t||"_source"===t||"_generatedIdentity"===t||"local_addresses"===t||"linkCount"===t)return;const n=r(t,o[t]);null!=n&&""!==n&&(e[t]=n)}),o.properties&&this.isObject(o.properties)&&Object.keys(o.properties).forEach(t=>{if("clients"===t)return;const n=r(t,o.properties[t]);null==n||"string"==typeof n&&""===n.trim()||(e[t]=n)}),t.linkCount&&(e.links=t.linkCount),Array.isArray(o.local_addresses)){const t=o.local_addresses.map(t=>"string"==typeof t?t:t&&"string"==typeof t.address?t.address:null).filter(t=>t);t.length&&(e.localAddresses=t)}return t.local_addresses&&(e.localAddresses=t.local_addresses),e}createTooltipItem(t,e){const n=document.createElement("div");n.classList.add("njg-tooltip-item");const i=document.createElement("span");i.setAttribute("class","njg-tooltip-key");const r=document.createElement("span");return r.setAttribute("class","njg-tooltip-value"),i.innerHTML=t,r.innerHTML=e,n.appendChild(i),n.appendChild(r),n}getNodeTooltipInfo(t){const e=document.createElement("div");e.classList.add("njg-tooltip-inner");const n=!t._generatedIdentity;return n&&t.id&&e.appendChild(this.createTooltipItem("id",t.id)),n&&t.label&&"string"==typeof t.label&&e.appendChild(this.createTooltipItem("label",t.label)),t.properties&&Object.keys(t.properties).forEach(i=>{if("object"!=typeof t.properties[i]&&!i.startsWith("_")&&("id"!==i&&"label"!==i||!n))if("location"===i)e.appendChild(this.createTooltipItem("location",`${Math.round(1e3*t.properties.location.lat)/1e3}, ${Math.round(1e3*t.properties.location.lng)/1e3}`));else if("time"===i){const n=this.dateParse({dateString:t.properties[i]});e.appendChild(this.createTooltipItem("time",n))}else e.appendChild(this.createTooltipItem(`${i.replace(/_/g," ")}`,t.properties[i]))}),t.linkCount&&e.appendChild(this.createTooltipItem("Links",t.linkCount)),t.local_addresses&&e.appendChild(this.createTooltipItem("Local Addresses",t.local_addresses.join("
"))),e}getLinkTooltipInfo(t){const e=document.createElement("div");e.classList.add("njg-tooltip-inner");const n=t=>"string"==typeof t&&t.startsWith("gjn_");return n(t.source)||e.appendChild(this.createTooltipItem("source",t.source)),n(t.target)||e.appendChild(this.createTooltipItem("target",t.target)),null!=t.cost&&e.appendChild(this.createTooltipItem("cost",t.cost)),t.properties&&Object.keys(t.properties).forEach(n=>{const i=t.properties[n];if(null!=i)if("time"===n){const t=this.dateParse({dateString:i});e.appendChild(this.createTooltipItem("time",t))}else{const t="string"==typeof i?i.replace(/\n/g,"
"):i;e.appendChild(this.createTooltipItem(`${n.replace(/_/g," ")}`,t))}}),e}linkInfo(t){const e={},n=t=>"string"==typeof t&&t.startsWith("gjn_");return n(t.source)||(e.source=t.source),n(t.target)||(e.target=t.target),null!=t.cost&&(e.cost=t.cost),t.properties&&Object.keys(t.properties).forEach(n=>{const i=t.properties[n];if(null!=i)if("time"===n){const t=this.dateParse({dateString:i});e[n]=t}else{const t="string"==typeof i?i.replace(/\n/g,"
"):i;e[n.replace(/_/g," ")]=t}}),e}generateStyle(t,e){return"function"==typeof t?t(e):t}getNodeStyle(t,e,n){let i,r={},o={},a=!1;if(t.category&&e.nodeCategories&&e.nodeCategories.length){const n=e.nodeCategories.find(e=>e.name===t.category);if(n){a=!0,i=this.generateStyle(n.nodeStyle||{},t),r=this.generateStyle(n.nodeSize||{},t);let e={},s={};n.emphasis&&(e=this.generateStyle(n.emphasis.nodeStyle||{},t),s=this.generateStyle(n.emphasis.nodeSize||{},t),o={nodeStyle:e,nodeSize:s})}}if(!a)if("map"===n){const n=e.mapOptions&&e.mapOptions.nodeConfig;i=this.generateStyle(n&&n.nodeStyle||{},t),r=this.generateStyle(n&&n.nodeSize||{},t);const a=n&&n.emphasis;a&&(o={nodeStyle:this.generateStyle(a&&a.nodeStyle||{},t),nodeSize:this.generateStyle(a&&a.nodeSize||{},t)})}else{const n=e.graphConfig&&e.graphConfig.series;i=this.generateStyle(n&&n.nodeStyle||{},t),r=this.generateStyle(n&&n.nodeSize||{},t);const a=n&&n.emphasis;a&&(o={nodeStyle:this.generateStyle(a&&a.itemStyle||{},t),nodeSize:this.generateStyle(a&&a.symbolSize||r||{},t)})}return{nodeStyleConfig:i,nodeSizeConfig:r,nodeEmphasisConfig:o}}getLinkStyle(t,e,n){let i,r={};if(t.category&&e.linkCategories.length){const n=e.linkCategories.find(e=>e.name===t.category);i=this.generateStyle(n.linkStyle||{},t),r={...r,linkStyle:n.emphasis?this.generateStyle(n.emphasis.linkStyle||{},t):{}}}else i=this.generateStyle("map"===n?e.mapOptions.linkConfig.linkStyle:e.graphConfig.series.linkStyle,t);return{linkStyleConfig:i,linkEmphasisConfig:r}}showLoading(){let t=this.el.querySelector(".njg-loadingContainer");return t?t.style.visibility="visible":(t=document.createElement("div"),t.classList.add("njg-loadingContainer"),t.innerHTML='\n
\n
\n

Loading...

\n
\n ',this.el.appendChild(t)),t}hideLoading(){const t=this.el.querySelector(".njg-loadingContainer");return t&&(t.style.visibility="hidden"),t}createEvent(){const t=new Map,e=new Map;return{on(e,...n){t.set(e,[...t.get(e)||[],...n])},once(t,...n){e.set(t,[...e.get(t)||[],...n])},emit(n){const i=t.get(n)||[],r=e.get(n)||[],o=i.map(t=>t()),a=r.map(t=>t());return e.delete(n),[...o,...a]},delete(n){t.delete(n),e.delete(n)}}}parseUrlFragments(){let t;try{t=decodeURIComponent(window.location.hash.replace(/^#/,""))}catch(e){t=window.location.hash.replace(/^#/,"")}const e={};return t.split(";").forEach(t=>{const n=new URLSearchParams(t),i=n.get("id");null!=i&&(e[i]=n)}),e}updateUrlFragments(t,e){const n=Object.values(t).map(t=>t.toString()).join(";").replace(/([^&=]+)=([^&;]*)/g,(t,e,n)=>`${e}=${encodeURIComponent(n.replace(/%7E/gi,"~"))}`);window.history.pushState(e,"",`#${n}`)}addActionToUrl(t,e){if(!t.config.bookmarkableActions.enabled||!e.data||e.data.cluster)return;if(!t.nodeLinkIndex)return void console.error("Lookup object for node or link not found.");const n=this.parseUrlFragments(),{id:i}=t.config.bookmarkableActions;let r;if(t.config.render===t.utils.graphRender){if("node"===e.dataType)r=e.data.id;else if("edge"===e.dataType){const{source:t,target:n}=e.data;r=`${t}~${n}`}}else if(t.config.render===t.utils.mapRender)if("scatter"===e.seriesType)r=e.data.node.id;else if("lines"===e.seriesType){const{source:t,target:n}=e.data.link;r=`${t}~${n}`}r&&t.nodeLinkIndex[r]?(n[i]||(n[i]=new URLSearchParams,n[i].set("id",i)),n[i].set("nodeId",r),this.updateUrlFragments(n,t.nodeLinkIndex[r])):console.error("nodeId not found in nodeLinkIndex lookup.")}removeUrlFragment(t){const e=this.parseUrlFragments();e[t]&&delete e[t],this.updateUrlFragments(e,{id:t})}applyUrlFragmentState(t){if(!t.config.bookmarkableActions.enabled)return;const{id:e}=t.config.bookmarkableActions,n=t.utils.parseUrlFragments(),i=n[e]&&n[e].get?n[e]:null,r=i&&i.get?i.get("nodeId"):void 0;if(!r||!t.nodeLinkIndex||null==t.nodeLinkIndex[r])return;const[o,a]=r.split("~"),s=t.nodeLinkIndex[r],l=t.config.graphConfig&&t.config.graphConfig.series&&t.config.graphConfig.series.type||t.config.mapOptions&&t.config.mapOptions.nodeConfig&&t.config.mapOptions.nodeConfig.type,{location:u,cluster:c}=s||{};t.config.bookmarkableActions.zoomOnRestore&&["scatter","effectScatter"].includes(l)&&null==a&&null!=u&&t.leaflet&&t.leaflet.setView([u.lat,u.lng],null!=c?t.config.disableClusteringAtLevel:t.config.bookmarkableActions.zoomLevel||t.config.showMapLabelsAtZoom),"function"==typeof t.config.onClickElement&&t.config.onClickElement.call(t,o&&a?"link":"node",s)}setupHashChangeHandler(t){return t._popstateHandler&&window.removeEventListener("popstate",t._popstateHandler),t._popstateHandler=()=>{this.applyUrlFragmentState(t)},window.addEventListener("popstate",t._popstateHandler),()=>{window.removeEventListener("popstate",t._popstateHandler),t._popstateHandler=null}}moveNodeInRealTime(t,e){if(!this.echarts||"function"!=typeof this.echarts.getOption)return void console.warn("moveNodeInRealTime: ECharts instance not ready");const n=this.echarts.getOption();if(!n||!Array.isArray(n.series))return void console.warn("moveNodeInRealTime: No series data available");const i=n.series.find(t=>"scatter"===t.type||"effectScatter"===t.type);if(!i)return void console.warn("moveNodeInRealTime: No scatter series found");const r=i.data.findIndex(e=>e.node.id===t);if(-1===r)return void console.warn(`moveNodeInRealTime: Node with id "${t}" not found`);const o=i.data[r],{node:a}=o;a.location=e,a.properties?(a.properties.location=e,o.value=[e.lng,e.lat],this.nodeLinkIndex[t].location=e,this.nodeLinkIndex[t].properties&&(this.nodeLinkIndex[t].properties.location=e,this.echarts.setOption({series:n.series}))):console.warn("moveNodeInRealTime: Node properties not found")}},WC=class extends HC{searchElements(t){const e=this,n={"":{data:{...e.data},param:[...e.JSONParam]}};return window.history.pushState({searchValue:""},""),window.onpopstate=i=>{n[i.state.searchValue]?e.utils.JSONDataUpdate.call(e,n[i.state.searchValue].data).then(()=>{e.JSONParam=n[i.state.searchValue].param}):e.utils.JSONDataUpdate.call(e,t+i.state.searchValue)},function(i,r=!0,o=!0){const a=i.trim();if(!window.history.state||window.history.state&&window.history.state.searchValue!==a)return window.history.pushState({searchValue:a},""),e.utils.JSONDataUpdate.call(e,t+a,r,o).then(()=>{n[a]={data:{...e.data},param:[...e.JSONParam]}})}}JSONDataUpdate(t,e=!0,n=!0){const i=this;return i.config.onUpdate.call(i),i.utils.paginatedDataParse.call(i,t).then(r=>{function o(){e?(i.JSONParam=[t],i.utils.overrideData(r,i)):(i.JSONParam.push(t),i.config.render===i.utils.mapRender?i.utils.appendData(r,i):i.utils.addData(r,i)),i.utils.isNetJSON(i.data)&&i.utils.updateMetadata.call(i)}return n?(i.utils.isNetJSON(i.data)&&i.config.prepareData.call(i,r),i.config.dealDataByWorker?i.utils.dealDataByWorker.call(i,r,i.config.dealDataByWorker,o):o()):o(),r}).catch(t=>{console.error(t)})}dealDataByWorker(t,e,n){const i=new Worker(e),r=this;i.postMessage(t),i.addEventListener("error",t=>{console.error(t),console.error("Error in dealing JSONData!")}),i.addEventListener("message",t=>{n?n():(r.utils.overrideData(t.data,r),r.utils.isNetJSON(r.data)&&r.utils.updateMetadata.call(r))})}overrideData(t,e){e.data=t,e.utils.isNetJSON(e.data)||e.leaflet.geoJSON.removeFrom(e.leaflet),e.utils.render(),e.config.afterUpdate.call(e)}},GC=class{constructor(t){this.utils=new WC,this.config=this.utils.deepCopy(BC),this.config.crs=BC.crs,this.JSONParam=this.utils.isArray(t)?t:[t]}setConfig(t){if(this.utils.deepMergeObj(this.config,t),this.el)t&&t.el&&console.error("Can't change el again!");else if(this.el=this.config.el?this.utils.isElement(this.config.el)?this.config.el:document.querySelector(this.config.el):document.body,this.el){if(this.el.classList.add("njg-container"),this.el===document.body){const t=document.documentElement;t.style.width="100%",t.style.height="100%",this.el.classList.add("njg-relativePosition")}}else console.error("NetJSONGraph: The specified element for rendering was not found and could not be set.");return this.config}render(){const[t,...e]=this.JSONParam;this.config.onRender.call(this);const n=new Promise(t=>{this.event.once("onReady",async()=>{try{await this.config.onReady.call(this)}catch(t){console.error("onReady callback failed:",t)}t()})});if(this.event.once("onLoad",this.config.onLoad.bind(this)),this.event.once("applyUrlFragmentState",async()=>{await n,this.utils.applyUrlFragmentState.call(this,this)}),this.utils.paginatedDataParse.call(this,t).then(t=>{if(this.utils.isNetJSON(t))this.type="netjson";else{if(!this.utils.isGeoJSON(t))throw new Error("Invalid data format!");this.type="geojson",this.originalGeoJSON=this.utils.fastDeepCopy(t),t=this.utils.geojsonToNetjson(t)}if(this.utils.isNetJSON(t)){t.nodes.length>this.config.maxPointsFetched&&(this.hasMoreData=!0),t.nodes.splice(this.config.maxPointsFetched-1,t.nodes.length-this.config.maxPointsFetched);const e=new Set;this.nodeLinkIndex={},t.nodes.forEach(t=>{e.add(t.id),this.nodeLinkIndex[t.id]=t}),t.links=t.links.filter(t=>e.has(t.source)&&e.has(t.target)?(this.nodeLinkIndex[`${t.source}~${t.target}`]=t,!0):(e.has(t.source)?console.warn(`Node ${t.target} does not exist!`):console.warn(`Node ${t.source} does not exist!`),!1))}this.config.prepareData.call(this,t),this.data=t,this.config.dealDataByWorker?this.utils.dealDataByWorker.call(this,t,this.config.dealDataByWorker):(this.data=t,this.utils.render())}).catch(t=>{console.error(t)}),e.length){const n=function(){e.map(t=>this.utils.JSONDataUpdate.call(this,t,!1))};this.JSONParam=[t],this.event.once("renderArray",n.bind(this))}}setUtils(t={}){const e=this;return e.utils=Object.assign(e.utils,{...t},{render(){if(!e.config.render)throw new Error("No render function!");e.config.render(e.data,e)}}),"function"==typeof e.utils.moveNodeInRealTime&&(e.utils.moveNodeInRealTime=e.utils.moveNodeInRealTime.bind(e)),e.utils}};var UC,jC={},ZC=[],YC={registerPreprocessor:cl,registerProcessor:hl,registerPostInit:function(t){dl("afterinit",t)},registerPostUpdate:function(t){dl("afterupdate",t)},registerUpdateLifecycle:dl,registerAction:pl,registerCoordinateSystem:fl,registerLayout:function(t,e){yl(kC,t,e,1e3,"layout")},registerVisual:gl,registerTransform:function(t){var e=(t=i(t)).type;e||Io("");var n=e.split(":");2!==n.length&&Io("");var r=!1;"echarts"===n[0]&&(e=n[1],r=!0),t.__isBuiltIn=r,rw.set(e,t)},registerLoading:ml,registerMap:function(t,e,n){var i=lC.registerMap;i&&i(t,e,n)},registerImpl:function(t,e){lC[t]=e},PRIORITY:hC,ComponentModel:G_,ComponentView:ww,SeriesModel:_w,ChartView:$b,registerComponentModel:function(t){G_.registerClass(t)},registerComponentView:function(t){ww.registerClass(t)},registerSeriesModel:function(t){_w.registerClass(t)},registerChartView:function(t){$b.registerClass(t)},registerCustomSeries:function(t,e){!function(t,e){jC[t]=e}(t,e)},registerSubTypeDefaulter:function(t,e){G_.registerSubTypeDefaulter(t,e)},registerPainter:function(t,e){Ey[t]=e}},XC=hb.prototype,qC=gb.prototype,$C=function(){this.x1=0,this.y1=0,this.x2=0,this.y2=0,this.percent=1};t(function(){return null!==UC&&UC.apply(this,arguments)||this},UC=$C);const KC=function(e){function n(t){var n=e.call(this,t)||this;return n.type="ec-line",n}return t(n,e),n.prototype.getDefaultStyle=function(){return{stroke:X_.color.neutral99,fill:null}},n.prototype.getDefaultShape=function(){return new $C},n.prototype.buildPath=function(t,e){Tl(e)?XC.buildPath.call(this,t,e):qC.buildPath.call(this,t,e)},n.prototype.pointAt=function(t){return Tl(this.shape)?XC.pointAt.call(this,t):qC.pointAt.call(this,t)},n.prototype.tangentAt=function(t){var e=this.shape,n=Tl(e)?[e.x2-e.x1,e.y2-e.y1]:qC.tangentAt.call(this,t);return J(n,n)},n}(rv);var JC=["fromSymbol","toSymbol"],QC=function(e){function n(t,n,i){var r=e.call(this)||this;return r._createLine(t,n,i),r}return t(n,e),n.prototype._createLine=function(t,e,n){var i=t.hostModel,r=t.getItemLayout(e),o=t.getItemVisual(e,"z2"),a=function(t){var e=new KC({name:"line",subPixelOptimize:!0});return Al(e.shape,t),e}(r);a.shape.percent=0,ka(a,{z2:k(o,0),shape:{percent:1}},i,e),this.add(a),c(JC,function(n){var i=Dl(n,t,e);this.add(i),this[Il(n)]=kl(n,t,e)},this),this._updateCommonStl(t,e,n)},n.prototype.updateData=function(t,e,n){var i=t.hostModel,r=this.childOfName("line"),o=t.getItemLayout(e),a={shape:{}};Al(a.shape,o),Ia(r,a,i,e),c(JC,function(n){var i=kl(n,t,e),r=Il(n);if(this[r]!==i){this.remove(this.childOfName(n));var o=Dl(n,t,e);this.add(o)}this[r]=i},this),this._updateCommonStl(t,e,n)},n.prototype.getLinePath=function(){return this.childAt(0)},n.prototype._updateCommonStl=function(t,e,n){var i=t.hostModel,r=this.childOfName("line"),o=n&&n.emphasisLineStyle,a=n&&n.blurLineStyle,s=n&&n.selectLineStyle,l=n&&n.labelStatesModels,u=n&&n.emphasisDisabled,h=n&&n.focus,d=n&&n.blurScope;if(!n||t.hasItemOption){var p=t.getItemModel(e),f=p.getModel("emphasis");o=f.getModel("lineStyle").getLineStyle(),a=p.getModel(["blur","lineStyle"]).getLineStyle(),s=p.getModel(["select","lineStyle"]).getLineStyle(),u=f.get("disabled"),h=f.get("focus"),d=f.get("blurScope"),l=ur(p)}var g=t.getItemVisual(e,"style"),m=g.stroke;r.useStyle(g),r.style.fill=null,r.style.strokeNoScale=!0,r.ensureState("emphasis").style=o,r.ensureState("blur").style=a,r.ensureState("select").style=s,c(JC,function(t){var e=this.childOfName(t);if(e){e.setColor(m),e.style.opacity=g.opacity;for(var n=0;n0&&(_[0]=-_[0],_[1]=-_[1]);var w=v[0]<0?-1:1;if("start"!==r.__position&&"end"!==r.__position){var b=-Math.atan2(v[1],v[0]);c[0].8?"left":h[0]<-.8?"right":"center",p=h[1]>.8?"top":h[1]<-.8?"bottom":"middle";break;case"start":r.x=-h[0]*g+u[0],r.y=-h[1]*y+u[1],d=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":r.x=g*w+u[0],r.y=u[1]+S,d=v[0]<0?"right":"left",r.originX=-g*w,r.originY=-S;break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":r.x=x[0],r.y=x[1]+S,d="center",r.originY=-S;break;case"insideEndTop":case"insideEnd":case"insideEndBottom":r.x=-g*w+c[0],r.y=c[1]+S,d=v[0]>=0?"right":"left",r.originX=g*w,r.originY=-S}r.scaleX=r.scaleY=o,r.setStyle({verticalAlign:r.__verticalAlign||p,align:r.__align||d})}}}},n}(Ny);const tM=QC,eM=function(){function t(t){this.group=new Ny,this._LineCtor=t||tM}return t.prototype.updateData=function(t){var e=this;this._progressiveEls=null;var n=this,i=n.group,r=n._lineData;n._lineData=t,r||i.removeAll();var o=Ll(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=Ll(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)}this._progressiveEls=[];for(var i=t.start;i0&&(o=this._getLineLength(i)/l*1e3),o!==this._period||a!==this._loop||s!==this._roundTrip){i.stopAnimation();var c=void 0;c=m(u)?u(n):u,i.__t>0&&(c=-o*i.__t),this._animateSymbol(i,o,c,a,s)}this._period=o,this._loop=a,this._roundTrip=s}},n.prototype._animateSymbol=function(t,e,n,i,r){if(e>0){t.__t=0;var o=this,a=t.animate("",i).when(r?2*e:e,{__t:r?2:1}).delay(n).during(function(){o._updateSymbolPosition(t)});i||a.done(function(){o.remove(t)}),a.start()}},n.prototype._getLineLength=function(t){return Tf(t.__p1,t.__cp1)+Tf(t.__cp1,t.__p2)},n.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]},n.prototype.updateData=function(t,e,n){this.childAt(0).updateData(t,e,n),this._updateEffectSymbol(t,e)},n.prototype._updateSymbolPosition=function(t){var e=t.__p1,n=t.__p2,i=t.__cp1,r=t.__t<1?t.__t:2-t.__t,o=[t.x,t.y],a=o.slice(),s=Gt,l=Ut;o[0]=s(e[0],i[0],n[0],r),o[1]=s(e[1],i[1],n[1],r);var u=t.__t<1?l(e[0],i[0],n[0],r):l(n[0],i[0],e[0],1-r),c=t.__t<1?l(e[1],i[1],n[1],r):l(n[1],i[1],e[1],1-r);t.rotation=-Math.atan2(c,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],t.rotation=-Math.atan2(t.__t<1?u[1]-l[1]:l[1]-u[1],t.__t<1?u[0]-l[0]:l[0]-u[0])-Math.PI/2,this._lastFrame=o,this._lastFramePercent=e,t.ignore=!1}},n}(iM);const sM=aM;var lM=function(){this.polyline=!1,this.curveness=0,this.segs=[]},uM=function(e){function n(t){var n=e.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return t(n,e),n.prototype.reset=function(){this.notClear=!1,this._off=0},n.prototype.getDefaultStyle=function(){return{stroke:X_.color.neutral99,fill:null}},n.prototype.getDefaultShape=function(){return new lM},n.prototype.buildPath=function(t,e){var n,i=e.segs,r=e.curveness;if(e.polyline)for(n=this._off;n0){t.moveTo(i[n++],i[n++]);for(var a=1;a0?t.quadraticCurveTo((s+u)/2-(l-c)*r,(l+c)/2-(u-s)*r,u,c):t.lineTo(u,c)}this.incremental&&(this._off=n,this.notClear=!0)},n.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++],c=i[s++],h=1;h0){if(li(u,c,(u+d)/2-(c-p)*r,(c+p)/2-(d-u)*r,d,p,o,t,e))return a}else if(ai(u,c,d,p,o,t,e))return a;a++}return-1},n.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e);return this.getBoundingRect().contain(t=n[0],e=n[1])?(this.hoverDataIdx=this.findDataIndex(t,e))>=0:(this.hoverDataIdx=-1,!1)},n.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var e=this.shape.segs,n=1/0,i=1/0,r=-1/0,o=-1/0,a=0;a0&&(o.dataIndex=n+t.__startIndex)})},t.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},t}();var hM={seriesType:"lines",plan:ga(),reset:function(t){var e=t.coordinateSystem;if(e){var 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,c=r.start;c0&&(l||s.configLayer(o,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(a/10+.9,1),0)})),r.updateData(i);var u=t.get("clip",!0)&&function(t,e,n){return t?"polar"===t.type?function(t){var e=t.getArea(),n=rn(e.r0,1),i=rn(e.r,1),r=new Jw({shape:{cx:rn(t.cx,1),cy:rn(t.cy,1),r0:n,r:i,startAngle:e.startAngle,endAngle:e.endAngle,clockwise:e.clockwise}});return r}(t):"cartesian2d"===t.type?function(t,e,n){var i=t.getArea(),r=i.x,o=i.y,a=i.width,s=i.height,l=n.get(["lineStyle","width"])||0;r-=l/2,o-=l/2,a+=l,s+=l,a=Math.ceil(a),r!==Math.floor(r)&&(r=Math.floor(r),a++);var u=new yv({shape:{x:r,y:o,width:a,height:s}});return u}(t,0,n):null:null}(t.coordinateSystem,0,t);u?this.group.setClipPath(u):this.group.removeClipPath(),this._lastZlevel=o,this._finished=!0},n.prototype.incrementalPrepareRender=function(t,e,n){var i=t.getData();this._updateLineDraw(i,t).incrementalPrepareUpdate(i),this._clearLayer(n),this._finished=!1},n.prototype.incrementalRender=function(t,e,n){this._lineDraw.incrementalUpdate(t,e.getData()),this._finished=t.end===e.getData().count()},n.prototype.eachRendered=function(t){this._lineDraw&&this._lineDraw.eachRendered(t)},n.prototype.updateTransform=function(t,e,n){var i=t.getData(),r=t.pipelineContext;if(!this._finished||r.large||r.progressiveRender)return{update:!0};var o=dM.reset(t,e,n);o.progress&&o.progress({start:0,end:i.count(),count:i.count()},i),this._lineDraw.updateLayout(),this._clearLayer(n)},n.prototype._updateLineDraw=function(t,e){var n=this._lineDraw,i=this._showEffect(e),r=!!e.get("polyline"),o=e.pipelineContext.large;return n&&i===this._hasEffet&&r===this._isPolyline&&o===this._isLargeDraw||(n&&n.remove(),n=this._lineDraw=o?new cM:new eM(r?i?sM:oM:i?iM:tM),this._hasEffet=i,this._isPolyline=r,this._isLargeDraw=o),this.group.add(n.group),n},n.prototype._showEffect=function(t){return!!t.get(["effect","show"])},n.prototype._clearLayer=function(t){var e=t.getZr();"svg"===e.painter.getType()||null==this._lastZlevel||e.painter.getLayer(this._lastZlevel).clear(!0)},n.prototype.remove=function(t,e){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(e)},n.prototype.dispose=function(t,e){this.remove(t,e)},n.type="lines",n}($b);var fM=function(){function t(t,e,n,i,r,o){this._old=t,this._new=e,this._oldKeyGetter=n||Nl,this._newKeyGetter=i||Nl,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._new,e={},n={},i=[],r=[];this._initIndexMap(this._old,e,i,"_oldKeyGetter"),this._initIndexMap(t,n,r,"_newKeyGetter");for(var o=0;o1&&1===c)this._updateManyToOne&&this._updateManyToOne(l,s),n[a]=null;else if(1===u&&c>1)this._updateOneToMany&&this._updateOneToMany(l,s),n[a]=null;else if(1===u&&1===c)this._update&&this._update(l,s),n[a]=null;else if(u>1&&c>1)this._updateManyToMany&&this._updateManyToMany(l,s),n[a]=null;else if(u>1)for(var h=0;h1)for(var a=0;a=e)){var n=this._store.getProvider();this._updateOrdinalMeta();var i=this._nameList,r=this._idList;if(n.getSource().sourceFormat===rx&&!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&&(y(r=this.getVisual(e))?r=r.slice():kM(r)&&(r=o({},r)),i[e]=r),r},t.prototype.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{};this._itemVisuals[t]=i,kM(e)?o(i,e):i[e]=n},t.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},t.prototype.setLayout=function(t,e){kM(t)?o(this._layout,t):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?o(this._itemLayouts[t]||{},e):e},t.prototype.clearItemLayouts=function(){this._itemLayouts.length=0},t.prototype.setItemGraphicEl=function(t,e){!function(t,e,n,i){if(i){var r=Mv(i);r.dataIndex=n,r.dataType=e,r.seriesIndex=t,r.ssrType="chart","group"===i.type&&i.traverse(function(i){var r=Mv(i);r.seriesIndex=t,r.dataIndex=n,r.dataType=e,r.ssrType="chart"})}}(this.hostModel&&this.hostModel.seriesIndex,this.dataType,t,e),this._graphicEls[t]=e},t.prototype.getItemGraphicEl=function(t){return this._graphicEls[t]},t.prototype.eachItemGraphicEl=function(t,e){c(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:DM(this.dimensions,this._getDimInfo,this),this.hostModel)),bM(e,this),e._store=this._store,e},t.prototype.wrapMethod=function(t,e){var n=this[t];m(n)&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(A(arguments)))})},t.internalField=(vM=function(t){var e=t._invertedIndicesMap;c(e,function(n,i){var r=t._dimInfos[i],o=r.ordinalMeta,a=t._store;if(o){n=e[i]=new AM(o.categories.length);for(var s=0;s1&&(s+="__ec__"+u),i[e]=s}})),t}();const RM=PM;var NM="undefined"==typeof Uint32Array?Array:Uint32Array,zM="undefined"==typeof Float64Array?Array:Float64Array,EM=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.visualStyleAccessPath="lineStyle",t.visualDrawType="stroke",t}return t(n,e),n.prototype.init=function(t){t.data=t.data||[],Hl(t);var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count)),e.prototype.init.apply(this,arguments)},n.prototype.mergeOption=function(t){if(Hl(t),t.data){var n=this._processFlatCoordsArray(t.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(t.data=new Float32Array(n.count))}e.prototype.mergeOption.apply(this,arguments)},n.prototype.appendData=function(t){var e=this._processFlatCoordsArray(t.data);e.flatCoords&&(this._flatCoords?(this._flatCoords=E(this._flatCoords,e.flatCoords),this._flatCoordsOffset=E(this._flatCoordsOffset,e.flatCoordsOffset)):(this._flatCoords=e.flatCoords,this._flatCoordsOffset=e.flatCoordsOffset),t.data=new Float32Array(e.count)),this.getRawData().appendData(t.data)},n.prototype._getCoordsFromItemModel=function(t){var e=this.getData().getItemModel(t);return e.option instanceof Array?e.option:e.getShallow("coords")},n.prototype.getLineCoordsCount=function(t){return this._flatCoordsOffset?this._flatCoordsOffset[2*t+1]:this._getCoordsFromItemModel(t).length},n.prototype.getLineCoords=function(t,e){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[2*t],i=this._flatCoordsOffset[2*t+1],r=0;r ")})},n.prototype.preventIncremental=function(){return!!this.get(["effect","show"])},n.prototype.getProgressive=function(){var t=this.option.progressive;return null==t?this.option.large?1e4:this.get("progressive"):t},n.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?2e4:this.get("progressiveThreshold"):t},n.prototype.getZLevelKey=function(){var t=this.getModel("effect"),e=t.get("trailLength");return this.getData().count()>this.getProgressiveThreshold()?this.id:t.get("show")&&e>0?e+"":""},n.type="series.lines",n.dependencies=["grid","polar","geo","calendar"],n.defaultOption={coordinateSystem:"geo",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}},n}(_w);const BM=EM,VM={seriesType:"lines",reset:function(t){var e=Wl(t.get("symbol")),n=Wl(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=Wl(n.getShallow("symbol",!0)),r=Wl(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 FM="--\x3e",HM=function(t){return t.get("autoCurveness")||null},WM=function(t,e){var n=HM(t),i=20,r=[];if(x(n))i=n;else if(y(n))return void(t.__curvenessList=n);e>i&&(i=e);var o=i%2?i+2:i+3;r=[];for(var a=0;a0?+p:1;I.scaleX=this._sizeX*k,I.scaleY=this._sizeY*k,this.setSymbolScale(1),nr(this,u,c,h)},n.prototype.setSymbolScale=function(t){this.scaleX=this.scaleY=t},n.prototype.fadeOut=function(t,e,n){var i=this.childAt(0),r=Mv(this).dataIndex,o=n&&n.animation;if(this.silent=i.silent=!0,n&&n.fadeLabel){var a=i.getTextContent();a&&Aa(a,{style:{opacity:0}},e,{dataIndex:r,removeOpt:o,cb:function(){i.removeTextContent()}})}else i.removeTextContent();Aa(i,{style:{opacity:0},scaleX:0,scaleY:0},e,{dataIndex:r,cb:t,removeOpt:o})},n.getSymbolSize=function(t,e){return Ns(t.getItemVisual(e,"symbolSize"))},n.getSymbolZ2=function(t,e){return t.getItemVisual(e,"z2")},n}(Ny);const tT=QM;var eT=function(){function t(t){this.group=new Ny,this._SymbolCtor=t||tT}return t.prototype.updateData=function(t,e){this._progressiveEls=null,e=cu(e);var n=this.group,i=t.hostModel,r=this._data,o=this._SymbolCtor,a=e.disableAnimation,s=hu(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(uu(t,r,i,e)){var a=new o(t,i,s,l);a.setPosition(r),t.setItemGraphicEl(i,a),n.add(a)}}).update(function(c,h){var d=r.getItemGraphicEl(h),p=u(c);if(uu(t,p,c,e)){var f=t.getItemVisual(c,"symbol")||"circle",g=d&&d.getSymbolType&&d.getSymbolType();if(!d||g&&g!==f)n.remove(d),(d=new o(t,c,s,l)).setPosition(p);else{d.updateData(t,c,s,l);var y={x:p[0],y:p[1]};a?d.attr(y):Ia(d,y,i)}n.add(d),t.setItemGraphicEl(c,d)}else n.remove(d)}).remove(function(t){var e=r.getItemGraphicEl(t);e&&e.fadeOut(function(){n.remove(e)},i)}).execute(),this._getSymbolPoint=u,this._data=t},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=hu(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)}this._progressiveEls=[],n=cu(n);for(var r=t.start;r3?1.4:r>1?1.2:1.1;this._checkTriggerMoveZoom(this,"zoom","zoomOnMouseWheel",t,{scale:i>0?s:1/s,originX:o,originY:a,isAvailableBehavior:null})}if(n){var l=Math.abs(i);this._checkTriggerMoveZoom(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:(i>0?1:-1)*(l>3?.4:l>1?.15:.05),originX:o,originY:a,isAvailableBehavior:null})}}}},n.prototype._pinchHandler=function(t){du(this._zr,"globalPan")||fu(t)||this._checkTriggerMoveZoom(this,"zoom",null,t,{scale:t.pinchScale>1?1.1:1/1.1,originX:t.pinchX,originY:t.pinchY,isAvailableBehavior:null})},n.prototype._checkTriggerMoveZoom=function(t,e,n,i,r){t._checkPointer(i,r.originX,r.originY)&&(Hf(i.event),i.__ecRoamConsumed=!0,_u(t,e,n,i,r))},n}(Of),aT=kn();const sT=oT;var lT=[],uT=[],cT=[],hT=Gt,dT=If,pT=Math.abs,fT=kn(),gT=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.prototype.init=function(t,e){var n=new nT,i=new eM,r=this.group,o=new Ny;this._controller=new sT(e.getZr()),this._controllerHost={target:o},o.add(n.group),o.add(i.group),r.add(o),this._symbolDraw=n,this._lineDraw=i,this._mainGroup=o,this._firstRender=!0},n.prototype.render=function(t,e,n){var i=this,r=t.coordinateSystem,o=!1;this._model=t,this._api=n,this._active=!0;var a=this._getThumbnailInfo();a&&a.bridge.reset(n);var s=this._symbolDraw,l=this._lineDraw;if(Su(r)){var u={x:r.x,y:r.y,scaleX:r.scaleX,scaleY:r.scaleY};this._firstRender?this._mainGroup.attr(u):Ia(this._mainGroup,u,t)}bu(t.getGraph(),Kl(t));var c=t.getData();s.updateData(c);var h=t.getEdgeData();l.updateData(h),this._updateNodeAndLinkScale(),this._updateController(null,t,n),clearTimeout(this._layoutTimeout);var d=t.forceLayout,p=t.get(["force","layoutAnimation"]);d&&(o=!0,this._startForceLayoutIteration(d,n,p));var f=t.get("layout");c.graph.eachNode(function(e){var r=e.dataIndex,o=e.getGraphicEl(),a=e.getModel();if(o){o.off("drag").off("dragend");var s=a.get("draggable");s&&o.on("drag",function(a){switch(f){case"force":d.warmUp(),!i._layouting&&i._startForceLayoutIteration(d,n,p),d.setFixed(r),c.setItemLayout(r,[o.x,o.y]);break;case"circular":c.setItemLayout(r,[o.x,o.y]),e.setLayout({fixed:!0},!0),Ql(t,"symbolSize",e,[a.offsetX,a.offsetY]),i.updateLayout(t);break;default:c.setItemLayout(r,[o.x,o.y]),ql(t.getGraph(),t),i.updateLayout(t)}}).on("dragend",function(){d&&d.setUnfixed(r)}),o.setDraggable(s,!!a.get("cursor")),"adjacency"===a.get(["emphasis","focus"])&&(Mv(o).focus=e.getAdjacentDataIndices())}}),c.graph.eachEdge(function(t){var e=t.getGraphicEl(),n=t.getModel().get(["emphasis","focus"]);e&&"adjacency"===n&&(Mv(e).focus={edge:[t.dataIndex],node:[t.node1.dataIndex,t.node2.dataIndex]})});var g="circular"===t.get("layout")&&t.get(["circular","rotateLabel"]),y=c.getLayout("cx"),m=c.getLayout("cy");c.graph.eachNode(function(t){tu(t,g,y,m)}),this._firstRender=!1,o||this._renderThumbnail(t,n,this._symbolDraw,this._lineDraw)},n.prototype.dispose=function(){this.remove(),this._controller&&this._controller.dispose(),this._controllerHost=null},n.prototype._startForceLayoutIteration=function(t,e,n){var i=this,r=!1;!function o(){t.step(function(t){i.updateLayout(i._model),!t&&r||(r=!0,i._renderThumbnail(i._model,e,i._symbolDraw,i._lineDraw)),(i._layouting=!t)&&(n?i._layoutTimeout=setTimeout(o,16):o())})}()},n.prototype._updateController=function(t,e,n){var i=this._controller,r=this._controllerHost,o=e.coordinateSystem;Su(o)?(i.enable(e.get("roam"),{api:n,zInfo:{component:e},triggerInfo:{roamTrigger:e.get("roamTrigger"),isInSelf:function(t,e,n){return o.containPoint([e,n])},isInClip:function(e,n,i){return!t||t.contain(n,i)}}}),r.zoomLimit=e.get("scaleLimit"),r.zoom=o.getZoom(),i.off("pan").off("zoom").on("pan",function(t){n.dispatchAction({seriesId:e.id,type:"graphRoam",dx:t.dx,dy:t.dy})}).on("zoom",function(t){n.dispatchAction({seriesId:e.id,type:"graphRoam",zoom:t.scale,originX:t.originX,originY:t.originY})})):i.disable()},n.prototype.updateViewOnPan=function(t,e,n){this._active&&(function(t,e,n){var i=t.target;i.x+=e,i.y+=n,i.dirty()}(this._controllerHost,n.dx,n.dy),this._updateThumbnailWindow())},n.prototype.updateViewOnZoom=function(t,e,n){this._active&&(function(t,e,n,i){var r=t.target,o=t.zoomLimit,a=t.zoom=t.zoom||1,s=(a=ou(a*=e,o))/t.zoom;t.zoom=a,ru(r,n,i,s),r.dirty()}(this._controllerHost,n.zoom,n.originX,n.originY),this._updateNodeAndLinkScale(),bu(t.getGraph(),Kl(t)),this._lineDraw.updateLayout(),e.updateLabelLayout(),this._updateThumbnailWindow())},n.prototype._updateNodeAndLinkScale=function(){var t=this._model,e=t.getData(),n=Kl(t);e.eachItemGraphicEl(function(t,e){t&&t.setSymbolScale(n)})},n.prototype.updateLayout=function(t){this._active&&(bu(t.getGraph(),Kl(t)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout())},n.prototype.remove=function(){this._active=!1,clearTimeout(this._layoutTimeout),this._layouting=!1,this._layoutTimeout=null,this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove(),this._controller&&this._controller.disable()},n.prototype._getThumbnailInfo=function(){var t=this._model,e=t.coordinateSystem;if("view"===e.type){var n=function(t){if(t)return fT(t).bridge}(t);if(n)return{bridge:n,coordSys:e}}},n.prototype._updateThumbnailWindow=function(){var t=this._getThumbnailInfo();t&&t.bridge.updateWindow(t.coordSys.transform,this._api)},n.prototype._renderThumbnail=function(t,e,n,r){var a=this._getThumbnailInfo();if(a){var s=new Ny,l=n.group.children(),u=r.group.children(),c=new Ny,h=new Ny;s.add(h),s.add(c);for(var d=0;d=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 vT||(e=this._nodesMap[Cu(e)]),e){for(var r="out"===n?"outEdges":"in"===n?"inEdges":"edges",o=0;o=0&&n.node2.dataIndex>=0}),r=0,o=i.length;r=0&&!t.hasKey(p)&&(t.set(p,!0),o.push(d.node1))}for(s=0;s=0&&!t.hasKey(v)&&(t.set(v,!0),a.push(m.node2))}}}return{edge:t.keys(),node:e.keys()}},t}(),_T=function(){function t(t,e,n){this.dataIndex=-1,this.node1=t,this.node2=e,this.dataIndex=null==n?-1:n}return t.prototype.getModel=function(t){if(!(this.dataIndex<0))return this.hostGraph.edgeData.getItemModel(this.dataIndex).getModel(t)},t.prototype.getAdjacentDataIndices=function(){return{edge:[this.dataIndex],node:[this.node1.dataIndex,this.node2.dataIndex]}},t.prototype.getTrajectoryDataIndices=function(){var t=z(),e=z();t.set(this.dataIndex,!0);for(var n=[this.node1],i=[this.node2],r=0;r=0&&!t.hasKey(u)&&(t.set(u,!0),n.push(l.node1))}for(r=0;r=0&&!t.hasKey(d)&&(t.set(d,!0),i.push(h.node2))}return{edge:t.keys(),node:e.keys()}},t}();l(vT,Mu("hostGraph","data")),l(_T,Mu("hostGraph","edgeData"));const xT=mT;var wT=kn(),bT=function(t){this.coordSysDims=[],this.axisMap=z(),this.categoryAxisMap=z(),this.coordSysName=t},ST={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis",$y).models[0],o=t.getReferringComponents("yAxis",$y).models[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",o),Nu(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),Nu(o)&&(i.set("y",o),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis",$y).models[0];e.coordSysDims=["single"],n.set("single",r),Nu(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar",$y).models[0],o=r.findAxisModel("radiusAxis"),a=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),Nu(o)&&(i.set("radius",o),e.firstCategoryDimIndex=0),Nu(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();c(o.parallelAxisIndex,function(t,o){var s=r.getComponent("parallelAxis",t),l=a[o];n.set(l,s),Nu(s)&&(i.set(l,s),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=o))})},matrix:function(t,e,n,i){var r=t.getReferringComponents("matrix",$y).models[0];e.coordSysDims=["x","y"];var o=r.getDimensionModel("x"),a=r.getDimensionModel("y");n.set("x",o),n.set("y",a),i.set("x",o),i.set("y",a)}};const CT=function(t,e,n){n=n||{};var i,r=e.getSourceManager(),o=!1;t?(o=!0,i=wo(t)):o=(i=r.getSource()).sourceFormat===rx;var a=function(t){var e=t.get("coordinateSystem"),n=new bT(e),i=ST[e];if(i)return i(t,n,n.axisMap,n.categoryAxisMap),n}(e),s=function(t,e){var n,i=t.get("coordinateSystem"),r=N_.get(i);return e&&e.coordSysDims&&(n=h(e.coordSysDims,function(t){var n={name:t},i=e.axisMap.get(t);if(i){var r=i.get("type");n.type=function(t){return"category"===t?"ordinal":"time"===t?"time":"float"}(r)}return n})),n||(n=r&&(r.getDimensionsInfo?r.getDimensionsInfo():r.dimensions.slice())||["x","y"]),n}(e,a),l=n.useEncodeDefaulter,u=m(l)?l:l?g(Jr,s,e):null,d=Pu(i,{coordDimensions:s,generateCoord:n.generateCoord,encodeDefine:e.getEncode(),encodeDefaulter:u,canOmitUnusedDimensions:!o}),p=function(t,e,n){var i,r;return n&&c(t,function(t,o){var a=n.categoryAxisMap.get(t.coordDim);a&&(null==i&&(i=o),t.ordinalMeta=a.getOrdinalMeta(),e&&(t.createInvertedIndices=!0)),null!=t.otherDims.itemName&&(r=!0)}),r||null==i||(t[i].otherDims.itemName=0),i}(d.dimensions,n.createInvertedIndices,a),f=o?null:r.getSharedDataStore(d),_=function(t,e,n){var i,r,o,a=(n=n||{}).byIndex,s=n.stackedCoordDimension;!function(t){return!El(t.schema)}(e)?(i=(r=e.schema).dimensions,o=e.store):i=e;var l,u,h,d,p=!(!t||!t.get("stack"));if(c(i,function(t,e){v(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,d="__\0ecstackedover_"+t.id,l&&(l.createInvertedIndices=!0);var f=u.coordDim,g=u.type,y=0;c(i,function(t){t.coordDim===f&&y++});var m={name:h,coordDim:f,coordDimIndex:y,type:g,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length},_={name:d,coordDim:d,coordDimIndex:y+1,type:g,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length+1};r?(o&&(m.storeDimIndex=o.ensureCalculationDimension(d,g),_.storeDimIndex=o.ensureCalculationDimension(h,g)),r.appendCalculationDimension(m),r.appendCalculationDimension(_)):(i.push(m),i.push(_))}return{stackedDimension:u&&u.name,stackedByDimension:l&&l.name,isStackedByIndex:a,stackedOverDimension:d,stackResultDimension:h}}(e,{schema:d,store:f}),x=new RM(d,e);x.setCalculationInfo(_);var w=null!=p&&function(t){if(t.sourceFormat===rx)return!y(_n(function(t){for(var e=0;e=0},t.prototype.indexOfName=function(t){return this._getDataWithEncodedVisual().indexOfName(t)},t.prototype.getItemVisual=function(t,e){return this._getDataWithEncodedVisual().getItemVisual(t,e)},t}();const TT=MT;var IT=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.hasSymbolVisual=!0,t}return t(n,e),n.prototype.init=function(t){function n(){return i._categoriesData}e.prototype.init.apply(this,arguments);var i=this;this.legendVisualProvider=new TT(n,n),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},n.prototype.mergeOption=function(t){e.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(t.edges||t.links),this._updateCategoriesData()},n.prototype.mergeDefaultAndTheme=function(t){e.prototype.mergeDefaultAndTheme.apply(this,arguments),vn(t,"edgeLabel",["show"])},n.prototype.getInitialData=function(t,e){var n,i=t.edges||t.links||[],r=t.data||t.nodes||[],o=this;if(r&&i){HM(n=this)&&(n.__curvenessList=[],n.__edgeMap={},WM(n));var a=function(t,e,n,i,r){for(var o=new xT(!0),a=0;a "+f)),h++)}var y,m=n.get("coordinateSystem");if("cartesian2d"===m||"polar"===m||"matrix"===m)y=CT(t,n);else{var v=N_.get(m),_=v&&v.dimensions||[];s(_,"value")<0&&_.concat(["value"]);var x=Pu(t,{coordDimensions:_,encodeDefine:n.getEncode()}).dimensions;(y=new RM(x,n)).initData(t)}var w,b,S,C=new RM(["value"],n);return C.initData(u,l),r&&r(y,C),b=(w={mainData:y,struct:o,structAttr:"graph",datas:{node:y,edge:C},datasAttr:{node:"data",edge:"edgeData"}}).mainData,(S=w.datas)||(S={main:b},w.datasAttr={main:"data"}),w.datas=w.mainData=null,Lu(b,S,w),c(S,function(t){c(b.TRANSFERABLE_METHODS,function(e){t.wrapMethod(e,g(Tu,w))})}),b.wrapMethod("cloneShallow",g(ku,w)),c(b.CHANGABLE_METHODS,function(t){b.wrapMethod(t,g(Iu,w))}),O(S[b.dataType]===b),o.update(),o}(r,i,this,0,function(t,e){function n(t,e){var n=r.call(this,t,e);return n.resolveParentPath=i,n}function i(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}t.wrapMethod("getItemModel",function(t){var e=o._categoriesModels[t.getShallow("category")];return e&&(e.parentModel=t.parentModel,t.parentModel=e),t});var r=i_.prototype.getModel;e.wrapMethod("getItemModel",function(t){return t.resolveParentPath=i,t.getModel=n,t})});return c(a.edges,function(t){!function(t,e,n,i){if(HM(n)){var r=GM(t,e,n),o=n.__edgeMap,a=o[UM(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}},n.prototype.getGraph=function(){return this.getData().graph},n.prototype.getEdgeData=function(){return this.getGraph().edgeData},n.prototype.getCategoriesData=function(){return this._categoriesData},n.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),$o("nameValue",{name:l.join(" > "),value:r.value,noValue:null==r.value})}return aa({series:this,dataIndex:t,multipleSeries:e})},n.prototype._updateCategoriesData=function(){var t=h(this.option.categories||[],function(t){return null!=t.value?t:o({value:0},t)}),e=new RM(["value"],this);e.initData(t),this._categoriesData=e,this._categoriesModels=e.mapArray(function(t){return e.getItemModel(t)})},n.prototype.setZoom=function(t){this.option.zoom=t},n.prototype.setCenter=function(t){this.option.center=t},n.prototype.isAnimationEnabled=function(){return e.prototype.isAnimationEnabled.call(this)&&!("force"===this.get("layout")&&this.get(["force","layoutAnimation"]))},n.type="series.graph",n.dependencies=["grid","polar","geo","singleAxis","calendar"],n.defaultOption={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:X_.color.neutral50,width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:X_.color.primary}}},n}(_w);const kT=IT,DT=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.hasSymbolVisual=!0,t}return t(n,e),n.prototype.getInitialData=function(t,e){return CT(null,this,{useEncodeDefaulter:!0})},n.prototype.getProgressive=function(){var t=this.option.progressive;return null==t?this.option.large?5e3:this.get("progressive"):t},n.prototype.getProgressiveThreshold=function(){var t=this.option.progressiveThreshold;return null==t?this.option.large?1e4:this.get("progressiveThreshold"):t},n.prototype.brushSelector=function(t,e,n){return n.point(e.getItemLayout(t))},n.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:""},n.type="series.scatter",n.dependencies=["grid","polar","geo","singleAxis","calendar","matrix"],n.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:X_.color.primary}},universalTransition:{divideShape:"clone"}},n}(_w);var AT=function(){},LT=function(e){function n(t){var n=e.call(this,t)||this;return n._off=0,n.hoverDataIdx=-1,n}return t(n,e),n.prototype.getDefaultShape=function(){return new AT},n.prototype.reset=function(){this.notClear=!1,this._off=0},n.prototype.buildPath=function(t,e){var n,i=e.points,r=e.size,o=this.symbolProxy,a=o.shape,s=t.getContext?t.getContext():t,l=this.softClipShape;if(s&&r[0]<4)this._ctx=s;else{for(this._ctx=null,n=this._off;n=0;s--){var l=2*s,u=i[l]-o/2,c=i[l+1]-a/2;if(t>=u&&e>=c&&t<=u+o&&e<=c+a)return s}return-1},n.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e);return this.getBoundingRect().contain(t=n[0],e=n[1])?(this.hoverDataIdx=this.findDataIndex(t,e))>=0:(this.hoverDataIdx=-1,!1)},n.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var e=this.shape,n=e.points,i=e.size,r=i[0],o=i[1],a=1/0,s=1/0,l=-1/0,u=-1/0,c=0;c=0&&(l.dataIndex=n+(t.startIndex||0))})},t.prototype.remove=function(){this._clear()},t.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},t}();const PT=OT;var RT="undefined"!=typeof Float32Array,NT=RT?Float32Array:Array;const zT=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.prototype.render=function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).updateData(i,{clipShape:this._getClipShape(t)}),this._finished=!0},n.prototype.incrementalPrepareRender=function(t,e,n){var i=t.getData();this._updateSymbolDraw(i,t).incrementalPrepareUpdate(i),this._finished=!1},n.prototype.incrementalRender=function(t,e,n){this._symbolDraw.incrementalUpdate(t,e.getData(),{clipShape:this._getClipShape(e)}),this._finished=t.end===e.getData().count()},n.prototype.updateTransform=function(t,e,n){var i=t.getData();if(this.group.dirty(),!this._finished||i.count()>1e4)return{update:!0};var r=Eu("").reset(t,e,n);r.progress&&r.progress({start:0,end:i.count(),count:i.count()},i),this._symbolDraw.updateLayout(i)},n.prototype.eachRendered=function(t){this._symbolDraw&&this._symbolDraw.eachRendered(t)},n.prototype._getClipShape=function(t){if(t.get("clip",!0)){var e=t.coordinateSystem;return e&&e.getArea&&e.getArea(.1)}},n.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 PT:new nT,this._isLargeDraw=i,this.group.removeAll()),this.group.add(n.group),n},n.prototype.remove=function(t,e){this._symbolDraw&&this._symbolDraw.remove(!0),this._symbolDraw=null},n.prototype.dispose=function(){},n.type="scatter",n}($b);var ET={left:0,right:0,top:0,bottom:0},BT=["25%","25%"];const VT=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.mergeDefaultAndTheme=function(t,n){var i=$r(t.outerBounds);e.prototype.mergeDefaultAndTheme.apply(this,arguments),i&&t.outerBounds&&qr(t.outerBounds,i)},n.prototype.mergeOption=function(t,n){e.prototype.mergeOption.apply(this,arguments),this.option.outerBounds&&t.outerBounds&&qr(this.option.outerBounds,t.outerBounds)},n.type="grid",n.dependencies=["xAxis","yAxis"],n.layoutMode="box",n.defaultOption={show:!1,z:0,left:"15%",top:65,right:"10%",bottom:80,containLabel:!1,outerBoundsMode:"auto",outerBounds:ET,outerBoundsContain:"all",outerBoundsClampWidth:BT[0],outerBoundsClampHeight:BT[1],backgroundColor:X_.color.transparent,borderWidth:1,borderColor:X_.color.neutral30},n}(G_);var FT=function(){function t(){}return t.prototype.getNeedCrossZero=function(){return!this.option.scale},t.prototype.getCoordSysModel=function(){},t}(),HT=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",$y).models[0]},n.type="cartesian2dAxis",n}(G_);l(HT,FT);var WT={show:!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:X_.color.axisLine,width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15],breakLine:!0},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,color:X_.color.axisLabel,textMargin:[0,3]},splitLine:{show:!0,showMinLine:!0,showMaxLine:!0,lineStyle:{color:X_.color.axisSplitLine,width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:[X_.color.backgroundTint,X_.color.backgroundTransparent]}},breakArea:{show:!0,itemStyle:{color:X_.color.neutral00,borderColor:X_.color.border,borderWidth:1,borderType:[3,3],opacity:.6},zigzagAmplitude:4,zigzagMinSpan:4,zigzagMaxSpan:20,zigzagZ:100,expandOnClick:!0},breakLabelLayout:{moveOverlap:"auto"}},GT=r({boundaryGap:!0,deduplication:null,jitter:0,jitterOverlap:!0,jitterMargin:2,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto",show:"auto"},axisLabel:{interval:"auto"}},WT),UT=r({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:X_.color.axisMinorSplitLine,width:1}}},WT);const jT={category:GT,value:UT,time:r({splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},UT),log:a({logBase:10},UT)};var ZT=0;const YT=function(){function t(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication,this.uid=++ZT,this._onCollect=t.onCollect}return t.createByAxisModel=function(e){var n=e.option,i=n.data,r=i&&h(i,Bu);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(!v(t)&&!n)return t;if(n&&!this._deduplication)return this.categories[e=this.categories.length]=t,this._onCollect&&this._onCollect(t,e),e;var i=this._getOrCreateMap();return null==(e=i.get(t))&&(n?(this.categories[e=this.categories.length]=t,i.set(t,e),this._onCollect&&this._onCollect(t,e)):e=NaN),e},t.prototype._getOrCreateMap=function(){return this._map||(this._map=z(this.categories))},t}();var XT={value:1,category:1,time:1,log:1},qT=null,$T=function(){function t(){this.normalize=Yu,this.scale=Xu}return t.prototype.updateMethods=function(t){t.hasBreaks()?(this.normalize=_f(t.normalize,t),this.scale=_f(t.scale,t)):(this.normalize=Yu,this.scale=Xu)},t}(),KT=function(){function t(t){this._calculator=new $T,this._setting=t||{},this._extent=[1/0,-1/0];var e=yr();e&&(this._brkCtx=e.createScaleBreakContext(),this._brkCtx.update(this._extent))}return t.prototype.getSetting=function(t){return this._setting[t]},t.prototype._innerUnionExtent=function(t){var e=this._extent;this._innerSetExtent(t[0]e[1]?t[1]:e[1])},t.prototype.unionExtentFromData=function(t,e){this._innerUnionExtent(t.getApproximateExtent(e))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.setExtent=function(t,e){this._innerSetExtent(t,e)},t.prototype._innerSetExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e),this._brkCtx&&this._brkCtx.update(n)},t.prototype.setBreaksFromOption=function(t){var e=yr();e&&this._innerSetBreak(e.parseAxisBreakOption(t,_f(this.parse,this)))},t.prototype._innerSetBreak=function(t){this._brkCtx&&(this._brkCtx.setBreaks(t),this._calculator.updateMethods(this._brkCtx),this._brkCtx.update(this._extent))},t.prototype._innerGetBreaks=function(){return this._brkCtx?this._brkCtx.breaks:[]},t.prototype.hasBreaks=function(){return!!this._brkCtx&&this._brkCtx.hasBreaks()},t.prototype._getExtentSpanWithBreaks=function(){return this._brkCtx&&this._brkCtx.hasBreaks()?this._brkCtx.getExtentSpan():this._extent[1]-this._extent[0]},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}();Bn(KT);const JT=KT;var QT=function(e){function n(t){var n=e.call(this,t)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new YT({})),y(i)&&(i=new YT({categories:h(i,function(t){return w(t)?t.value:t})})),n._ordinalMeta=i,n._extent=n.getSetting("extent")||[0,i.categories.length-1],n}return t(n,e),n.prototype.parse=function(t){return null==t?NaN:v(t)?this._ordinalMeta.getOrdinal(t):Math.round(t)},n.prototype.contain=function(t){return Zu(t,this._extent)&&t>=0&&t=0&&t=0&&t=t},n.prototype.getOrdinalMeta=function(){return this._ordinalMeta},n.prototype.calcNiceTicks=function(){},n.prototype.calcNiceExtent=function(){},n.type="ordinal",n}(JT);JT.registerClass(QT);const tI=QT;var eI=rn,nI=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type="interval",t._interval=0,t._intervalPrecision=2,t}return t(n,e),n.prototype.parse=function(t){return null==t||""===t?NaN:Number(t)},n.prototype.contain=function(t){return Zu(t,this._extent)},n.prototype.normalize=function(t){return this._calculator.normalize(t,this._extent)},n.prototype.scale=function(t){return this._calculator.scale(t,this._extent)},n.prototype.getInterval=function(){return this._interval},n.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=Uu(t)},n.prototype.getTicks=function(t){t=t||{};var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=yr(),a=[];if(!e)return a;if("only_break"===t.breakTicks&&o)return o.addBreaksToTicks(a,this._brkCtx.breaks,this._extent),a;n[0]=0&&(l=eI(l+u*e,r))}if(a.length>0&&l===a[a.length-1].value)break;if(a.length>1e4)return[]}var c=a.length?a[a.length-1].value:i[1];return n[1]>c&&a.push(t.expandToNicedExtent?{value:eI(c+e,r)}:{value:n[1]}),o&&o.pruneTicksByBreak(t.pruneByBreak,a,this._brkCtx.breaks,function(t){return t.value},this._interval,this._extent),"none"!==t.breakTicks&&o&&o.addBreaksToTicks(a,this._brkCtx.breaks,this._extent),a},n.prototype.getMinorTicks=function(t){for(var e=this.getTicks({expandToNicedExtent:!0}),n=[],i=this.getExtent(),r=1;ri[0]&&hr&&(a=o.interval=r);var s=o.intervalPrecision=Uu(a);return function(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),ju(t,0,e),ju(t,1,e),t[0]>t[1]&&(t[0]=t[1])}(o.niceTickExtent=[rn(Math.ceil(t[0]/a)*a,s),rn(Math.floor(t[1]/a)*a,s)],t),o}(i,r,t,e,n);this._intervalPrecision=o.intervalPrecision,this._interval=o.interval,this._niceExtent=o.niceTickExtent}},n.prototype.calcNiceExtent=function(t){var e=this._extent.slice();if(e[0]===e[1])if(0!==e[0]){var n=Math.abs(e[0]);t.fixMax||(e[1]+=n/2),e[0]-=n/2}else e[1]=1;isFinite(e[1]-e[0])||(e[0]=0,e[1]=1),this._innerSetExtent(e[0],e[1]),e=this._extent.slice(),this.calcNiceTicks(t.splitNumber,t.minInterval,t.maxInterval);var i=this._interval,r=this._intervalPrecision;t.fixMin||(e[0]=eI(Math.floor(e[0]/i)*i,r)),t.fixMax||(e[1]=eI(Math.ceil(e[1]/i)*i,r)),this._innerSetExtent(e[0],e[1])},n.prototype.setNiceExtent=function(t,e){this._niceExtent=[t,e]},n.type="interval",n}(JT);JT.registerClass(nI);const iI=nI;var rI="__ec_stack_",oI=function(e){function n(t){var n=e.call(this,t)||this;return n.type="time",n}return t(n,e),n.prototype.getLabel=function(t){var e=this.getSetting("useUTC");return xr(t.value,x_[function(t){switch(t){case"year":case"month":return"day";case"millisecond":return"millisecond";default:return"second"}}(vr(this._minLevelUnit))]||x_.second,e,this.getSetting("locale"))},n.prototype.getFormattedLabel=function(t,e,n){var i=this.getSetting("useUTC");return function(t,e,n,i,r){var o=null;if(v(n))o=n;else if(m(n)){var a={time:t.time,level:t.time.level},s=yr();s&&s.makeAxisLabelFormatterParamBreak(a,t.break),o=n(t.value,e,a)}else{var l=t.time;if(l){var u=n[l.lowerTimeUnit][l.upperTimeUnit];o=u[Math.min(l.level,u.length-1)]||""}else{var c=wr(t.value,r);o=n[c][c][0]}}return xr(new Date(t.value),o,r,i)}(t,e,n,this.getSetting("locale"),i)},n.prototype.getTicks=function(t){t=t||{};var e=this._interval,n=this._extent,i=yr(),r=[];if(!e)return r;var o=this.getSetting("useUTC");if(i&&"only_break"===t.breakTicks)return yr().addBreaksToTicks(r,this._brkCtx.breaks,this._extent),r;var a=wr(n[1],o);r.push({value:n[0],time:{level:0,upperTimeUnit:a,lowerTimeUnit:a}});var l=function(t,e,n,i,r,o){function a(t,e,n,r,a,s,l){for(var c=function(t,e){var n=new Date(0);n[t](1);var i=n.getTime();n[t](1+e);var r=n.getTime()-i;return function(t,e){return Math.max(0,Math.round((e-t)/r))}}(a,t),h=e,d=new Date(h);h1e4));)if(d[a](d[r]()+t),h=d.getTime(),o){var p=o.calcNiceTickMultiple(h,c);p>0&&(d[a](d[r]()+p*t),h=d.getTime())}l.push({value:h,notAdd:!0})}function s(t,r,o){var s=[],l=!r.length;if(!Ju(vr(t),i[0],i[1],n)){l&&(r=[{value:rc(i[0],t,n)},{value:i[1]}]);for(var u=0;u=i[0]&&c<=i[1]&&a(d,c,h,p,f,0,s),"year"===t&&o.length>1&&0===u&&o.unshift({value:o[0].value-d})}}for(u=0;u=i[0]&&x<=i[1]&&f++)}var w=r/e;if(f>1.5*w&&g>w/1.5)break;if(c.push(v),f>w||t===l[y])break}d=[]}}var b=p(h(c,function(t){return p(t,function(t){return t.value>=i[0]&&t.value<=i[1]&&!t.notAdd})}),function(t){return t.length>0}),S=[],C=b.length-1;for(y=0;yn&&(this._approxInterval=n);var r=aI.length,o=Math.min(function(t,e,n,i){for(;n>>1;t[r][1]0;)i*=10;var r=[lI(cI(e[0]/i)*i),lI(uI(e[1]/i)*i)];this._interval=i,this._intervalPrecision=Uu(i),this._niceExtent=r}},n.prototype.calcNiceExtent=function(t){e.prototype.calcNiceExtent.call(this,t),this._fixMin=t.fixMin,this._fixMax=t.fixMax},n.prototype.contain=function(t){return t=dI(t)/dI(this.base),e.prototype.contain.call(this,t)},n.prototype.normalize=function(t){return t=dI(t)/dI(this.base),e.prototype.normalize.call(this,t)},n.prototype.scale=function(t){return t=e.prototype.scale.call(this,t),hI(this.base,t)},n.prototype.setBreaksFromOption=function(t){var e=yr();if(e){var n=e.logarithmicParseBreaksFromOption(t,this.base,_f(this.parse,this)),i=n.parsedLogged;this._originalScale._innerSetBreak(n.parsedOriginal),this._innerSetBreak(i)}},n.type="log",n}(iI);JT.registerClass(pI);const fI=pI;var gI=function(){function t(t,e,n){this._prepareParams(t,e,n)}return t.prototype._prepareParams=function(t,e,n){n[1]0&&s>0&&!l&&(a=0),a<0&&s<0&&!u&&(s=0));var h=this._determinedMin,d=this._determinedMax;return null!=h&&(a=h,l=!0),null!=d&&(s=d,u=!0),{min:a,max:s,minFixed:l,maxFixed:u,isBlank:c}},t.prototype.modifyDataMinMax=function(t,e){this[mI[t]]=e},t.prototype.setDeterminedMinMax=function(t,e){this[yI[t]]=e},t.prototype.freeze=function(){this.frozen=!0},t}(),yI={min:"_determinedMin",max:"_determinedMax"},mI={min:"_dataMin",max:"_dataMax"},vI=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 h(this._dimList,function(t){return this._axes[t]},this)},t.prototype.getAxesByScale=function(t){return t=t.toLowerCase(),p(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}(),_I=["x","y"],xI=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type="cartesian2d",t.dimensions=_I,t}return t(n,e),n.prototype.calcAffineTransform=function(){this._transform=this._invTransform=null;var t=this.getAxis("x").scale,e=this.getAxis("y").scale;if(vc(t)&&vc(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,c=this._transform=[l,0,0,u,r[0]-n[0]*l,r[1]-i[0]*u];this._invTransform=wt([],c)}}},n.prototype.getBaseAxis=function(){return this.getAxesByScale("ordinal")[0]||this.getAxesByScale("time")[0]||this.getAxis("x")},n.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]))},n.prototype.containData=function(t){return this.getAxis("x").containData(t[0])&&this.getAxis("y").containData(t[1])},n.prototype.containZone=function(t,e){var n=this.dataToPoint(t),i=this.dataToPoint(e),r=this.getArea(),o=new lg(n[0],n[1],i[0]-n[0],i[1]-n[1]);return r.intersect(o)},n.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 tt(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},n.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},n.prototype.pointToData=function(t,e,n){if(n=n||[],this._invTransform)return tt(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},n.prototype.getOtherAxis=function(t){return this.getAxis("x"===t.dim?"y":"x")},n.prototype.getArea=function(t){t=t||0;var e=this.getAxis("x").getGlobalExtent(),n=this.getAxis("y").getGlobalExtent(),i=Math.min(e[0],e[1])-t,r=Math.min(n[0],n[1])-t,o=Math.max(e[0],e[1])-i+t,a=Math.max(n[0],n[1])-r+t;return new lg(i,r,o,a)},n}(vI);const wI=xI;var bI=kn(),SI=kn(),CI=1,MI=2,TI=bc("axisTick"),II=bc("axisLabel"),kI=[0,1],DI=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(this.scale.parse(t))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.getPixelPrecision=function(t){return an(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(i.parse(t)),this.onBand&&"ordinal"===i.type&&Dc(n=n.slice(),i.count()),en(t,kI,n,e)},t.prototype.coordToData=function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&Dc(n=n.slice(),i.count());var r=en(t,n,kI,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=h(function(t,e,n){var i=t.getTickModel().get("customValues");if(i){var r=t.scale.getExtent();return{ticks:p(xc(t,i),function(t){return t>=r[0]&&t<=r[1]})}}return"category"===t.type?function(t,e){var n,i,r=TI(t),o=dc(e),a=Sc(r,o);if(a)return a;if(e.get("show")&&!t.scale.isBlank()||(n=[]),m(o))n=kc(t,o,!0);else if("auto"===o){var s=wc(t,t.getLabelModel(),_c(MI));i=s.labelCategoryInterval,n=h(s.labels,function(t){return t.tickValue})}else n=Ic(t,i=o,!0);return Cc(r,o,{ticks:n,tickCategoryInterval:i})}(t,e):{ticks:h(t.scale.getTicks(n),function(t){return t.value})}}(this,e,{breakTicks:t.breakTicks,pruneByBreak:t.pruneByBreak}).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){function r(t,e){return t=rn(t),e=rn(e),h?t>e:ts[1];r(e[0].coord,s[0])&&(i?e[0].coord=s[0]:e.shift()),i&&r(s[0],e[0].coord)&&e.unshift({coord:s[0],onBand:!0}),r(s[1],a.coord)&&(i?a.coord=s[1]:e.pop()),i&&r(a.coord,s[1])&&e.push({coord:s[1],onBand:!0})}}(this,n,e.get("alignWithLabel"),t.clamp),n},t.prototype.getMinorTicksCoords=function(){if("ordinal"===this.scale.type)return[];var t=this.model.getModel("minorTick").get("splitNumber");return t>0&&t<100||(t=5),h(this.scale.getMinorTicks(t),function(t){return h(t,function(t){return{coord:this.dataToCoord(t),tickValue:t}},this)},this)},t.prototype.getViewLabels=function(t){return function(t,e){var n=t.getLabelModel().get("customValues");if(n){var i=cc(t),r=t.scale.getExtent();return{labels:h(p(xc(t,n),function(t){return t>=r[0]&&t<=r[1]}),function(e){var n={value:e};return{formattedLabel:i(n),rawLabel:t.scale.getLabel(n),tickValue:e,time:void 0,break:void 0}})}}return"category"===t.type?function(t,e){var n=t.getLabelModel(),i=wc(t,n,e);return!n.get("show")||t.scale.isBlank()?{labels:[]}:i}(t,e):function(t){var e=t.scale.getTicks(),n=cc(t);return{labels:h(e,function(e,i){return{formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e.value,time:e.time,break:e.break}})}}(t)}(this,t=t||_c(MI)).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(t){return function(t,e){var n=e.kind,i=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),r=cc(t),o=(i.axisRotate-i.labelRotate)/180*Math.PI,a=t.scale,s=a.getExtent(),l=a.count();if(s[1]-s[0]<1)return 0;var u=1;l>40&&(u=Math.max(1,Math.floor(l/40)));for(var c=s[0],h=t.dataToCoord(c+1)-t.dataToCoord(c),d=Math.abs(h*Math.cos(o)),p=Math.abs(h*Math.sin(o)),f=0,g=0;c<=s[1];c+=u){var y,m=Ue(r({value:c}),i.font,"center","top");y=1.3*m.height,f=Math.max(f,1.3*m.width,7),g=Math.max(g,y,7)}var v=f/d,_=g/p;isNaN(v)&&(v=1/0),isNaN(_)&&(_=1/0);var x=Math.max(0,Math.floor(Math.min(v,_)));if(n===CI)return e.out.noPxChangeTryDetermine.push(_f(Mc,null,t,x,l)),x;var w=Tc(t,x,l);return null!=w?w:x}(this,t=t||_c(MI))},t}(),AI=function(e){function n(t,n,i,r,o){var a=e.call(this,t,n,i)||this;return a.index=0,a.type=r||"value",a.position=o||"bottom",a}return t(n,e),n.prototype.isHorizontal=function(){var t=this.position;return"top"===t||"bottom"===t},n.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},n.prototype.pointToData=function(t,e){return this.coordToData(this.toLocalCoord(t["x"===this.dim?0:1]),e)},n.prototype.setCategorySortInfo=function(t){if("category"!==this.type)return!1;this.model.option.categorySortInfo=t,this.scale.setSortInfo(t)},n}(DI);const LI=AI;var OI=["label","labelLine","layoutOption","priority","defaultAttr","marginForce","minMarginForce","marginDefault","suggestIgnore"],PI=[0,0,0,0],RI="expandAxisBreak",NI=Math.PI,zI=[[1,2,1,2],[5,3,5,3],[8,3,8,3]],EI=[[0,1,0,1],[0,3,0,3],[0,3,0,3]],BI=kn(),VI=kn(),FI=function(){function t(t){this.recordMap={},this.resolveAxisNameOverlap=t}return t.prototype.ensureRecord=function(t){var e=t.axis.dim,n=t.componentIndex,i=this.recordMap,r=i[e]||(i[e]=[]);return r[n]||(r[n]={ready:{}})},t}(),HI=[1,0,0,1,0,0],WI=new lg(0,0,0,0),GI=function(t,e,n,i,r,o){if(gc(t.nameLocation)){var a=o.stOccupiedRect;a&&zc(function(t,e,n){return t.transform=ss(t.transform,n),t.localRect=as(t.localRect,e),t.rect=as(t.rect,e),n&&t.rect.applyTransform(n),t.axisAligned=os(n),t.obb=void 0,(t.label=t.label||{}).ignore=!1,t}({},a,o.transGroup.transform),i,r)}else Ec(o.labelInfoList,o.dirVec,i,r)},UI=function(){function t(t,e,n,i){this.group=new Ny,this._axisModel=t,this._api=e,this._local={},this._shared=i||new FI(GI),this._resetCfgDetermined(n)}return t.prototype.updateCfg=function(t){var e=this._cfg.raw;e.position=t.position,e.labelOffset=t.labelOffset,this._resetCfgDetermined(e)},t.prototype.__getRawCfg=function(){return this._cfg.raw},t.prototype._resetCfgDetermined=function(t){var e=this._axisModel,n=e.getDefaultOption?e.getDefaultOption():{},i=k(t.axisName,e.get("name")),r=e.get("nameMoveOverlap");null!=r&&"auto"!==r||(r=k(t.defaultNameMoveOverlap,!0));var o={raw:t,position:t.position,rotation:t.rotation,nameDirection:k(t.nameDirection,1),tickDirection:k(t.tickDirection,1),labelDirection:k(t.labelDirection,1),labelOffset:k(t.labelOffset,0),silent:k(t.silent,!0),axisName:i,nameLocation:D(e.get("nameLocation"),n.nameLocation,"end"),shouldNameMoveOverlap:Uc(i)&&r,optionHideOverlap:e.get(["axisLabel","hideOverlap"]),showMinorTicks:e.get(["minorTick","show"])};this._cfg=o;var a=new Ny({x:o.position[0],y:o.position[1],rotation:o.rotation});a.updateTransform(),this._transformGroup=a;var s=this._shared.ensureRecord(e);s.transGroup=this._transformGroup,s.dirVec=new jf(Math.cos(-o.rotation),Math.sin(-o.rotation))},t.prototype.build=function(t,e){var n=this;return t||(t={axisLine:!0,axisTickLabelEstimate:!1,axisTickLabelDetermine:!0,axisName:!0}),c(jI,function(i){t[i]&&ZI[i](n._cfg,n._local,n._shared,n._axisModel,n.group,n._transformGroup,n._api,e||{})}),this},t.innerTextLayout=function(t,e,n){var i,r,o=ln(e-t);return un(o)?(r=n>0?"top":"bottom",i="center"):un(o-NI)?(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}(),jI=["axisLine","axisTickLabelEstimate","axisTickLabelDetermine","axisName"],ZI={axisLine:function(t,e,n,i,r,a,s){var l=i.get(["axisLine","show"]);if("auto"===l&&(l=!0,null!=t.raw.axisLineAutoShow&&(l=!!t.raw.axisLineAutoShow)),l){var u=i.axis.getExtent(),h=a.transform,d=[u[0],0],p=[u[1],0],f=d[0]>p[0];h&&(tt(d,d,h),tt(p,p,h));var g=o({lineCap:"round"},i.getModel(["axisLine","lineStyle"]).getLineStyle()),y={strokeContainThreshold:t.raw.strokeContainThreshold||5,silent:!0,z2:1,style:g};if(i.get(["axisLine","breakLine"])&&i.axis.scale.hasBreaks())Vu().buildAxisBreakLine(i,r,a,y);else{var m=new hb(o({shape:{x1:d[0],y1:d[1],x2:p[0],y2:p[1]}},y));Ha(m.shape,m.style.lineWidth),m.anid="line",r.add(m)}var _=i.get(["axisLine","symbol"]);if(null!=_){var w=i.get(["axisLine","symbolSize"]);v(_)&&(_=[_,_]),(v(w)||x(w))&&(w=[w,w]);var b=zs(i.get(["axisLine","symbolOffset"])||0,w),S=w[0],C=w[1];c([{rotate:t.rotation+Math.PI/2,offset:b[0],r:0},{rotate:t.rotation-Math.PI/2,offset:b[1],r:Math.sqrt((d[0]-p[0])*(d[0]-p[0])+(d[1]-p[1])*(d[1]-p[1]))}],function(e,n){if("none"!==_[n]&&null!=_[n]){var i=Rs(_[n],-S/2,-C/2,S,C,g.stroke,!0),o=e.r+e.offset,a=f?p:d;i.attr({rotation:e.rotate,x:a[0]+o*Math.cos(t.rotation),y:a[1]-o*Math.sin(t.rotation),silent:!0,z2:11}),r.add(i)}})}}},axisTickLabelEstimate:function(t,e,n,i,r,o,a,s){Hc(e,r,s)&&Bc(t,e,n,i,r,o,a,CI)},axisTickLabelDetermine:function(t,e,n,i,r,o,s,l){Hc(e,r,l)&&Bc(t,e,n,i,r,o,s,MI);var u=function(t,e,n,i){var r=i.axis,o=i.getModel("axisTick"),s=o.get("show");if("auto"===s&&(s=!0,null!=t.raw.axisTickAutoShow&&(s=!!t.raw.axisTickAutoShow)),!s||r.scale.isBlank())return[];for(var l=o.getModel("lineStyle"),u=t.tickDirection*o.get("length"),c=Fc(r.getTicksCoords(),n.transform,u,a(l.getLineStyle(),{stroke:i.get(["axisLine","lineStyle","color"])}),"ticks"),h=0;hi[1],l="start"===e&&!s||"start"!==e&&s;return un(a-NI/2)?(o=l?"bottom":"top",r="center"):un(a-1.5*NI)?(o=l?"top":"bottom",r="center"):(o="middle",r=a<1.5*NI&&a>NI/2?l?"left":"right":l?"right":"left"),{rotation:a,textAlign:r,textVerticalAlign:o}}(t.rotation,c,w||0,f),null!=(x=t.raw.axisNameAvailableWidth)&&(x=Math.abs(x/Math.sin(_.rotation)),!isFinite(x)&&(x=null)));var b=d.getFont(),S=i.get("nameTruncate",!0)||{},C=S.ellipsis,M=I(t.raw.nameTruncateMaxWidth,S.maxWidth,x),T=s.nameMarginLevel||0,k=new Cv({x:y.x,y:y.y,rotation:_.rotation,silent:UI.isLabelSilent(i),style:cr(d,{text:u,font:b,overflow:"truncate",width:M,ellipsis:C,fill:d.getTextColor()||i.get(["axisLine","lineStyle","color"]),align:d.get("align")||_.textAlign,verticalAlign:d.get("verticalAlign")||_.textVerticalAlign}),z2:1});if(ns({el:k,componentModel:i,itemName:u}),k.__fullText=u,k.anid="name",i.get("triggerEvent")){var D=UI.makeAxisEventDataBase(i);D.targetType="axisName",D.name=u,Mv(k).eventData=D}o.add(k),k.updateTransform(),e.nameEl=k;var A=l.nameLayout=Oc({label:k,priority:k.z2,defaultAttr:{ignore:k.ignore},marginDefault:gc(c)?zI[T]:EI[T]});if(l.nameLocation=c,r.add(k),k.decomposeTransform(),t.shouldNameMoveOverlap&&A){var L=n.ensureRecord(i);n.resolveAxisNameOverlap(t,n,i,A,m,L)}}}},YI=new yv,XI=new yv;const qI=UI;var $I=[[3,1],[0,2]],KI=function(){function t(t,e,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=_I,this._initCartesian(t,e,n),this.model=t}return t.prototype.getRect=function(){return this._rect},t.prototype.update=function(t,e){function n(t){var e,n=f(t),i=n.length;if(i){for(var r=[],o=i-1;o>=0;o--){var a=t[+n[o]],s=a.model,l=a.scale;Wu(l)&&s.get("alignTicks")&&null==s.get("interval")?r.push(a):(uc(l,s),Wu(l)&&(e=a))}r.length&&(e||uc((e=r.pop()).scale,e.model),c(r,function(t){!function(t,e,n){var i=iI.prototype,r=i.getTicks.call(n),o=i.getTicks.call(n,{expandToNicedExtent:!0}),a=r.length-1,s=i.getInterval.call(n),l=lc(t,e),u=l.extent,c=l.fixMin,h=l.fixMax;"log"===t.type&&(u=qu(t.base,u,!0)),t.setBreaksFromOption(mc(e)),t.setExtent(u[0],u[1]),t.calcNiceExtent({splitNumber:a,fixMin:c,fixMax:h});var d=i.getExtent.call(t);c&&(u[0]=d[0]),h&&(u[1]=d[1]);var p=i.getInterval.call(t),f=u[0],g=u[1];if(c&&h)p=(g-f)/a;else if(c)for(g=u[0]+p*a;gu[0]&&isFinite(f)&&isFinite(u[0]);)p=Gu(p),f=u[1]-p*a;else{t.getTicks().length-1>a&&(p=Gu(p));var y=p*a;(f=rn((g=Math.ceil(u[1]/p)*p)-y))<0&&u[0]>=0?(f=0,g=rn(y)):g>0&&u[1]<=0&&(g=0,f=-rn(y))}var m=(r[0].value-o[0].value)/s,v=(r[a].value-o[a].value)/s;i.setExtent.call(t,f+p*m,g+p*v),i.setInterval.call(t,p),(m||v)&&i.setNiceExtent.call(t,f+p,g-p)}(t.scale,t.model,e.scale)}))}}var i=this._axesMap;this._updateScale(t,this.model),n(i.x),n(i.y);var r={};c(i.x,function(t){Xc(i,"y",t,r)}),c(i.y,function(t){Xc(i,"x",t,r)}),this.resize(this.model,e)},t.prototype.resize=function(t,e,n){var i=Zr(t,e),r=this._rect=jr(t.getBoxLayoutParams(),i.refContainer),o=this._axesMap,a=this._coordsList,l=t.get("containLabel");if($c(o,r),!n){var u=function(t,e,n,i,r){var o=new FI(JI);return c(n,function(n){return c(n,function(n){yc(n.model)&&(n.axisBuilder=function(t,e,n,i,r,o){for(var a=jc(t,n),s=!1,l=!1,u=0;ul[1]&&l.reverse(),(null==a||a>l[1])&&(a=l[1]),aa)return!0;if(o){var s=eh(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=hk(t).pointerEl=new qp[r.type](dk(e.pointer));t.add(o)}},t.prototype.createLabelEl=function(t,e,n,i){if(e.label){var r=hk(t).labelEl=new Cv(dk(e.label));t.add(r),sh(r,i)}},t.prototype.updatePointerEl=function(t,e,n){var i=hk(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=hk(t).labelEl;r&&(r.setStyle(e.label.style),n(r,{x:e.label.x,y:e.label.y}),sh(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=$a(o.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){Hf(t.event)},onmousedown:pk(this._onHandleDragMove,this,0,0),drift:pk(this._onHandleDragMove,this),ondragend:pk(this._onHandleDragEnd,this)}),i.add(r)),uh(r,n,!1),r.setStyle(o.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var s=o.get("size");y(s)||(s=[s,s]),r.scaleX=s[0]/2,r.scaleY=s[1]/2,ms(this,"_doDispatchAxisPointer",o.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},t.prototype._moveHandleToValue=function(t,e){oh(this._axisPointerModel,!e&&this._moveAnimation,this._handle,lh(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(lh(n),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=i,n.stopAnimation(),n.attr(lh(i)),hk(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),vs(this,"_doDispatchAxisPointer")},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}(),gk=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.makeElOption=function(t,e,n,i,r){var o=n.axis,a=o.grid,s=i.get("type"),l=dh(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(e,!0));if(s&&"none"!==s){var c=function(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}(i),h=yk[s](o,u,l);h.style=c,t.graphicKey=h.type,t.pointer=h}!function(t,e,n,i,r,o){var a=qI.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=r.get(["label","margin"]),function(t,e,n,i,r){var o=ch(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=S_(a.get("padding")||0),l=a.getFont(),u=Ue(o,l),c=r.position,h=u.width+s[1]+s[3],d=u.height+s[0]+s[2],p=r.align;"right"===p&&(c[0]-=h),"center"===p&&(c[0]-=h/2);var f=r.verticalAlign;"bottom"===f&&(c[1]-=d),"middle"===f&&(c[1]-=d/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)}(c,h,d,i);var g=a.get("backgroundColor");g&&"auto"!==g||(g=e.get(["axisLine","lineStyle","color"])),t.label={x:c[0],y:c[1],style:cr(a,{text:o,font:l,fill:a.getTextColor(),padding:s,backgroundColor:g}),z2:10}}(e,i,r,o,{position:hh(i.axis,t,n),align:a.textAlign,verticalAlign:a.textVerticalAlign})}(e,t,jc(a.getRect(),n),n,i,r)},n.prototype.getHandleTransform=function(t,e,n){var i=jc(e.axis.grid.getRect(),e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=hh(e.axis,t,i);return{x:r[0],y:r[1],rotation:i.rotation+(i.labelDirection<0?Math.PI:0)}},n.prototype.updateHandleTransform=function(t,e,n,i){var r=n.axis,o=r.grid,a=r.getGlobalExtent(!0),s=dh(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 c=(s[1]+s[0])/2,h=[c,c];return h[l]=u[l],{x:u[0],y:u[1],rotation:t.rotation,cursorPoint:h,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][l]}},n}(fk),yk={line:function(t,e,n){var i,r,o;return{type:"Line",subPixelOptimize:!0,shape:(i=[e,n[0]],r=[e,n[1]],o=ph(t),{x1:i[o=o||0],y1:i[1-o],x2:r[o],y2:r[1-o]})}},shadow:function(t,e,n){var i,r,o,a=Math.max(1,t.getBandWidth());return{type:"Rect",shape:(i=[e-a/2,n[0]],r=[a,n[1]-n[0]],o=ph(t),{x:i[o=o||0],y:i[1-o],width:r[o],height:r[1-o]})}}};const mk=gk,vk=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.type="axisPointer",n.defaultOption={show:"auto",z:50,type:"line",snap:!1,triggerTooltip:!0,triggerEmphasis:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:X_.color.border,width:1,type:"dashed"},shadowStyle:{color:X_.color.shadowTint},label:{show:!0,formatter:null,precision:"auto",margin:3,color:X_.color.neutral00,padding:[5,7,5,7],backgroundColor:X_.color.accent60,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:X_.color.accent40,throttle:40}},n}(G_);var _k=kn(),xk=c,wk=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.prototype.render=function(t,e,n){var i=e.getComponent("tooltip"),r=t.get("triggerOn")||i&&i.get("triggerOn")||"mousemove|click";fh("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})})},n.prototype.remove=function(t,e){mh("axisPointer",e)},n.prototype.dispose=function(t,e){mh("axisPointer",e)},n.type="axisPointer",n}(ww);const bk=wk;var Sk=kn();const Ck=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.type="tooltip",n.dependencies=["axisPointer"],n.defaultOption={z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,displayTransition:!0,enterable:!1,backgroundColor:X_.color.neutral00,shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,defaultBorderColor:X_.color.border,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:X_.color.borderShade,width:1,type:"dashed",textStyle:{}}},textStyle:{color:X_.color.tertiary,fontSize:14}},n}(G_);var Mk=Ih(["transform","webkitTransform","OTransform","MozTransform","msTransform"]),Tk=kh(Ih(["webkitTransition","transition","OTransition","MozTransition","msTransition"]),"transition"),Ik=kh(Mk,"transform"),kk="position:absolute;display:block;border-style:solid;white-space:nowrap;z-index:9999999;"+(Qp.transform3dSupported?"will-change:transform;":""),Dk=function(){function t(t,e){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._alwaysShowContent=!1,this._firstShow=!0,this._longHide=!0,Qp.wxa)return null;var n=document.createElement("div");n.domBelongToZr=!0,this.el=n;var i=this._zr=t.getZr(),r=e.appendTo,o=r&&(v(r)?document.querySelector(r):C(r)?r:m(r)&&r(t.getDom()));Ah(this._styleCoord,i,o,t.getWidth()/2,t.getHeight()/2),(o||t.getDom()).appendChild(n),this._api=t,this._container=o;var a=this;n.onmouseenter=function(){a._enterable&&(clearTimeout(a._hideTimeout),a._show=!0),a._inContent=!0},n.onmousemove=function(t){if(t=t||window.event,!a._enterable){var e=i.handler;ht(i.painter.getViewportRoot(),t,!0),e.dispatch("mousemove",t)}},n.onmouseleave=function(){a._inContent=!1,a._enterable&&a._show&&a.hideLater(a._hideDelay)}}return t.prototype.update=function(t){if(!this._container){var e=this._api.getDom(),n=(o="position",(a=(r=e).currentStyle||document.defaultView&&document.defaultView.getComputedStyle(r))?o?a[o]:a:null),i=e.style;"absolute"!==i.position&&"absolute"!==n&&(i.position="relative")}var r,o,a,s=t.get("alwaysShowContent");s&&this._moveIfResized(),this._alwaysShowContent=s,this._enableDisplayTransition=t.get("displayTransition")&&t.get("transitionDuration")>0,this.el.className=t.get("className")||""},t.prototype.show=function(t,e){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,i=n.style,r=this._styleCoord;n.innerHTML?i.cssText=kk+function(t,e,n,i){var r=[],o=t.get("transitionDuration"),a=t.get("backgroundColor"),s=t.get("shadowBlur"),l=t.get("shadowColor"),u=t.get("shadowOffsetX"),h=t.get("shadowOffsetY"),d=t.getModel("textStyle"),p=oa(t,"html");return r.push("box-shadow:"+u+"px "+h+"px "+s+"px "+l),e&&o>0&&r.push(function(t,e,n){var i="cubic-bezier(0.23,1,0.32,1)",r="",o="";return n&&(o="opacity"+(r=" "+t/2+"s "+i)+",visibility"+r),e||(r=" "+t+"s "+i,o+=(o.length?",":"")+(Qp.transformSupported?""+Ik+r:",left"+r+",top"+r)),Tk+":"+o}(o,n,i)),a&&r.push("background-color:"+a),c(["width","color","radius"],function(e){var n="border-"+e,i=Br(n),o=t.get(i);null!=o&&r.push(n+":"+o+("color"===e?"":"px"))}),r.push(function(t){var e=[],n=t.get("fontSize"),i=t.getTextColor();i&&e.push("color:"+i),e.push("font:"+t.getFont());var r=k(t.get("lineHeight"),Math.round(3*n/2));n&&e.push("line-height:"+r+"px");var o=t.get("textShadowColor"),a=t.get("textShadowBlur")||0,s=t.get("textShadowOffsetX")||0,l=t.get("textShadowOffsetY")||0;return o&&a&&e.push("text-shadow:"+s+"px "+l+"px "+a+"px "+o),c(["decoration","align"],function(n){var i=t.get(n);i&&e.push("text-"+n+":"+i)}),e.join(";")}(d)),null!=p&&r.push("padding:"+S_(p).join("px ")+"px"),r.join(";")+";"}(t,!this._firstShow,this._longHide,this._enableDisplayTransition)+Dh(r[0],r[1],!0)+"border-color:"+Hr(e)+";"+(t.get("extraCssText")||"")+";pointer-events:"+(this._enterable?"auto":"none"):i.display="none",this._show=!0,this._firstShow=!1,this._longHide=!1},t.prototype.setContent=function(t,e,n,i,r){var o=this.el;if(null!=t){var a="";if(v(r)&&"item"===n.get("trigger")&&!Th(n)&&(a=function(t,e,n){if(!v(n)||"inside"===n)return"";var i=t.get("backgroundColor"),r=t.get("borderWidth");e=Hr(e);var o,a,l="left"===(o=n)?"right":"right"===o?"left":"top"===o?"bottom":"top",u=Math.max(1.5*Math.round(r),6),c="",h=Ik+":";s(["left","right"],l)>-1?(c+="top:50%",h+="translateY(-50%) rotate("+(a="left"===l?-225:-45)+"deg)"):(c+="left:50%",h+="translateX(-50%) rotate("+(a="top"===l?225:45)+"deg)");var d=a*Math.PI/180,p=u+r,f=p*Math.abs(Math.cos(d))+p*Math.abs(Math.sin(d)),g=e+" solid "+r+"px;";return'
'}(n,i,r)),v(t))o.innerHTML=t+a;else if(t){o.innerHTML="",y(t)||(t=[t]);for(var l=0;l=0?this._tryShow(n,i):"leave"===e&&this._hide(i))},this))},n.prototype._keepShow=function(){var t=this._tooltipModel,e=this._ecModel,n=this._api,i=t.get("triggerOn");if(null!=this._lastX&&null!=this._lastY&&"none"!==i&&"click"!==i){var r=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout(function(){!n.isDisposed()&&r.manuallyShowTip(t,e,n,{x:r._lastX,y:r._lastY,dataByCoordSys:r._lastDataByCoordSys})})}},n.prototype.manuallyShowTip=function(t,e,n,i){if(i.from!==this.uid&&!Qp.node&&n.getDom()){var r=Nh(i,n);this._ticket="";var o=i.dataByCoordSys,a=function(t,e,n){var i=An(t).queryOptionMap,r=i.keys()[0];if(r&&"series"!==r){var o,a=Ln(e,r,i.get(r),{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];if(a)return n.getViewOfComponentModel(a).group.traverse(function(e){var n=Mv(e).tooltipConfig;if(n&&n.name===t.name)return o=e,!0}),o?{componentMainType:r,componentIndex:a.componentIndex,el:o}:void 0}}(i,e,n);if(a){var s=a.el.getBoundingRect().clone();s.applyTransform(a.el.transform),this._tryShow({offsetX:s.x+s.width/2,offsetY:s.y+s.height/2,target:a.el,position:i.position,positionDefault:"bottom"},r)}else if(i.tooltip&&null!=i.x&&null!=i.y){var l=Ok;l.x=i.x,l.y=i.y,l.update(),Mv(l).tooltipConfig={name:null,option:i.tooltip},this._tryShow({offsetX:i.x,offsetY:i.y,target:l},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 u=vh(i,e),c=u.point[0],h=u.point[1];null!=c&&null!=h&&this._tryShow({offsetX:c,offsetY:h,target:u.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))}},n.prototype.manuallyHideTip=function(t,e,n,i){this._tooltipModel&&this._tooltipContent.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,i.from!==this.uid&&this._hide(Nh(i,n))},n.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&&"axis"===Rh([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}},n.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;if("legend"===Mv(n).ssrType)return;this._lastDataByCoordSys=null,Os(n,function(t){if(t.tooltipDisabled)return r=o=null,!0;r||o||(null!=Mv(t).dataIndex?r=t:null!=Mv(t).tooltipConfig&&(o=t))},!0),r?this._showSeriesItemTooltip(t,r,e):o?this._showComponentItemTooltip(t,o,e):this._hide(e)}else this._lastDataByCoordSys=null,this._hide(e)}},n.prototype._showOrMove=function(t,e){var n=t.get("showDelay");e=_f(e,this),clearTimeout(this._showTimout),n>0?this._showTimout=setTimeout(e,n):e()},n.prototype._showAxisTooltip=function(t,e){var n=this._ecModel,i=this._tooltipModel,r=[e.offsetX,e.offsetY],a=Rh([e.tooltipOption],i),s=this._renderMode,l=[],u=$o("section",{blocks:[],noHeader:!0}),h=[],d=new yw;c(t,function(t){c(t.dataByAxis,function(t){var e=n.getComponent(t.axisDim+"Axis",t.axisIndex),r=t.value;if(e&&null!=r){var a=ch(r,e.axis,n,t.seriesDataIndices,t.valueLabelOpt),p=$o("section",{header:a,noHeader:!P(a),sortBlocks:!0,blocks:[]});u.blocks.push(p),c(t.seriesDataIndices,function(u){var c=n.getSeriesByIndex(u.seriesIndex),f=u.dataIndexInside,g=c.getDataParams(f);if(!(g.dataIndex<0)){g.axisDim=t.axisDim,g.axisIndex=t.axisIndex,g.axisType=t.axisType,g.axisId=t.axisId,g.axisValue=hc(e.axis,{value:r}),g.axisValueLabel=a,g.marker=d.makeTooltipMarker("item",Hr(g.color),s);var y=Po(c.formatTooltip(f,!0,null)),m=y.frag;if(m){var v=Rh([c],i).get("valueFormatter");p.blocks.push(v?o({valueFormatter:v},m):m)}y.text&&h.push(y.text),l.push(g)}})}})}),u.blocks.reverse(),h.reverse();var p=e.position,f=a.get("order"),g=na(u,d,s,f,n.get("useUTC"),a.get("textStyle"));g&&h.unshift(g);var y=h.join("richText"===s?"\n\n":"
");this._showOrMove(a,function(){this._updateContentNotChangedOnAxis(t,l)?this._updatePosition(a,p,r[0],r[1],this._tooltipContent,l):this._showTooltipContent(a,y,l,Math.random()+"",r[0],r[1],p,null,d)})},n.prototype._showSeriesItemTooltip=function(t,e,n){var i=this._ecModel,r=Mv(e),a=r.seriesIndex,s=i.getSeriesByIndex(a),l=r.dataModel||s,u=r.dataIndex,c=r.dataType,h=l.getData(c),d=this._renderMode,p=t.positionDefault,f=Rh([h.getItemModel(u),l,s&&(s.coordinateSystem||{}).model],this._tooltipModel,p?{position:p}:null),g=f.get("trigger");if(null==g||"item"===g){var y=l.getDataParams(u,c),m=new yw;y.marker=m.makeTooltipMarker("item",Hr(y.color),d);var v=Po(l.formatTooltip(u,!1,c)),_=f.get("order"),x=f.get("valueFormatter"),w=v.frag,b=w?na(x?o({valueFormatter:x},w):w,m,d,_,i.get("useUTC"),f.get("textStyle")):v.text,S="item_"+l.name+"_"+u;this._showOrMove(f,function(){this._showTooltipContent(f,b,y,S,t.offsetX,t.offsetY,t.position,t.target,m)}),n({type:"showTip",dataIndexInside:u,dataIndex:h.getRawIndex(u),seriesIndex:a,from:this.uid})}},n.prototype._showComponentItemTooltip=function(t,e,n){var r="html"===this._renderMode,o=Mv(e),a=o.tooltipConfig.option||{},s=a.encodeHTMLContent;v(a)&&(a={content:a,formatter:a},s=!0),s&&r&&a.content&&((a=i(a)).content=st(a.content));var l=[a],u=this._ecModel.getComponent(o.componentMainType,o.componentIndex);u&&l.push(u),l.push({formatter:a.content});var c=t.positionDefault,h=Rh(l,this._tooltipModel,c?{position:c}:null),d=h.get("content"),p=Math.random()+"",f=new yw;this._showOrMove(h,function(){var n=i(h.get("formatterParams")||{});this._showTooltipContent(h,d,n,p,t.offsetX,t.offsetY,t.position,e,f)}),n({type:"showTip",from:this.uid})},n.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;u.setEnterable(t.get("enterable"));var c=t.get("formatter");a=a||t.get("position");var h=e,d=this._getNearestPoint([r,o],n,t.get("trigger"),t.get("borderColor"),t.get("defaultBorderColor",!0)).color;if(c)if(v(c)){var p=t.ecModel.get("useUTC"),f=y(n)?n[0]:n;h=c,f&&f.axisType&&f.axisType.indexOf("time")>=0&&(h=xr(f.axisValue,h,p)),h=Fr(h,n,!0)}else if(m(c)){var g=_f(function(e,i){e===this._ticket&&(u.setContent(i,l,t,d,a),this._updatePosition(t,a,r,o,u,n,s))},this);this._ticket=i,h=c(n,i,g)}else h=c;u.setContent(h,l,t,d,a),u.show(t,d),this._updatePosition(t,a,r,o,u,n,s)}},n.prototype._getNearestPoint=function(t,e,n,i,r){return"axis"===n||y(e)?{color:i||r}:y(e)?void 0:{color:i||e.color||e.borderColor}},n.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(),c=t.get("align"),h=t.get("verticalAlign"),d=a&&a.getBoundingRect().clone();if(a&&d.applyTransform(a.transform),m(e)&&(e=e([n,i],o,r.el,d,{viewSize:[s,l],contentSize:u.slice()})),y(e))n=Uy(e[0],s),i=Uy(e[1],l);else if(w(e)){var p=e;p.width=u[0],p.height=u[1];var f=jr(p,{width:s,height:l});n=f.x,i=f.y,c=null,h=null}else if(v(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,c=e.height;switch(t){case"inside":s=e.x+u/2-r/2,l=e.y+c/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+c+a;break;case"left":s=e.x-r-a,l=e.y+c/2-o/2;break;case"right":s=e.x+u+a,l=e.y+c/2-o/2}return[s,l]}(e,d,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];return null!=o&&(t+l+o+2>i?t-=l+o:t+=o),null!=a&&(e+u+a>r?e-=u+a:e+=a),[t,e]}(n,i,r,s,l,c?null:20,h?null:20),n=g[0],i=g[1];c&&(n-=zh(c)?u[0]/2:"right"===c?u[0]:0),h&&(i-=zh(h)?u[1]/2:"bottom"===h?u[1]:0),Th(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)]}(n,i,r,s,l),n=g[0],i=g[1]),r.moveTo(n,i)},n.prototype._updateContentNotChangedOnAxis=function(t,e){var n=this._lastDataByCoordSys,i=this._cbParamsList,r=!!n&&n.length===t.length;return r&&c(n,function(n,o){var a=n.dataByAxis||[],s=(t[o]||{}).dataByAxis||[];(r=r&&a.length===s.length)&&c(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)&&c(a,function(t,e){var n=l[e];r=r&&t.seriesIndex===n.seriesIndex&&t.dataIndex===n.dataIndex}),i&&c(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},n.prototype._hide=function(t){this._lastDataByCoordSys=null,t({type:"hideTip",from:this.uid})},n.prototype.dispose=function(t,e){!Qp.node&&e.getDom()&&(vs(this,"_updatePosition"),this._tooltipContent.dispose(),mh("itemTooltip",e))},n.type="tooltip",n}(ww);const Rk=Pk;var Nk=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.layoutMode={type:"box",ignoreSize:!0},t}return t(n,e),n.type="title",n.defaultOption={z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:"center",top:X_.size.m,backgroundColor:X_.color.transparent,borderColor:X_.color.primary,borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:X_.color.primary},subtextStyle:{fontSize:12,color:X_.color.quaternary}},n}(G_),zk=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.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=k(t.get("textBaseline"),t.get("textVerticalAlign")),l=new Cv({style:cr(r,{text:t.get("text"),fill:r.getTextColor()},{disableBox:!0}),z2:10}),u=l.getBoundingRect(),c=t.get("subtext"),h=new Cv({style:cr(o,{text:c,fill:o.getTextColor(),y:u.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),d=t.get("link"),p=t.get("sublink"),f=t.get("triggerEvent",!0);l.silent=!d&&!f,h.silent=!p&&!f,d&&l.on("click",function(){Wr(d,"_"+t.get("target"))}),p&&h.on("click",function(){Wr(p,"_"+t.get("subtarget"))}),Mv(l).eventData=Mv(h).eventData=f?{componentType:"title",componentIndex:t.componentIndex}:null,i.add(l),c&&i.add(h);var g=i.getBoundingRect(),y=t.getBoxLayoutParams();y.width=g.width,y.height=g.height;var m=jr(y,Zr(t,n).refContainer,t.get("padding"));a||("middle"===(a=t.get("left")||t.get("right"))&&(a="center"),"right"===a?m.x+=m.width:"center"===a&&(m.x+=m.width/2)),s||("center"===(s=t.get("top")||t.get("bottom"))&&(s="middle"),"bottom"===s?m.y+=m.height:"middle"===s&&(m.y+=m.height/2),s=s||"top"),i.x=m.x,i.y=m.y,i.markRedraw();var v={align:a,verticalAlign:s};l.setStyle(v),h.setStyle(v),g=i.getBoundingRect();var _=m.margin,x=t.getItemStyle(["color","opacity"]);x.fill=t.get("backgroundColor");var w=new yv({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(w)}},n.type="title",n}(ww),Ek=["x","y","radius","angle","single"],Bk=["cartesian2d","polar","singleAxis"],Vk=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}();const Fk=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.type="dataZoom.select",n}(function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t._autoThrottle=!0,t._noTarget=!0,t._rangePropMode=["percent","percent"],t}return t(n,e),n.prototype.init=function(t,e,n){var i=Bh(t);this.settledOption=i,this.mergeDefaultAndTheme(t,n),this._doInit(i)},n.prototype.mergeOption=function(t){var e=Bh(t);r(this.option,t,!0),r(this.settledOption,e,!0),this._doInit(e)},n.prototype._doInit=function(t){var e=this.option;this._setDefaultThrottle(t),this._updateRangeUse(t);var n=this.settledOption;c([["start","startValue"],["end","endValue"]],function(t,i){"value"===this._rangePropMode[i]&&(e[t[0]]=n[t[0]]=null)},this),this._resetTarget()},n.prototype._resetTarget=function(){var t=this.get("orient",!0),e=this._targetAxisInfoMap=z();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)},n.prototype._fillSpecifiedTargetAxis=function(t){var e=!1;return c(Ek,function(n){var i=this.getReferringComponents(Eh(n),Ky);if(i.specified){e=!0;var r=new Vk;c(i.models,function(t){r.add(t.componentIndex)}),t.set(n,r)}},this),e},n.prototype._fillAutoTargetAxisByOrient=function(t,e){function n(e,n){var i=e[0];if(i){var o=new Vk;if(o.add(i.componentIndex),t.set(n,o),r=!1,"x"===n||"y"===n){var a=i.getReferringComponents("grid",$y).models[0];a&&c(e,function(t){i.componentIndex!==t.componentIndex&&a===t.getReferringComponents("grid",$y).models[0]&&o.add(t.componentIndex)})}}}var i=this.ecModel,r=!0;if(r){var o="vertical"===e?"y":"x";n(i.findComponents({mainType:o+"Axis"}),o)}r&&n(i.findComponents({mainType:"singleAxis",filter:function(t){return t.get("orient",!0)===e}}),"single"),r&&c(Ek,function(e){if(r){var n=i.findComponents({mainType:Eh(e),filter:function(t){return"category"===t.get("type",!0)}});if(n[0]){var o=new Vk;o.add(n[0].componentIndex),t.set(e,o),r=!1}}},this)},n.prototype._makeAutoOrientByTargetAxis=function(){var t;return this.eachTargetAxis(function(e){!t&&(t=e)},this),"y"===t?"vertical":"horizontal"},n.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}},n.prototype._updateRangeUse=function(t){var e=this._rangePropMode,n=this.get("rangeMode");c([["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")})},n.prototype.noTarget=function(){return this._noTarget},n.prototype.getFirstTargetAxisModel=function(){var t;return this.eachTargetAxis(function(e,n){null==t&&(t=this.ecModel.getComponent(Eh(e),n))},this),t},n.prototype.eachTargetAxis=function(t,e){this._targetAxisInfoMap.each(function(n,i){c(n.indexList,function(n){t.call(e,i,n)})})},n.prototype.getAxisProxy=function(t,e){var n=this.getAxisModel(t,e);if(n)return n.__dzAxisProxy},n.prototype.getAxisModel=function(t,e){var n=this._targetAxisInfoMap.get(t);if(n&&n.indexMap[e])return this.ecModel.getComponent(Eh(t),e)},n.prototype.setRawRange=function(t){var e=this.option,n=this.settledOption;c([["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)},n.prototype.setCalculatedRange=function(t){var e=this.option;c(["start","startValue","end","endValue"],function(n){e[n]=t[n]})},n.prototype.getPercentRange=function(){var t=this.findRepresentativeAxisProxy();if(t)return t.getDataPercentWindow()},n.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},n.prototype.findRepresentativeAxisProxy=function(t){if(t)return t.__dzAxisProxy;for(var e,n=this._targetAxisInfoMap.keys(),i=0;i=0}(e)){var n=Eh(this._dimName),i=e.getReferringComponents(n,$y).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 i(this._minMaxSpan)},t.prototype.calculateDataWindow=function(t){function e(t,e,n,i,o){var a=o?"Span":"ValueSpan";Vh(0,t,n,"all",u["min"+a],u["max"+a]);for(var s=0;s<2;s++)e[s]=en(t[s],n,i,!0),o&&(e[s]=r.parse(e[s]))}var n,i=this._dataExtent,r=this.getAxisModel().axis.scale,o=this._dataZoomModel.getRangePropMode(),a=[0,100],s=[],l=[];Wk(["start","end"],function(e,u){var c=t[e],h=t[e+"Value"];"percent"===o[u]?(null==c&&(c=a[u]),h=r.parse(en(c,a,i))):(n=!0,c=en(h=null==h?i[u]:r.parse(h),i,a)),l[u]=null==h||isNaN(h)?i[u]:h,s[u]=null==c||isNaN(c)?a[u]:c}),Gk(l),Gk(s);var u=this._minMaxSpan;return n?e(l,s,i,a,!1):e(s,l,a,i,!0),{valueWindow:l,percentWindow:s}},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];Wk(n,function(t){!function(t,e,n){e&&c(fc(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=ac(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&&Wk(i,function(t){var e=t.getData(),i=e.mapDimensionsAll(n);if(i.length){if("weakFilter"===r){var a=e.getStore(),s=h(i,function(t){return e.getDimensionIndex(t)},e);e.filterSelf(function(t){for(var e,n,r,l=0;lo[1];if(c&&!h&&!d)return!0;c&&(r=!0),h&&(e=!0),d&&(n=!0)}return r&&e&&n})}else Wk(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)}});Wk(i,function(t){e.setApproximateExtent(o,t)})}})}},t.prototype._updateMinMaxSpan=function(){var t=this._minMaxSpan={},e=this._dataZoomModel,n=this._dataExtent;Wk(["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=en(n[0]+o,n,[0,100],!0):null!=r&&(o=en(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=an(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}();const jk=Uk,Zk={getTargetSeries:function(t){function e(e){t.eachComponent("dataZoom",function(n){n.eachTargetAxis(function(i,r){var o=t.getComponent(Eh(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 jk(e,i,o,t),n.push(r.__dzAxisProxy))});var i=z();return c(n,function(t){c(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 Yk=!1,Xk=function(){},qk={};const $k=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}return t(n,e),n.prototype.optionUpdated=function(){e.prototype.optionUpdated.apply(this,arguments);var t=this.ecModel;c(this.option.feature,function(e,n){var i=Uh(n);i&&(i.getDefaultOption&&(i.defaultOption=i.getDefaultOption(t)),r(e,i.defaultOption))})},n.type="toolbox",n.layoutMode={type:"box",ignoreSize:!0},n.defaultOption={show:!0,z:6,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:X_.color.border,borderRadius:0,borderWidth:0,padding:X_.size.m,itemSize:15,itemGap:X_.size.s,showTitle:!0,iconStyle:{borderColor:X_.color.accent50,color:"none"},emphasis:{iconStyle:{borderColor:X_.color.accent50}},tooltip:{show:!1,position:"bottom"}},n}(G_);var Kk=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.render=function(t,e,n,i){function r(r,d){var p,f=h[r],g=h[d],y=l[f],m=new i_(y,t,t.ecModel);if(i&&null!=i.newTitle&&i.featureName===f&&(y.title=i.newTitle),f&&!g){if(function(t){return 0===t.indexOf("my")}(f))p={onclick:m.option.onclick,featureName:f};else{var _=Uh(f);if(!_)return;p=new _}u[f]=p}else if(!(p=u[g]))return;p.uid=fr("toolbox-feature"),p.model=m,p.ecModel=e,p.api=n;var x=p instanceof Xk;f||!g?!m.get("show")||x&&p.unusable?x&&p.remove&&p.remove(e,n):(function(i,r,l){var u,h,d=i.getModel("iconStyle"),p=i.getModel(["emphasis","iconStyle"]),f=r instanceof Xk&&r.getIcons?r.getIcons():i.get("icon"),g=i.get("title")||{};v(f)?(u={})[l]=f:u=f,v(g)?(h={})[l]=g:h=g;var y=i.iconPaths={};c(u,function(l,u){var c=$a(l,{},{x:-a/2,y:-a/2,width:a,height:a});c.setStyle(d.getItemStyle()),c.ensureState("emphasis").style=p.getItemStyle();var f=new Cv({style:{text:h[u],align:p.get("textAlign"),borderRadius:p.get("textBorderRadius"),padding:p.get("textPadding"),fill:null,font:pr({fontStyle:p.get("textFontStyle"),fontFamily:p.get("textFontFamily"),fontSize:p.get("textFontSize"),fontWeight:p.get("textFontWeight")},e)},ignore:!0});c.setTextContent(f),ns({el:c,componentModel:t,itemName:u,formatterParamsExtra:{title:h[u]}}),c.__title=h[u],c.on("mouseover",function(){var e=p.getItemStyle(),i=s?null==t.get("right")&&"right"!==t.get("left")?"right":"left":null==t.get("bottom")&&"bottom"!==t.get("top")?"bottom":"top";f.setStyle({fill:p.get("textFill")||e.fill||e.stroke||X_.color.neutral99,backgroundColor:p.get("textBackgroundColor")}),c.setTextConfig({position:p.get("textPosition")||i}),f.ignore=!t.get("showTitle"),n.enterEmphasis(this)}).on("mouseout",function(){"emphasis"!==i.get(["iconStatus",u])&&n.leaveEmphasis(this),f.hide()}),("emphasis"===i.get(["iconStatus",u])?Gi:Ui)(c),o.add(c),c.on("click",_f(r.onclick,r,e,n,u)),y[u]=c})}(m,p,f),m.setIconStatus=function(t,e){var n=this.option,i=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[t]=e,i[t]&&("emphasis"===e?Gi:Ui)(i[t])},p instanceof Xk&&p.render&&p.render(m,e,n,i)):x&&p.dispose&&p.dispose(e,n)}var o=this.group;if(o.removeAll(),t.get("show")){var a=+t.get("itemSize"),s="vertical"===t.get("orient"),l=t.get("feature")||{},u=this._features||(this._features={}),h=[];c(l,function(t,e){h.push(e)}),new gM(this._featureNames||[],h).add(r).update(r).remove(g(r,null)).execute(),this._featureNames=h;var d=Zr(t,n).refContainer,p=t.getBoxLayoutParams(),f=t.get("padding"),y=jr(p,d,f);V_(t.get("orient"),o,t.get("itemGap"),y.width,y.height),Yr(o,p,d,f),o.add(jh(o.getBoundingRect(),t)),s||o.eachChild(function(t){var e=t.__title,i=t.ensureState("emphasis"),r=i.textConfig||(i.textConfig={}),s=t.getTextContent(),l=s&&s.ensureState("emphasis");if(l&&!m(l)&&e){var u=l.style||(l.style={}),c=Ue(e,Cv.makeFont(u)),h=t.x+o.x,d=!1;t.y+o.y+a+c.height>n.getHeight()&&(r.position="top",d=!0);var p=d?-5-c.height:a+10;h+c.width/2>n.getWidth()?(r.position=["100%",p],u.align="right"):h-c.width/2<0&&(r.position=[0,p],u.align="left")}})}},n.prototype.updateView=function(t,e,n,i){c(this._features,function(t){t instanceof Xk&&t.updateView&&t.updateView(t.model,e,n,i)})},n.prototype.remove=function(t,e){c(this._features,function(n){n instanceof Xk&&n.remove&&n.remove(t,e)}),this.group.removeAll()},n.prototype.dispose=function(t,e){c(this._features,function(n){n instanceof Xk&&n.dispose&&n.dispose(t,e)})},n.type="toolbox",n}(ww);const Jk=Kk,Qk=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.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",a=e.getConnectedDataURL({type:o,backgroundColor:n.get("backgroundColor",!0)||t.get("backgroundColor")||X_.color.neutral00,connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")}),s=Qp.browser;if("function"!=typeof MouseEvent||!s.newEdge&&(s.ie||s.edge))if(window.navigator.msSaveOrOpenBlob||r){var l=a.split(","),u=l[0].indexOf("base64")>-1,c=r?decodeURIComponent(l[1]):l[1];u&&(c=window.atob(c));var h=i+"."+o;if(window.navigator.msSaveOrOpenBlob){for(var d=c.length,p=new Uint8Array(d);d--;)p[d]=c.charCodeAt(d);var f=new Blob([p]);window.navigator.msSaveOrOpenBlob(f,h)}else{var g=document.createElement("iframe");document.body.appendChild(g);var y=g.contentWindow,m=y.document;m.open("image/svg+xml","replace"),m.write(c),m.close(),y.focus(),m.execCommand("SaveAs",!0,h),document.body.removeChild(g)}}else{var v=n.get("lang"),_='',x=window.open();x.document.write(_),x.document.title=i}else{var w=document.createElement("a");w.download=i+"."+o,w.target="_blank",w.href=a;var b=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});w.dispatchEvent(b)}},n.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:X_.color.neutral00,name:"",excludeComponents:["toolbox"],lang:t.getLocaleModel().get(["toolbox","saveAsImage","lang"])}},n}(Xk);var tD="__ec_magicType_stack__",eD=[["line","bar"],["stack"]],nD=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.getIcons=function(){var t=this.model,e=t.get("icon"),n={};return c(t.get("type"),function(t){e[t]&&(n[t]=e[t])}),n},n.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:{}}},n.prototype.onclick=function(t,e,n){var i=this.model,o=i.get(["seriesIndex",n]);if(iD[n]){var l,u={series:[]};c(eD,function(t){s(t,n)>=0&&c(t,function(t){i.setIconStatus(t,"normal")})}),i.setIconStatus(n,"emphasis"),t.eachComponent({mainType:"series",query:null==o?null:{seriesIndex:o}},function(t){var e=iD[n](t.subType,t.id,t,i);e&&(a(e,t.option),u.series.push(e));var r=t.coordinateSystem;if(r&&"cartesian2d"===r.type&&("line"===n||"bar"===n)){var o=r.getAxesByScale("ordinal")[0];if(o){var s=o.dim+"Axis",l=t.getReferringComponents(s,$y).models[0].componentIndex;u[s]=u[s]||[];for(var c=0;c<=l;c++)u[s][l]=u[s][l]||{};u[s][l].boundaryGap="bar"===n}}});var h=n;"stack"===n&&(l=r({stack:i.option.title.tiled,tiled:i.option.title.stack},i.option.title),"emphasis"!==i.get(["iconStatus",n])&&(h="tiled")),e.dispatchAction({type:"changeMagicType",currentType:h,newOption:u,newTitle:l,featureName:"magicType"})}},n}(Xk),iD={line:function(t,e,n,i){if("bar"===t)return r({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 r({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 o=n.get("stack")===tD;if("line"===t||"bar"===t)return i.setIconStatus("stack",o?"normal":"emphasis"),r({id:e,stack:o?"":tD},i.get(["option","stack"])||{},!0)}};pl({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},function(t,e){e.mergeOption(t.newOption)});const rD=nD;var oD=new Array(60).join("-"),aD="\t",sD=new RegExp("[\t]+","g"),lD=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.onclick=function(t,e){function n(){i.removeChild(o),T._dom=null}setTimeout(function(){e.dispatchAction({type:"hideTip"})});var i=e.getDom(),r=this.model;this._dom&&i.removeChild(this._dom);var o=document.createElement("div");o.style.cssText="position:absolute;top:0;bottom:0;left:0;right:0;padding:5px",o.style.backgroundColor=r.get("backgroundColor")||X_.color.neutral00;var a=document.createElement("h4"),s=r.get("lang")||[];a.innerHTML=s[0]||r.get("title"),a.style.cssText="margin:10px 20px",a.style.color=r.get("textColor");var l=document.createElement("div"),u=document.createElement("textarea");l.style.cssText="overflow:auto";var d=r.get("optionToContent"),f=r.get("contentToOption"),g=function(t){var e,n,i,r=function(t){var e={},n=[],i=[];return t.eachRawSeries(function(t){var r=t.coordinateSystem;if(!r||"cartesian2d"!==r.type&&"polar"!==r.type)n.push(t);else{var o=r.getBaseAxis();if("category"===o.type){var a=o.dim+"_"+o.index;e[a]||(e[a]={categoryAxis:o,valueAxis:r.getOtherAxis(o),series:[]},i.push({axisDim:o.dim,axisIndex:o.index})),e[a].series.push(t)}else n.push(t)}}),{seriesGroupByCategoryAxis:e,other:n,meta:i}}(t);return{value:p([(n=r.seriesGroupByCategoryAxis,i=[],c(n,function(t,e){var n=t.categoryAxis,r=t.valueAxis.dim,o=[" "].concat(h(t.series,function(t){return t.name})),a=[n.model.getCategories()];c(t.series,function(t){var e=t.getRawData();a.push(t.getRawData().mapArray(e.mapDimension(r),function(t){return t}))});for(var s=[o.join(aD)],l=0;l=0)return!0}(t)){var r=function(t){for(var e=t.split(/\n+/g),n=[],i=h(Zh(e.shift()).split(sD),function(t){return{name:t,data:[]}}),r=0;ri.getWidth()||n<0||n>i.getHeight()}(t,e.offsetX,e.offsetY)){var i=t._zr,r=t._covers,o=ed(t,e,n);if(!t._dragging)for(var a=0;a=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=OD[t.brushType](0,n,e);t.__rangeOffset={offset:PD[t.brushType](i.values,t.range,[1,1]),xyMinMax:i.xyMinMax}}}),t},t.prototype.matchOutputRanges=function(t,e,n){c(t,function(t){var i=this.findTargetInfo(t,e);i&&!0!==i&&c(i.coordSyses,function(i){var r=OD[t.brushType](1,i,t.range,!0);n(t,r.values,i,e)})},this)},t.prototype.setInputRanges=function(t,e){c(t,function(t){var n,i,r,o,a=this.findTargetInfo(t,e);if(t.range=t.range||[],a&&!0!==a){t.panelId=a.panelId;var s=OD[t.brushType](0,a.coordSys,t.coordRange),l=t.__rangeOffset;t.range=l?PD[t.brushType](s.values,l.offset,(n=l.xyMinMax,i=Ld(s.xyMinMax),r=Ld(n),o=[i[0]/r[0],i[1]/r[1]],isNaN(o[0])&&(o[0]=1),isNaN(o[1])&&(o[1]=1),o)):s.values}},this)},t.prototype.makePanelOpts=function(t,e){return h(this._targetInfoList,function(n){var i=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:e?e(n):null,clipPath:Sd(i),isTargetByCursor:Md(i,t,n.coordSysModel),getLinearBrushOtherExtent:Cd(i)}})},t.prototype.controlSeries=function(t,e,n){var i=this.findTargetInfo(t,n);return!0===i||i&&s(i.coordSyses,e.coordinateSystem)>=0},t.prototype.findTargetInfo=function(t,e){for(var n=this._targetInfoList,i=kd(e,t),r=0;r=0||s(i,t.getAxis("y").model)>=0)&&r.push(t)}),e.push({panelId:"grid--"+t.id,gridModel:t,coordSysModel:t,coordSys:r[0],coordSyses:r,getPanelRect:LD.grid,xAxisDeclared:a[t.id],yAxisDeclared:l[t.id]})}))},geo:function(t,e){c(t.geoModels,function(t){var n=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:n,coordSyses:[n],getPanelRect:LD.geo})})}},AD=[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}],LD={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var t=this.coordSys,e=t.getBoundingRect().clone();return e.applyTransform(Ga(t)),e}},OD={lineX:g(Dd,0),lineY:g(Dd,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=[Id([r[0],o[0]]),Id([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:h(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}}},PD={lineX:g(Ad,0),lineY:g(Ad,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 h(t,function(t,i){return[t[0]-n[0]*e[i][0],t[1]-n[1]*e[i][1]]})}};const RD=kD;var ND,zD=c,ED=Yy+"toolbox-dataZoom_",BD=function(e){function n(){return null!==e&&e.apply(this,arguments)||this}return t(n,e),n.prototype.render=function(t,e,n,i){this._brushController||(this._brushController=new TD(n.getZr()),this._brushController.on("brush",_f(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 RD(Od(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 Xh(t).length}(e)>1?"emphasis":"normal")}(t,e)},n.prototype.onclick=function(t,e,n){VD[n].call(this)},n.prototype.remove=function(t,e){this._brushController&&this._brushController.unmount()},n.prototype.dispose=function(t,e){this._brushController&&this._brushController.dispose()},n.prototype._onBrush=function(t){function e(t,e,n){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,r),l=s.findRepresentativeAxisProxy(a).getMinMaxSpan();null==l.minValueSpan&&null==l.maxValueSpan||(n=Vh(0,n.slice(),o.scale.getExtent(),0,l.minValueSpan,l.maxValueSpan)),s&&(i[s.id]={dataZoomId:s.id,startValue:n[0],endValue:n[1]})}var n=t.areas;if(t.isEnd&&n.length){var i={},r=this.ecModel;this._brushController.updateCovers([]),new RD(Od(this.model),r,{include:["grid"]}).matchOutputRanges(n,r,function(t,n,i){if("cartesian2d"===i.type){var r=t.brushType;"rect"===r?(e("x",i,n[0]),e("y",i,n[1])):e({lineX:"x",lineY:"y"}[r],i,n)}}),function(t,e){var n=Xh(t);cD(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)}(r,i),this._dispatchZoomAction(i)}},n.prototype._dispatchZoomAction=function(t){var e=[];zD(t,function(t,n){e.push(i(t))}),e.length&&this.api.dispatchAction({type:"dataZoom",from:this.uid,batch:e})},n.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:X_.color.backgroundTint}}},n}(Xk),VD={zoom:function(){this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:!this._isZoomActive})},back:function(){this._dispatchZoomAction(function(t){var e=Xh(t),n=e[e.length-1];e.length>1&&e.pop();var i={};return cD(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))}};ND=function(t){function e(t,e,n){var i=t.componentIndex,a={type:"select",$fromToolbox:!0,filterMode:r.get("filterMode",!0)||"filter",id:ED+e+i};a[n]=i,o.push(a)}var n=t.getComponent("toolbox",0),i=["feature","dataZoom"];if(n&&null!=n.get(i)){var r=n.getModel(i),o=[],a=Dn(t,Od(r));return zD(a.xAxisModels,function(t){return e(t,"xAxis","xAxisIndex")}),zD(a.yAxisModels,function(t){return e(t,"yAxis","yAxisIndex")}),o}},O(null==yx.get("dataZoom")&&ND),yx.set("dataZoom",ND);const FD=BD,HD=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.layoutMode={type:"box",ignoreSize:!0},t}return t(n,e),n.prototype.init=function(t,e,n){this.mergeDefaultAndTheme(t,n),t.selected=t.selected||{},this._updateSelector(t)},n.prototype.mergeOption=function(t,n){e.prototype.mergeOption.call(this,t,n),this._updateSelector(t)},n.prototype._updateSelector=function(t){var e=t.selector,n=this.ecModel;!0===e&&(e=t.selector=["all","inverse"]),y(e)&&c(e,function(t,i){v(t)&&(t={type:t}),e[i]=r(t,function(t,e){return"all"===e?{type:"all",title:t.getLocaleModel().get(["legend","selector","all"])}:"inverse"===e?{type:"inverse",title:t.getLocaleModel().get(["legend","selector","inverse"])}:void 0}(n,t.type))})},n.prototype.optionUpdated=function(){this._updateData(this.ecModel);var t=this._data;if(t[0]&&"single"===this.get("selectedMode")){for(var e=!1,n=0;n=0},n.prototype.getOrient=function(){return"vertical"===this.get("orient")?{index:1,name:"vertical"}:{index:0,name:"horizontal"}},n.type="legend.plain",n.dependencies=["series"],n.defaultOption={z:4,show:!0,orient:"horizontal",left:"center",bottom:X_.size.m,align:"auto",backgroundColor:X_.color.transparent,borderColor:X_.color.border,borderRadius:0,borderWidth:0,padding:5,itemGap:8,itemWidth:25,itemHeight:14,symbolRotate:"inherit",symbolKeepAspect:!0,inactiveColor:X_.color.disabled,inactiveBorderColor:X_.color.disabled,inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:X_.color.disabled,inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit"},textStyle:{color:X_.color.secondary},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:"sans-serif",color:X_.color.tertiary,borderWidth:1,borderColor:X_.color.border},emphasis:{selectorLabel:{show:!0,color:X_.color.quaternary}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1},triggerEvent:!1},n}(G_);var WD=g,GD=c,UD=Ny,jD=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.newlineDisabled=!1,t}return t(n,e),n.prototype.init=function(){this.group.add(this._contentGroup=new UD),this.group.add(this._selectorGroup=new UD),this._isFirstRender=!0},n.prototype.getContentGroup=function(){return this._contentGroup},n.prototype.getSelectorGroup=function(){return this._selectorGroup},n.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 s=t.get("selector",!0),l=t.get("selectorPosition",!0);!s||l&&"auto"!==l||(l="horizontal"===o?"end":"start"),this.renderInner(r,t,e,n,s,o,l);var u=Zr(t,n).refContainer,c=t.getBoxLayoutParams(),h=t.get("padding"),d=jr(c,u,h),p=this.layoutInner(t,r,d,i,s,l),f=jr(a({width:p.width,height:p.height},c),u,h);this.group.x=f.x-p.x,this.group.y=f.y-p.y,this.group.markRedraw(),this.group.add(this._backgroundEl=jh(p,t))}},n.prototype.resetInner=function(){this.getContentGroup().removeAll(),this._backgroundEl&&this.group.remove(this._backgroundEl),this.getSelectorGroup().removeAll()},n.prototype.renderInner=function(t,e,n,i,r,a,s){var l=this.getContentGroup(),u=z(),c=e.get("selectedMode"),h=e.get("triggerEvent"),d=[];n.eachRawSeries(function(t){!t.get("legendHoverLink")&&d.push(t.id)}),GD(e.getData(),function(r,a){var s=this,p=r.get("name");if(!this.newlineDisabled&&(""===p||"\n"===p)){var f=new UD;return f.newline=!0,void l.add(f)}var g=n.getSeriesByName(p)[0];if(!u.get(p))if(g){var y=g.getData(),m=y.getVisual("legendLineStyle")||{},v=y.getVisual("legendIcon"),_=y.getVisual("style"),x=this._createItem(g,p,a,r,e,t,m,_,v,c,i);x.on("click",WD(Pd,p,null,i,d)).on("mouseover",WD(Nd,g.name,null,i,d)).on("mouseout",WD(zd,g.name,null,i,d)),n.ssr&&x.eachChild(function(t){var e=Mv(t);e.seriesIndex=g.seriesIndex,e.dataIndex=a,e.ssrType="legend"}),h&&x.eachChild(function(t){s.packEventData(t,e,g,a,p)}),u.set(p,!0)}else n.eachRawSeries(function(s){var l=this;if(!u.get(p)&&s.legendVisualProvider){var f=s.legendVisualProvider;if(!f.containName(p))return;var g=f.indexOfName(p),y=f.getItemVisual(g,"style"),m=f.getItemVisual(g,"legendIcon"),v=ie(y.fill);v&&0===v[3]&&(v[3]=.2,y=o(o({},y),{fill:se(v,"rgba")}));var _=this._createItem(s,p,a,r,e,t,{},y,m,c,i);_.on("click",WD(Pd,null,p,i,d)).on("mouseover",WD(Nd,null,p,i,d)).on("mouseout",WD(zd,null,p,i,d)),n.ssr&&_.eachChild(function(t){var e=Mv(t);e.seriesIndex=s.seriesIndex,e.dataIndex=a,e.ssrType="legend"}),h&&_.eachChild(function(t){l.packEventData(t,e,s,a,p)}),u.set(p,!0)}},this)},this),r&&this._createSelector(r,e,i,a,s)},n.prototype.packEventData=function(t,e,n,i,r){var o={componentType:"legend",componentIndex:e.componentIndex,dataIndex:i,value:r,seriesIndex:n.seriesIndex};Mv(t).eventData=o},n.prototype._createSelector=function(t,e,n,i,r){var o=this.getSelectorGroup();GD(t,function(t){var i=t.type,r=new Cv({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===i?"legendAllSelect":"legendInverseSelect",legendId:e.id})}});o.add(r),lr(r,{normal:e.getModel("selectorLabel"),emphasis:e.getModel(["emphasis","selectorLabel"])},{defaultText:t.title}),er(r)})},n.prototype._createItem=function(t,e,n,i,r,o,a,s,l,u,c){var h,d,p,f=t.visualDrawType,g=r.get("itemWidth"),y=r.get("itemHeight"),_=r.isSelected(e),x=i.get("symbolRotate"),w=i.get("symbolKeepAspect"),b=i.get("icon"),S=function(t,e,n,i,r,o,a){function s(t,e){"auto"===t.lineWidth&&(t.lineWidth=e.lineWidth>0?2:0),GD(t,function(n,i){"inherit"===t[i]&&(t[i]=e[i])})}var l=e.getModel("itemStyle"),u=l.getItemStyle(),c=0===t.lastIndexOf("empty",0)?"fill":"stroke",h=l.getShallow("decal");u.decal=h&&"inherit"!==h?el(h,a):i.decal,"inherit"===u.fill&&(u.fill=i[r]),"inherit"===u.stroke&&(u.stroke=i[c]),"inherit"===u.opacity&&(u.opacity=("fill"===r?i:n).opacity),s(u,i);var d=e.getModel("lineStyle"),p=d.getLineStyle();if(s(p,n),"auto"===u.fill&&(u.fill=i.fill),"auto"===u.stroke&&(u.stroke=i.fill),"auto"===p.stroke&&(p.stroke=i.fill),!o){var f=e.get("inactiveBorderWidth");u.lineWidth="auto"===f?i.lineWidth>0&&u[c]?2:0:u.lineWidth,u.fill=e.get("inactiveColor"),u.stroke=e.get("inactiveBorderColor"),p.stroke=d.get("inactiveColor"),p.lineWidth=d.get("inactiveWidth")}return{itemStyle:u,lineStyle:p}}(l=b||l||"roundRect",i,a,s,f,_,c),C=new UD,M=i.getModel("textStyle");if(!m(t.getLegendIcon)||b&&"inherit"!==b){var T="inherit"===b&&t.getData().getVisual("symbol")?"inherit"===x?t.getData().getVisual("symbolRotate"):x:0;C.add(((p=Rs(d=(h={itemWidth:g,itemHeight:y,icon:l,iconRotate:T,itemStyle:S.itemStyle,lineStyle:S.lineStyle,symbolKeepAspect:w}).icon||"roundRect",0,0,h.itemWidth,h.itemHeight,h.itemStyle.fill,h.symbolKeepAspect)).setStyle(h.itemStyle),p.rotation=(h.iconRotate||0)*Math.PI/180,p.setOrigin([h.itemWidth/2,h.itemHeight/2]),d.indexOf("empty")>-1&&(p.style.stroke=p.style.fill,p.style.fill=X_.color.neutral00,p.style.lineWidth=2),p))}else C.add(t.getLegendIcon({itemWidth:g,itemHeight:y,icon:l,iconRotate:x,itemStyle:S.itemStyle,lineStyle:S.lineStyle,symbolKeepAspect:w}));var I="left"===o?g+5:-5,k=o,D=r.get("formatter"),A=e;v(D)&&D?A=D.replace("{name}",null!=e?e:""):m(D)&&(A=D(e));var L=_?M.getTextColor():i.get("inactiveColor");C.add(new Cv({style:cr(M,{text:A,x:I,y:y/2,fill:L,align:k,verticalAlign:"middle"},{inheritColor:L})}));var O=new yv({shape:C.getBoundingRect(),style:{fill:"transparent"}}),P=i.getModel("tooltip");return P.get("show")&&ns({el:O,componentModel:r,itemName:e,itemTooltipOption:P.option}),C.add(O),C.eachChild(function(t){t.silent=!0}),O.silent=!u,this.getContentGroup().add(C),er(C),C.__legendDataIndex=n,C},n.prototype.layoutInner=function(t,e,n,i,r,o){var a=this.getContentGroup(),s=this.getSelectorGroup();V_(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){V_("horizontal",s,t.get("selectorItemGap",!0));var c=s.getBoundingRect(),h=[-c.x,-c.y],d=t.get("selectorButtonGap",!0),p=t.getOrient().index,f=0===p?"width":"height",g=0===p?"height":"width",y=0===p?"y":"x";"end"===o?h[p]+=l[f]+d:u[p]+=c[f]+d,h[1-p]+=l[g]/2-c[g]/2,s.x=h[0],s.y=h[1],a.x=u[0],a.y=u[1];var m={x:0,y:0};return m[f]=l[f]+d+c[f],m[g]=Math.max(l[g],c[g]),m[y]=Math.min(0,c[y]+h[1-p]),m}return a.x=u[0],a.y=u[1],this.group.getBoundingRect()},n.prototype.remove=function(){this.getContentGroup().removeAll(),this._isFirstRender=!0},n.type="legend.plain",n}(ww);const ZD=jD,YD=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t}var i;return t(n,e),n.prototype.setScrollDataIndex=function(t){this.option.scrollDataIndex=t},n.prototype.init=function(t,n,i){var r=$r(t);e.prototype.init.call(this,t,n,i),Hd(this,t,r)},n.prototype.mergeOption=function(t,n){e.prototype.mergeOption.call(this,t,n),Hd(this,this.option,t)},n.type="legend.scroll",n.defaultOption=(i={scrollDataIndex:0,pageButtonItemGap:5,pageButtonGap:null,pageButtonPosition:"end",pageFormatter:"{current}/{total}",pageIcons:{horizontal:["M0,0L12,-10L12,10z","M0,0L-12,-10L-12,10z"],vertical:["M0,0L20,0L10,-20z","M0,0L20,0L10,20z"]},pageIconColor:X_.color.accent50,pageIconInactiveColor:X_.color.accent10,pageIconSize:15,pageTextStyle:{color:X_.color.tertiary},animationDurationUpdate:800},r(r({},HD.defaultOption,!0),i,!0)),n}(HD);var XD=Ny,qD=["width","height"],$D=["x","y"],KD=function(e){function n(){var t=null!==e&&e.apply(this,arguments)||this;return t.type=n.type,t.newlineDisabled=!0,t._currentIndex=0,t}return t(n,e),n.prototype.init=function(){e.prototype.init.call(this),this.group.add(this._containerGroup=new XD),this._containerGroup.add(this.getContentGroup()),this.group.add(this._controllerGroup=new XD)},n.prototype.resetInner=function(){e.prototype.resetInner.call(this),this._controllerGroup.removeAll(),this._containerGroup.removeClipPath(),this._containerGroup.__rectSize=null},n.prototype.renderInner=function(t,n,i,r,o,a,s){function l(t,e){var i=t+"DataIndex",o=$a(n.get("pageIcons",!0)[n.getOrient().name][e],{onclick:_f(u._pageGo,u,i,n,r)},{x:-d[0]/2,y:-d[1]/2,width:d[0],height:d[1]});o.name=t,c.add(o)}var u=this;e.prototype.renderInner.call(this,t,n,i,r,o,a,s);var c=this._controllerGroup,h=n.get("pageIconSize",!0),d=y(h)?h:[h,h];l("pagePrev",0);var p=n.getModel("pageTextStyle");c.add(new Cv({name:"pageText",style:{text:"xx/xx",fill:p.getTextColor(),font:p.getFont(),verticalAlign:"middle",align:"center"},silent:!0})),l("pageNext",1)},n.prototype.layoutInner=function(t,e,n,r,o,a){var s=this.getSelectorGroup(),l=t.getOrient().index,u=qD[l],c=$D[l],h=qD[1-l],d=$D[1-l];o&&V_("horizontal",s,t.get("selectorItemGap",!0));var p=t.get("selectorButtonGap",!0),f=s.getBoundingRect(),g=[-f.x,-f.y],y=i(n);o&&(y[u]=n[u]-f[u]-p);var m=this._layoutContentAndController(t,r,y,l,u,h,d,c);if(o){if("end"===a)g[l]+=m[u]+p;else{var v=f[u]+p;g[l]-=v,m[c]-=v}m[u]+=f[u]+p,g[1-l]+=m[d]+m[h]/2-f[h]/2,m[h]=Math.max(m[h],f[h]),m[d]=Math.min(m[d],f[d]+g[1-l]),s.x=g[0],s.y=g[1],s.markRedraw()}return m},n.prototype._layoutContentAndController=function(t,e,n,i,r,o,a,s){var l=this.getContentGroup(),u=this._containerGroup,c=this._controllerGroup;V_(t.get("orient"),l,t.get("itemGap"),i?n.width:null,i?null:n.height),V_("horizontal",c,t.get("pageButtonItemGap",!0));var h=l.getBoundingRect(),d=c.getBoundingRect(),p=this._showController=h[r]>n[r],f=[-h.x,-h.y];e||(f[i]=l[s]);var g=[0,0],y=[-d.x,-d.y],m=k(t.get("pageButtonGap",!0),t.get("itemGap",!0));p&&("end"===t.get("pageButtonPosition",!0)?y[i]+=n[r]-d[r]:g[i]+=d[r]+m),y[1-i]+=h[o]/2-d[o]/2,l.setPosition(f),u.setPosition(g),c.setPosition(y);var v={x:0,y:0};if(v[r]=p?n[r]:h[r],v[o]=Math.max(h[o],d[o]),v[a]=Math.min(0,d[a]+y[1-i]),u.__rectSize=n[r],p){var _={x:0,y:0};_[r]=Math.max(n[r]-d[r]-m,0),_[o]=v[o],u.setClipPath(new yv({shape:_})),u.__rectSize=_[r]}else c.eachChild(function(t){t.attr({invisible:!0,silent:!0})});var x=this._getPageInfo(t);return null!=x.pageIndex&&Ia(l,{x:x.contentPosition[0],y:x.contentPosition[1]},p?t:null),this._updatePageInfoView(t,x),v},n.prototype._pageGo=function(t,e,n){var i=this._getPageInfo(e)[t];null!=i&&n.dispatchAction({type:"legendScroll",scrollDataIndex:i,legendId:e.id})},n.prototype._updatePageInfoView=function(t,e){var n=this._controllerGroup;c(["pagePrev","pageNext"],function(i){var r=null!=e[i+"DataIndex"],o=n.childOfName(i);o&&(o.setStyle("fill",t.get(r?"pageIconColor":"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",v(r)?r.replace("{current}",null==a?"":a+"").replace("{total}",null==s?"":s+""):r({current:a,total:s}))},n.prototype._getPageInfo=function(t){function e(t){if(t){var e=t.getBoundingRect(),n=e[l]+t[l];return{s:n,e:n+e[s],i:t.__legendDataIndex}}}function n(t,e){return t.e>=e&&t.s<=e+o}var i=t.get("scrollDataIndex",!0),r=this.getContentGroup(),o=this._containerGroup.__rectSize,a=t.getOrient().index,s=qD[a],l=$D[a],u=this._findTargetItemIndex(i),c=r.children(),h=c[u],d=c.length,p=d?1:0,f={contentPosition:[r.x,r.y],pageCount:p,pageIndex:p-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!h)return f;var g=e(h);f.contentPosition[a]=-g.s;for(var y=u+1,m=g,v=g,_=null;y<=d;++y)(!(_=e(c[y]))&&v.e>m.s+o||_&&!n(_,m.s))&&(m=v.i>m.i?v:_)&&(null==f.pageNextDataIndex&&(f.pageNextDataIndex=m.i),++f.pageCount),v=_;for(y=u-1,m=g,v=g,_=null;y>=-1;--y)(_=e(c[y]))&&n(v,_.s)||!(m.i=0;u--){var p,f,g;if(g=null!=(f=Cn((p=n[u]).id,null))?r.get(f):null){d=hA(y=g.parent);var y,m={},v=Yr(g,p,y===i?{width:o,height:a}:{width:d.width,height:d.height},null,{hv:p.hv,boundingMode:p.bounding},m);if(!hA(g).isNew&&v){for(var _=p.transition,x={},w=0;w=0)?x[b]=S:g[b]=S}Ia(g,x,t,0)}else g.attr(m)}}},n.prototype._clear=function(){var t=this,e=this._elMap;e.each(function(n){ip(n,hA(n).option,e,t._lastGraphicModel)}),this._elMap=z()},n.prototype.dispose=function(){this._clear()},n.type="graphic",n}(ww),pA=Math.sin,fA=Math.cos,gA=Math.PI,yA=2*Math.PI,mA=180/gA;const vA=function(){function t(){}return t.prototype.reset=function(t){this._start=!0,this._d=[],this._str="",this._p=Math.pow(10,t||4)},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,u=a-o,c=!s,h=Math.abs(u),d=he(h-yA)||(c?u>=yA:-u>=yA),p=u>0?u%yA:u%yA+yA;l=!!d||!he(h)&&p>=gA==!!c;var f=t+n*fA(o),g=e+i*pA(o);this._start&&this._add("M",f,g);var y=Math.round(r*mA);if(d){var m=1/this._p,v=(c?1:-1)*(yA-m);this._add("A",n,i,y,1,+c,t+n*fA(o+v),e+i*pA(o+v)),m>.01&&this._add("A",n,i,y,0,+c,f,g)}else{var _=t+n*fA(a),x=e+i*pA(a);this._add("A",n,i,y,+l,+c,_,x)}},t.prototype.rect=function(t,e,n,i){this._add("M",t,e),this._add("l",n,0),this._add("l",0,i),this._add("l",-n,0),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){for(var u=[],c=this._p,h=1;h"].join(i):""}(r.cssNodes,r.cssAnims,{newline:!0});if(u){var c=ap("style","stl",{},[],u);o.push(c)}}return up(n,i,o,t.useViewBox)},t.prototype.renderToString=function(t){return sp(this.renderToVNode({animation:k((t=t||{}).cssAnimation,!0),emphasis:k(t.cssEmphasis,!0),willUpdate:!1,compress:!0,useViewBox:k(t.useViewBox,!0)}),{newline:!0})},t.prototype.setBackgroundColor=function(t){this._backgroundColor=t},t.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},t.prototype._paintList=function(t,e,n){for(var i,r,o=t.length,a=[],s=0,l=0,u=0;u=0&&(!h||!r||h[f]!==r[f]);f--);for(var g=p-1;g>f;g--)i=a[--s-1];for(var y=f+1;y=s)}}if(this.__firstTimePaint)return this.__firstTimePaint=!1,null;for(var o,a=[],s=this.maxRepaintRectCount,l=!1,u=new lg(0,0,0,0),c=this.__startIndex;c15)break}n.prevElClipPaths&&h.restore()};if(p)if(0===p.length)s=c.__endIndex;else for(var x=d.dpr,w=0;w0&&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||(e.painter=this)}},t.prototype.eachLayer=function(t,e){for(var n=this._zlevelList,i=0;i0?WA:0),this._needsManuallyCompositing),c.__builtin__||n("ZLevel "+u+" has been used by unkown layer "+c.id),c!==a&&(c.__used=!0,c.__startIndex!==o&&(c.__dirty=!0),c.__startIndex=o,c.__drawIndex=c.incremental?-1:o,e(o),a=c),1&l.__dirty&&!l.__inHover&&(c.__dirty=!0,c.incremental&&c.__drawIndex<0&&(c.__drawIndex=o))}e(o),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,c(this._layers,function(t){t.setUnpainted()})},t.prototype.configLayer=function(t,e){if(e){var n=this._layerConfig;n[t]?r(n[t],e,!0):n[t]=e;for(var i=0;i{let o="right";return r.viewSize[0]-t[0]"graph"===t.componentSubType?"edge"===t.dataType?e.utils.getLinkTooltipInfo(t.data):e.utils.getNodeTooltipInfo(t.data):"lines"===t.componentSubType?e.utils.getLinkTooltipInfo(t.data.link):e.utils.getNodeTooltipInfo(t.data.node)}},n.echartsOption);return i.setOption(e.utils.deepMergeObj(r,t)),i.on("click",t=>{const i=n.onClickElement.bind(e);return e.utils.addActionToUrl(e,t),"graph"===t.componentSubType?i("edge"===t.dataType?"link":"node",t.data):"lines"===t.componentSubType?i("link",t.data.link):!t.data.cluster&&i("node",t.data.node)},{passive:!0}),i}generateGraphOption(t,e){const n=[],i=e.config,r=t.nodes.map(t=>{const n=e.utils.fastDeepCopy(t),{nodeStyleConfig:r,nodeSizeConfig:o,nodeEmphasisConfig:a}=e.utils.getNodeStyle(t,i,"graph");n.itemStyle=r,n.symbolSize=o,n.emphasis={itemStyle:a.nodeStyle,symbolSize:a.nodeSize};let s="";return"string"==typeof t.label?s=t.label:"string"==typeof t.name?s=t.name:null!=t.id&&(s=String(t.id)),n.name=s,n._source=e.utils.fastDeepCopy(t),n}),o=t.links.map(t=>{const n=e.utils.fastDeepCopy(t),{linkStyleConfig:r,linkEmphasisConfig:o}=e.utils.getLinkStyle(t,i,"graph");return n.lineStyle=r,n.emphasis={lineStyle:o.linkStyle},n}),a={...i.graphConfig.series},s={...a.label||{}};if("number"==typeof e.config.showGraphLabelsAtZoom&&e.config.showGraphLabelsAtZoom>0){const t=e.config.showGraphLabelsAtZoom;s.formatter=n=>(()=>{try{const t=e.echarts.getOption(),n=(Array.isArray(t.series)?t.series:[]).find(t=>t&&"network-graph"===t.id);return n&&"number"==typeof n.zoom?n.zoom:1}catch(t){return 1}})()>=t&&n&&n.data&&n.data.name||""}a.label=s;const l=[{...a,id:"network-graph",type:"graph",layout:i.graphConfig.series.layout||"force",nodes:r,links:o}];return{legend:n.length?{data:n}:void 0,series:l,...i.graphConfig.baseOptions}}generateMapOption(t,e,n=[]){const i=e.config,{nodes:r,links:o}=t,a=t.flatNodes||{},s=[];let l=[];r.forEach(n=>{if(n.properties&&(t.flatNodes||(a[n.id]=e.utils.fastDeepCopy(n))),!n.properties||!n.properties._featureType||"Point"===n.properties._featureType)if(n.properties){const{location:t}=n.properties;if(t&&t.lng&&t.lat){const{nodeEmphasisConfig:r}=e.utils.getNodeStyle(n,i,"map");let o="";"string"==typeof n.label?o=n.label:"string"==typeof n.name?o=n.name:null!=n.id&&(o=String(n.id)),l.push({name:o,value:[t.lng,t.lat],emphasis:{itemStyle:r.nodeStyle,symbolSize:r.nodeSize},node:n,_source:e.utils.fastDeepCopy(n)})}else console.error(`Node ${n.id} position is undefined!`)}else console.error(`Node ${n.id} position is undefined!`)}),o.forEach(t=>{if(a[t.source])if(a[t.target]){const{linkStyleConfig:n,linkEmphasisConfig:r}=e.utils.getLinkStyle(t,i,"map");s.push({coords:[[a[t.source].properties.location.lng,a[t.source].properties.location.lat],[a[t.target].properties.location.lng,a[t.target].properties.location.lat]],lineStyle:n,emphasis:{lineStyle:r.linkStyle},link:t})}else console.warn(`Node ${t.target} does not exist!`);else console.warn(`Node ${t.source} does not exist!`)}),l=l.concat(n);const u=[{id:"geo-map",type:"scatter",name:"nodes",coordinateSystem:"leaflet",data:l,label:{...i.mapOptions.nodeConfig.label||{},...!1===i.showMapLabelsAtZoom?{show:!1}:{},silent:!0},itemStyle:{color:t=>{if(t.data&&t.data.cluster&&t.data.itemStyle&&t.data.itemStyle.color)return t.data.itemStyle.color;if(t.data&&t.data.node&&t.data.node.category){const e=i.nodeCategories.find(e=>e.name===t.data.node.category);return e&&e.nodeStyle&&e.nodeStyle.color||i.mapOptions.nodeConfig&&i.mapOptions.nodeConfig.nodeStyle&&i.mapOptions.nodeConfig.nodeStyle.color||"#6c757d"}return i.mapOptions.nodeConfig&&i.mapOptions.nodeConfig.nodeStyle&&i.mapOptions.nodeConfig.nodeStyle.color||"#6c757d"}},symbolSize:(t,n)=>{if(n.data&&n.data.cluster)return i.mapOptions.clusterConfig&&i.mapOptions.clusterConfig.symbolSize||30;if(n.data&&n.data.node){const{nodeSizeConfig:t}=e.utils.getNodeStyle(n.data.node,i,"map");return"object"==typeof t?i.mapOptions.nodeConfig&&i.mapOptions.nodeConfig.nodeSize||17:t}return i.mapOptions.nodeConfig&&i.mapOptions.nodeConfig.nodeSize||17},emphasis:i.mapOptions.nodeConfig.emphasis},Object.assign(i.mapOptions.linkConfig,{id:"map-links",type:"lines",coordinateSystem:"leaflet",data:s})];return{leaflet:{tiles:i.mapTileConfig,mapOptions:i.mapOptions},series:u,...i.mapOptions.baseOptions}}_propagateGraphZoom(t){const e=t.echarts.getDom&&t.echarts.getDom();if(!e)return;const n=e.querySelector("canvas");e.addEventListener("wheel",t=>{if(!n)return;const i=e.getBoundingClientRect();if(t.clientXi.right||t.clientYi.bottom)return;t.preventDefault();const r=n.getBoundingClientRect();n.dispatchEvent(new WheelEvent("wheel",{bubbles:!0,cancelable:!0,view:window,clientX:r.left+r.width/2,clientY:r.top+r.height/2,deltaY:-t.deltaY,deltaMode:t.deltaMode}))},{passive:!1})}graphRender(t,e){e.utils.echartsSetOption(e.utils.generateGraphOption(t,e),e),window.onresize=()=>{e.echarts.resize()},e.utils._propagateGraphZoom(e),e.config.showGraphLabelsAtZoom>0&&e.echarts.on("graphRoam",t=>{if(!t||!t.zoom)return;const n=e.echarts.getOption(),i=n&&n.series&&n.series[0]&&n.series[0].zoom>=e.config.showGraphLabelsAtZoom;i!==e._labelsVisible&&(e.echarts.resize({animation:!1,silent:!0}),e._labelsVisible=i)}),e.utils.setupHashChangeHandler(e),e.event.emit("onLoad"),e.event.emit("onReady"),e.event.emit("renderArray"),e.event.emit("applyUrlFragmentState")}mapRender(t,e){const n=_l();if(!n)throw new Error("Leaflet api is not loaded");const{circleMarker:i,latLngBounds:r}=n;if(!e.config.mapTileConfig[0])throw new Error('You must add the tiles via the "mapTileConfig" param!');e.utils.isGeoJSON(t)&&(e.originalGeoJSON=e.utils.fastDeepCopy(t),t=e.utils.geojsonToNetjson(t));const o=e.utils.generateMapOption(t,e);if(e.utils.echartsSetOption(o,e),e.bboxData={nodes:[],links:[]},e.leaflet=e.echarts._api.getCoordinateSystems()[0].getLeaflet(),e.leaflet._zoomAnimated=!1,e.config.geoOptions=e.utils.deepMergeObj({pointToLayer:(t,n)=>i(n,e.config.geoOptions.style),onEachFeature:(t,n)=>{n.on("click",()=>{const n={...t.properties};e.config.onClickElement.call(e,"Feature",n)})}},e.config.geoOptions),e.originalGeoJSON){!function(t){if(!t.originalGeoJSON||!Array.isArray(t.originalGeoJSON.features))return;const e=_l();if(!e)return;const{geoJSON:n}=e,i=t.leaflet,r=t.originalGeoJSON.features.filter(t=>t&&t.geometry&&("Polygon"===t.geometry.type||"MultiPolygon"===t.geometry.type));if(!r.length)return;let o=i.getPane("njg-polygons");o||(o=i.createPane("njg-polygons"),o.style.zIndex=410);const a={fillColor:"#1566a9",color:"#1566a9",weight:0,fillOpacity:.6},s=n({type:"FeatureCollection",features:r},{pane:"njg-polygons",style:e=>{const n=e.properties&&e.properties.echartsStyle||{},i={...a,...t.config.geoOptions&&t.config.geoOptions.style};return n.areaColor&&(i.fillColor=n.areaColor),n.color&&(i.color=n.color),void 0!==n.opacity&&(i.fillOpacity=n.opacity),void 0!==n.borderWidth&&(i.weight=n.borderWidth),i},onEachFeature:(e,n)=>{n.on("click",()=>{t.config.onClickElement.call(t,"Feature",e.properties||{})})},...t.config.geoOptions}).addTo(i);t.leaflet.polygonGeoJSON=s}(e);let n=null;if(e.leaflet.polygonGeoJSON&&"function"==typeof e.leaflet.polygonGeoJSON.getBounds&&(n=e.leaflet.polygonGeoJSON.getBounds()),t.nodes&&t.nodes.length){const e=t.nodes.map(t=>t.properties.location).map(t=>[t.lat,t.lng]);n?e.forEach(t=>n.extend(t)):n=r(e)}n&&n.isValid()&&e.leaflet.fitBounds(n,{padding:[20,20]})}const a=()=>{const t=!1!==e.config.showMapLabelsAtZoom&&e.leaflet.getZoom()>=e.config.showMapLabelsAtZoom;e.echarts.setOption({series:[{id:"geo-map",label:{show:t,silent:!0},emphasis:{label:{show:!1}}}]})};if(a(),e.leaflet.on("zoomend",()=>{a();const t=e.leaflet.getZoom(),n=e.leaflet.getMinZoom(),i=e.leaflet.getMaxZoom(),r=document.querySelector(".leaflet-control-zoom-in"),o=document.querySelector(".leaflet-control-zoom-out");r&&o&&(Math.round(t)>=i?r.classList.add("leaflet-disabled"):r.classList.remove("leaflet-disabled"),Math.round(t)<=n?o.classList.add("leaflet-disabled"):o.classList.remove("leaflet-disabled"))}),e.leaflet.on("moveend",async()=>{const n=e.leaflet.getBounds();if(e.leaflet.getZoom()>=e.config.loadMoreAtZoomLevel&&e.hasMoreData){const i=await e.utils.getBBoxData.call(e,e.JSONParam,n);e.config.prepareData.call(e,i);const r=new Set(e.data.nodes.map(t=>t.id)),o=new Set(e.data.links.map(t=>t.source)),a=new Set(e.data.links.map(t=>t.target)),s=i.nodes.filter(t=>!r.has(t.id)),l=i.links.filter(t=>!o.has(t.source)&&!a.has(t.target)),u=new Set(i.nodes.map(t=>t.id)),c=e.bboxData.nodes.filter(t=>!u.has(t.id)),h=new Set(c.map(t=>t.id));t.nodes=t.nodes.filter(t=>!h.has(t.id)),e.bboxData.nodes=e.bboxData.nodes.concat(s),e.bboxData.links=e.bboxData.links.concat(l),t={...t,nodes:t.nodes.concat(s),links:t.links.concat(l)},e.echarts.setOption(e.utils.generateMapOption(t,e)),e.data=t}else e.hasMoreData&&e.bboxData.nodes.length>0&&(()=>{const n=new Set(e.bboxData.nodes),i=new Set(e.bboxData.links);t={...t,nodes:t.nodes.filter(t=>!n.has(t)),links:t.links.filter(t=>!i.has(t))},e.data=t,e.echarts.setOption(e.utils.generateMapOption(t,e)),e.bboxData.nodes=[],e.bboxData.links=[]})()}),e.config.clustering&&e.config.clusteringThresholde.config.disableClusteringAtLevel&&(n=[],i=t.nodes,r=t.links),e.echarts.setOption(e.utils.generateMapOption({...t,nodes:i,links:r},e,n)),a(),e.echarts.on("click",t=>{if(("scatter"===t.componentSubType||"effectScatter"===t.componentSubType)&&t.data.cluster){const n=e.leaflet.getZoom(),i=Math.min(n+2,e.leaflet.getMaxZoom());e.leaflet.setView([t.data.value[1],t.data.value[0]],i)}}),e.leaflet.on("zoomend",()=>{if(e.leaflet.getZoom(){e.echarts.appendData({seriesIndex:n,data:t.data})}),e.utils.mergeData(t,e)),e.config.afterUpdate.call(e)}addData(t,e){e.utils.mergeData(t,e),e.data.nodes&&e.data.nodes.length>0&&(e.data.nodes=e.utils.deduplicateNodesById(e.data.nodes)),e.utils.render(),e.config.afterUpdate.call(e)}mergeData(t,e){t.nodes||(t.nodes=[]);const n=new Set;e.data.nodes.forEach(t=>{t.id&&n.add(t.id)});const i=t.nodes.filter(t=>!t.id||!n.has(t.id)||(console.warn(`Duplicate node ID ${t.id} detected during merge and skipped.`),!1)),r=e.data.nodes.concat(i),o=e.data.links.concat(t.links||[]);Object.assign(e.data,t,{nodes:r,links:o})}},ZA=class{constructor(t){this.self=t,this.renderModeSelector=null,this.controls=null,this.sideBar=null,this.metaInfoContainer=null,this.nodeLinkInfoContainer=null}createControls(){const t=document.createElement("div");return t.setAttribute("class","njg-controls"),this.self.el.appendChild(t),t}createRenderModeSelector(){const t=document.createElement("div"),e=document.createElement("span");return e.setAttribute("class","iconfont icon-eye"),t.setAttribute("class","njg-selectIcon"),t.appendChild(e),this.controls.appendChild(t),t}createSideBar(){const t=document.createElement("div");t.setAttribute("class","njg-sideBar"),t.classList.add("hidden");const e=document.createElement("button");return t.appendChild(e),e.classList.add("sideBarHandle"),e.onclick=()=>{t.classList.toggle("hidden");const e=document.querySelector(".njg-metaInfoContainer");(this.self.config.showMetaOnNarrowScreens||this.self.el.clientWidth>850)&&e&&(e.style.display="flex")},this.self.el.appendChild(t),t}hideInfoOnNarrowScreen(){!this.self.config.showMetaOnNarrowScreens&&this.self.el.clientWidth<850&&(this.metaInfoContainer.style.display="none"),"none"===this.metaInfoContainer.style.display&&"none"===this.nodeLinkInfoContainer.style.display&&this.sideBar.classList.add("hidden")}createMetaInfoContainer(){const t=document.createElement("div"),e=document.createElement("h2"),n=document.createElement("div");n.classList.add("njg-metaData"),t.classList.add("njg-metaInfoContainer");const i=document.createElement("span");return i.classList.add("njg-closeButton"),e.innerHTML="Info",i.innerHTML=" ✕",e.appendChild(i),t.appendChild(e),t.appendChild(n),this.metaInfoContainer=t,this.sideBar.appendChild(t),this.nodeLinkInfoContainer=this.createNodeLinkInfoContainer(),this.hideInfoOnNarrowScreen(),window.addEventListener("resize",this.hideInfoOnNarrowScreen.bind(this)),i.onclick=()=>{this.metaInfoContainer.style.display="none","none"===this.nodeLinkInfoContainer.style.display&&this.sideBar.classList.add("hidden")},t}createNodeLinkInfoContainer(){const t=document.createElement("div");return t.classList.add("njg-nodeLinkInfoContainer"),t.style.display="none",this.sideBar.appendChild(t),t}getNodeLinkInfo(t,e){const n=document.querySelectorAll(".njg-infoContainer"),i=document.querySelectorAll(".njg-headerContainer");for(let t=0;t"clients"===t?"Clients":/^clients\s*\[\d+\]$/i.test(t)?t.replace(/^clients/i,"Client"):"localAddresses"===t?"Local Addresses":t.replace(/_/g," "),u=(t,e,n,i=0)=>{if(null==n||"string"==typeof n&&(""===n.trim()||/^(undefined|null)$/i.test(n.trim()))&&"0"!==n)return;if(Array.isArray(n)){if(0===n.length){const n=document.createElement("div");n.classList.add("njg-infoItems"),n.style.paddingLeft=12*i+"px";const r=document.createElement("span");r.setAttribute("class","njg-keyLabel");const o=document.createElement("span");return o.setAttribute("class","njg-valueLabel"),r.innerHTML=l(e),o.innerHTML="[]",n.appendChild(r),n.appendChild(o),void t.appendChild(n)}if(n.every(t=>"object"!=typeof t||null===t)){const r=document.createElement("div");r.classList.add("njg-infoItems"),r.style.paddingLeft=12*i+"px";const o=document.createElement("span");o.setAttribute("class","njg-keyLabel");const a=document.createElement("span");return a.setAttribute("class","njg-valueLabel"),o.innerHTML=l(e),a.innerHTML=n.map(t=>"string"==typeof t?t.replace(/\n/g,"
"):String(t)).join("
"),r.appendChild(o),r.appendChild(a),void t.appendChild(r)}return void n.forEach((n,r)=>{u(t,`${e} [${r+1}]`,n,i)})}if("object"==typeof n){if("location"===e&&"number"==typeof n.lat&&"number"==typeof n.lng){const e=document.createElement("div");e.classList.add("njg-infoItems"),e.style.paddingLeft=12*i+"px";const r=document.createElement("span");r.setAttribute("class","njg-keyLabel");const o=document.createElement("span");return o.setAttribute("class","njg-valueLabel"),r.innerHTML="Location",o.innerHTML=`${Math.round(1e3*n.lat)/1e3}, ${Math.round(1e3*n.lng)/1e3}`,e.appendChild(r),e.appendChild(o),void t.appendChild(e)}const r=document.createElement("div");r.classList.add("njg-infoItems"),r.style.paddingLeft=12*i+"px";const o=document.createElement("span");o.setAttribute("class","njg-keyLabel");const a=document.createElement("span");return a.setAttribute("class","njg-valueLabel"),o.innerHTML=l(e),a.innerHTML="",r.appendChild(o),r.appendChild(a),t.appendChild(r),void Object.keys(n).forEach(e=>{u(t,e,n[e],i+1)})}const r=document.createElement("div");r.classList.add("njg-infoItems"),r.style.paddingLeft=12*i+"px";const o=document.createElement("span");o.setAttribute("class","njg-keyLabel");const a=document.createElement("span");a.setAttribute("class","njg-valueLabel"),o.innerHTML=l(e);const s="string"==typeof n?n.replace(/\n/g,"
"):String(n);a.innerHTML=s,r.appendChild(o),r.appendChild(a),t.appendChild(r)};Object.keys(e).forEach(t=>u(o,t,e[t],0)),r.appendChild(a),r.appendChild(s),this.nodeLinkInfoContainer.appendChild(r),this.nodeLinkInfoContainer.appendChild(o),s.onclick=()=>{this.nodeLinkInfoContainer.style.display="none",null!==this.metaInfoContainer&&"none"!==this.metaInfoContainer.style.display||this.sideBar.classList.add("hidden")}}init(){this.sideBar=this.createSideBar(),this.self.config.switchMode&&(this.controls=this.createControls(),this.renderModeSelector=this.createRenderModeSelector())}},YA=function(){function t(t,e){this._map=t,this.dimensions=["lng","lat"],this._mapOffset=[0,0],this._api=e,this._projection=o.Mercator}function e(t,e,n,i){const{leafletModel:r,seriesModel:o}=n,a=r?r.coordinateSystem:o?o.coordinateSystem||(o.getReferringComponents("leaflet")[0]||{}).coordinateSystem:null;return a===this?a[t](i):null}const n=_l();if(!n)throw new Error("Leaflet api is not loaded");const{Layer:i,DomUtil:r,Projection:o,LatLng:a,map:s,control:l,tileLayer:u}=n,c=i.extend({initialize(t){this._container=t},onAdd(t){t.getPane(this.options.pane).appendChild(this._container),t.zoomControl.setPosition("topright")},onRemove(){r.remove(this._container)},_update(){}});return t.dimensions=["lng","lat"],t.prototype.dimensions=["lng","lat"],t.prototype.setZoom=function(t){this._zoom=t},t.prototype.setCenter=function(t){this._center=this._projection.project(new a(t[1],t[0]))},t.prototype.setMapOffset=function(t){this._mapOffset=t},t.prototype.getLeaflet=function(){return this._map},t.prototype.getViewRect=function(){const t=this._api;return new lg(0,0,t.getWidth(),t.getHeight())},t.prototype.getRoamTransform=function(){return[1,0,0,1,0,0]},t.prototype.dataToPoint=function(t){const e=new a(t[1],t[0]),n=this._map.latLngToLayerPoint(e),i=this._mapOffset;return[n.x-i[0],n.y-i[1]]},t.prototype.pointToData=function(t){const e=this._mapOffset,n=this._map.layerPointToLatLng({x:t[0]+e[0],y:t[1]+e[1]});return[n.lng,n.lat]},t.prototype.convertToPixel=g(e,"dataToPoint"),t.prototype.convertFromPixel=g(e,"pointToData"),t.create=function(e,n){let i;const r=[],o=n.getDom();return e.eachComponent("leaflet",e=>{const a=n.getZr().painter.getViewportRoot();if(i)throw new Error("Only one leaflet component can exist");if(!e.__map){let t=o.querySelector(".ec-extension-leaflet");t&&(a.style.left="0px",a.style.top="0px",o.removeChild(t)),t=document.createElement("div"),t.style.cssText="width:100%;height:100%",t.classList.add("ec-extension-leaflet"),o.appendChild(t),e.__map=s(t,e.get("mapOptions"));const n=e.__map,i=e.get("tiles"),r={};let h=!1;if(i.forEach(t=>{const e=u(t.urlTemplate,t.options);t.label?(h||(e.addTo(n),h=!0),r[t.label]=e):e.addTo(n)}),i.length>1){const t=e.get("layerControl");l.layers(r,{},t).addTo(n)}const d=document.createElement("div");d.style="position: absolute;left: 0;top: 0;z-index: 100",d.appendChild(a),new c(d).addTo(n)}i=new t(e.__map,n),r.push(i),i.setMapOffset(e.__mapOffset||[0,0]);const{center:h,zoom:d}=e.get("mapOptions");h&&d&&(i.setZoom(d),i.setCenter(h)),e.coordinateSystem=i}),e.eachSeries(t=>{"leaflet"===t.get("coordinateSystem")&&(t.coordinateSystem=i)}),r},t};Yp.version="1.0.0";const XA=Yp;let qA=!1;window.NetJSONGraph=class{constructor(t,e={}){return this.graph=new GC(t),this.config=this.initializeConfig(e),this.graph.setConfig(this.config),this.setupGraph(),this.config.onInit.call(this.graph),this.initializeECharts(),void 0===e.showMapLabelsAtZoom&&void 0!==e.showLabelsAtZoomLevel&&(console.warn("showLabelsAtZoomLevel has been renamed to showMapLabelsAtZoom, please update your code accordingly."),this.graph.config.showMapLabelsAtZoom=e.showLabelsAtZoomLevel),this.graph}initializeConfig(t={}){return{...t,render:"map"===t.render?jA.prototype.mapRender:jA.prototype.graphRender,onInit:this.onInit,onRender:this.onRender,onUpdate:this.onUpdate,afterUpdate:this.afterUpdate,onLoad:this.onLoad}}setupGraph(){Object.setPrototypeOf(jA.prototype,this.graph.utils),this.graph.gui=new ZA(this.graph),this.graph.utils=new jA,this.graph.setUtils(),this.graph.event=this.graph.utils.createEvent()}initializeECharts(){qA||(XA(),qA=!0),this.graph.echarts=function(t,e,n){var i=!(n&&n.ssr);if(i){var r=ll(t);if(r)return r}var o=new xC(t,null,n);return o.id="ec_"+PC++,LC[o.id]=o,i&&On(t,RC,o.id),rC(o),WS.trigger("afterinit",o),o}(this.graph.el,0,{renderer:this.graph.config.svgRender?"svg":"canvas"})}onInit(){return this.config}onRender(){return this.utils.showLoading.call(this),this.gui.init(),this.config}onUpdate(){return this.config}afterUpdate(){return this.config}onLoad(){return this.config.metadata&&this.utils.isNetJSON(this.data)?(this.gui.createMetaInfoContainer(this.graph),this.utils.updateMetadata.call(this)):this.gui.nodeLinkInfoContainer=this.gui.createNodeLinkInfoContainer(),this.config.switchMode&&this.utils.isNetJSON(this.data)&&(this.gui.renderModeSelector.onclick=()=>{if(this.config.render===this.utils.mapRender){this.config.render=this.utils.graphRender;const t=this.echarts.getZr().painter.getViewportRoot().parentNode;this.echarts.clear(),this.utils.graphRender(this.data,this),t.style.background=this.echarts.getZr()._backgroundColor,document.querySelector(".leaflet-control-attribution").style.display="none",document.querySelector(".leaflet-control-zoom").style.display="none"}else this.echarts.clear(),this.config.render=this.utils.mapRender,this.utils.mapRender(this.data,this),document.querySelector(".leaflet-control-attribution").style.display="block",document.querySelector(".leaflet-control-zoom").style.display="block"}),this.utils.hideLoading.call(this),this.attachClientsOverlay=t=>function(t,e={}){function n(){u=function(){const t=r.getOption();return t&&t.series&&t.series[0]&&t.series[0].zoom?t.series[0].zoom:1}(),d.attr("invisible",!(u>=l))}function i(){const t=r.getModel().getSeriesByIndex(0);if(!t)return;const e=t.getData();if(!e)return;if(n(),d.removeAll(),u{let o=0;if(0!==n)for(let s=0;ot?"number"==typeof t.clients?t.clients:Array.isArray(t.clients)?t.clients.length:0:0,h=function(){const t=r.getModel().getSeriesByIndex(0);if(!t)return null;const e=(r._chartsViews||[]).find(e=>e&&e.__model&&e.__model.uid===t.uid);return e?e.group:null}();if(!h)return{destroy(){}};const d=new Ny({silent:!0,z:100,zlevel:1});h.add(d);const p=t&&t.config&&t.config.graphConfig&&t.config.graphConfig.series||{},f=("number"==typeof p.nodeSize?p.nodeSize:18)/2,g=[["finished",i],["rendered",i],["graphLayoutEnd",i],["graphRoam",()=>{n(),i()}]];return g.forEach(([t,e])=>r.on(t,e)),i(),{destroy(){g.forEach(([t,e])=>{r&&r.off&&r.off(t,e)}),d&&d.parent&&d.parent.remove(d)},setMinZoomLevel(t){l=t,i()},getMinZoomLevel:()=>l}}(this,t),this.config}}})(); \ No newline at end of file From c25f7fa4bfb7d289fe0ce0f14add89723f3f8c61 Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 15 May 2026 22:27:51 +0530 Subject: [PATCH 2/8] [feature] Move netjsongraph files to admin_theme #517 Relocated netjsongraph.js and related CSS files to the openwisp_utils.admin_theme static directory to ensure they are properly collected by the static finder. Updated admin-theme.rst documentation to reflect the new shared assets location. Fixes #517 --- docs/developer/admin-theme.rst | 14 ++++++++++++++ .../lib}/netjsongraph/css/netjsongraph-theme.css | 0 .../static/lib}/netjsongraph/css/netjsongraph.css | 0 .../netjsongraph/js/netjsongraph.echarts.min.js | 0 4 files changed, 14 insertions(+) rename openwisp_utils/{static => admin_theme/static/lib}/netjsongraph/css/netjsongraph-theme.css (100%) rename openwisp_utils/{static => admin_theme/static/lib}/netjsongraph/css/netjsongraph.css (100%) rename openwisp_utils/{static => admin_theme/static/lib}/netjsongraph/js/netjsongraph.echarts.min.js (100%) diff --git a/docs/developer/admin-theme.rst b/docs/developer/admin-theme.rst index be154f180..d5057ae91 100644 --- a/docs/developer/admin-theme.rst +++ b/docs/developer/admin-theme.rst @@ -286,3 +286,17 @@ Similarly, you can customize the HTML of the template by overriding the ``body`` block. See `email_template.html `_ for reference implementation. + +Shared NetJSONGraph Assets +-------------------------- + +``openwisp-utils`` provides the unbundled ECharts variant of ``netjsongraph.js`` (and its base CSS themes) so it can be reused across different OpenWISP modules without redundantly bundling Leaflet JS. + +These files are served via the ``openwisp_utils.admin_theme`` app. You can include them in other OpenWISP modules using the ``static`` template tag: + +.. code-block:: html+django + + {% load static %} + + + diff --git a/openwisp_utils/static/netjsongraph/css/netjsongraph-theme.css b/openwisp_utils/admin_theme/static/lib/netjsongraph/css/netjsongraph-theme.css similarity index 100% rename from openwisp_utils/static/netjsongraph/css/netjsongraph-theme.css rename to openwisp_utils/admin_theme/static/lib/netjsongraph/css/netjsongraph-theme.css diff --git a/openwisp_utils/static/netjsongraph/css/netjsongraph.css b/openwisp_utils/admin_theme/static/lib/netjsongraph/css/netjsongraph.css similarity index 100% rename from openwisp_utils/static/netjsongraph/css/netjsongraph.css rename to openwisp_utils/admin_theme/static/lib/netjsongraph/css/netjsongraph.css diff --git a/openwisp_utils/static/netjsongraph/js/netjsongraph.echarts.min.js b/openwisp_utils/admin_theme/static/lib/netjsongraph/js/netjsongraph.echarts.min.js similarity index 100% rename from openwisp_utils/static/netjsongraph/js/netjsongraph.echarts.min.js rename to openwisp_utils/admin_theme/static/lib/netjsongraph/js/netjsongraph.echarts.min.js From d0c817e0065aa7b4e1735d8bdd47a0b7e85d5921 Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 15 May 2026 22:43:30 +0530 Subject: [PATCH 3/8] [docs] Fix RST formatting in admin-theme docs #517 Adjusted line lengths and spacing in admin-theme.rst to comply with the project's ReStructuredText style guidelines and pass CI formatting checks. Fixes #517 --- docs/developer/admin-theme.rst | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/docs/developer/admin-theme.rst b/docs/developer/admin-theme.rst index d5057ae91..18c5b09ee 100644 --- a/docs/developer/admin-theme.rst +++ b/docs/developer/admin-theme.rst @@ -290,13 +290,18 @@ for reference implementation. Shared NetJSONGraph Assets -------------------------- -``openwisp-utils`` provides the unbundled ECharts variant of ``netjsongraph.js`` (and its base CSS themes) so it can be reused across different OpenWISP modules without redundantly bundling Leaflet JS. +``openwisp-utils`` provides the unbundled ECharts variant of +``netjsongraph.js`` (and its base CSS themes) so it can be reused +across different OpenWISP modules without redundantly bundling +Leaflet JS. -These files are served via the ``openwisp_utils.admin_theme`` app. You can include them in other OpenWISP modules using the ``static`` template tag: +These files are served via the ``openwisp_utils.admin_theme`` app. +You can include them in other OpenWISP modules using the ``static`` +template tag: .. code-block:: html+django {% load static %} - + \ No newline at end of file From c09ac344dfe7d6613e42fa7de6ca97db34d43a47 Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 15 May 2026 22:50:46 +0530 Subject: [PATCH 4/8] [docs] Add missing newline at end of admin-theme.rst #517 Added a blank line at the end of the documentation file to satisfy the 'Blank endline' check in the CI pipeline. Fixes #517 --- docs/developer/admin-theme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer/admin-theme.rst b/docs/developer/admin-theme.rst index 18c5b09ee..cfd1ca35d 100644 --- a/docs/developer/admin-theme.rst +++ b/docs/developer/admin-theme.rst @@ -304,4 +304,4 @@ template tag: {% load static %} - \ No newline at end of file + From f15d6d9953de04142c9bf7b28869a1c4f8a1b2fc Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 15 May 2026 23:19:11 +0530 Subject: [PATCH 5/8] [docs] Standardize RST formatting for shared assets #517 Updated section hierarchy to Level 3, matched underline length, and corrected code block indentation to pass CI checks. Fixes #517 --- docs/developer/admin-theme.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/developer/admin-theme.rst b/docs/developer/admin-theme.rst index cfd1ca35d..cce6cc3e7 100644 --- a/docs/developer/admin-theme.rst +++ b/docs/developer/admin-theme.rst @@ -288,7 +288,7 @@ Similarly, you can customize the HTML of the template by overriding the for reference implementation. Shared NetJSONGraph Assets --------------------------- +~~~~~~~~~~~~~~~~~~~~~~~~~~ ``openwisp-utils`` provides the unbundled ECharts variant of ``netjsongraph.js`` (and its base CSS themes) so it can be reused From 7af1b246bbea327fdeef971cf241589992af9ea2 Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 15 May 2026 23:37:24 +0530 Subject: [PATCH 6/8] [docs] Auto-format admin-theme docs using openwisp-qa-format #517 Applied official OpenWISP formatting rules to the documentation to resolve CI linting errors. Fixes #517 --- docs/developer/admin-theme.rst | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/docs/developer/admin-theme.rst b/docs/developer/admin-theme.rst index cce6cc3e7..86333a8b7 100644 --- a/docs/developer/admin-theme.rst +++ b/docs/developer/admin-theme.rst @@ -291,13 +291,11 @@ Shared NetJSONGraph Assets ~~~~~~~~~~~~~~~~~~~~~~~~~~ ``openwisp-utils`` provides the unbundled ECharts variant of -``netjsongraph.js`` (and its base CSS themes) so it can be reused -across different OpenWISP modules without redundantly bundling -Leaflet JS. +``netjsongraph.js`` (and its base CSS themes) so it can be reused across +different OpenWISP modules without redundantly bundling Leaflet JS. -These files are served via the ``openwisp_utils.admin_theme`` app. -You can include them in other OpenWISP modules using the ``static`` -template tag: +These files are served via the ``openwisp_utils.admin_theme`` app. You can +include them in other OpenWISP modules using the ``static`` template tag: .. code-block:: html+django From 19bba452d63974f6098d27486cdd21f94dff7255 Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Fri, 22 May 2026 16:52:06 +0530 Subject: [PATCH 7/8] [docs] Update netjsongraph.js shared assets documentation #517 Updated admin-theme.rst to accurately describe the unbundled netjsongraph.js library and its usage across OpenWISP modules. Replaced the previous description with the maintainer-approved wording, including proper GitHub links and cross-references to the monitoring and network-topology documentation. Fixes #517 --- docs/developer/admin-theme.rst | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) diff --git a/docs/developer/admin-theme.rst b/docs/developer/admin-theme.rst index 86333a8b7..0c2c403e3 100644 --- a/docs/developer/admin-theme.rst +++ b/docs/developer/admin-theme.rst @@ -287,12 +287,20 @@ Similarly, you can customize the HTML of the template by overriding the `_ for reference implementation. -Shared NetJSONGraph Assets -~~~~~~~~~~~~~~~~~~~~~~~~~~ +Shared Netjsongraph.js Assets +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -``openwisp-utils`` provides the unbundled ECharts variant of -``netjsongraph.js`` (and its base CSS themes) so it can be reused across -different OpenWISP modules without redundantly bundling Leaflet JS. +``openwisp-utils`` provides the unbundled ECharts variant of the +`netjsongraph.js `_ library +(and its base CSS themes) so it can be reused across different OpenWISP +modules without redundantly bundling Leaflet JS (which is already shipped +and loaded by django-leaflet). + +Other modules that use this library include monitoring (for the geographic +and indoor map) and network-topology for the topology graph. + +See :doc:`/monitoring/geo-indoor-maps` and :doc:`/network-topology/index` +for reference. These files are served via the ``openwisp_utils.admin_theme`` app. You can include them in other OpenWISP modules using the ``static`` template tag: From 17152da147c762936fd82ac7a6f84479409c208a Mon Sep 17 00:00:00 2001 From: Kunal Verma Date: Sat, 23 May 2026 21:13:11 +0530 Subject: [PATCH 8/8] [fix] Add missing echarts.min.js dependency #517 Added the missing echarts.min.js (v6.0.0) file to the unbundled static library directory. This ensures the ECharts library is properly loaded when requested by downstream modules like openwisp-monitoring and openwisp-network-topology, resolving the 404 Not Found error in the browser UI. Fixes #517 --- .../static/lib/netjsongraph/js/echarts.min.js | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 openwisp_utils/admin_theme/static/lib/netjsongraph/js/echarts.min.js diff --git a/openwisp_utils/admin_theme/static/lib/netjsongraph/js/echarts.min.js b/openwisp_utils/admin_theme/static/lib/netjsongraph/js/echarts.min.js new file mode 100644 index 000000000..22b33ffe0 --- /dev/null +++ b/openwisp_utils/admin_theme/static/lib/netjsongraph/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])},e(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(){this.firefox=!1,this.ie=!1,this.edge=!1,this.newEdge=!1,this.weChat=!1},r=new function(){this.browser=new i,this.node=!1,this.wxa=!1,this.worker=!1,this.svgSupported=!1,this.touchEventsSupported=!1,this.pointerEventsSupported=!1,this.domSupported=!1,this.transformSupported=!1,this.transform3dSupported=!1,this.hasGlobalWindow="undefined"!=typeof window};"object"==typeof wx&&"function"==typeof wx.getSystemInfoSync?(r.wxa=!0,r.touchEventsSupported=!0):"undefined"==typeof document&&"undefined"!=typeof self?r.worker=!0:!r.hasGlobalWindow||"Deno"in window||"undefined"!=typeof navigator&&"string"==typeof navigator.userAgent&&navigator.userAgent.indexOf("Node.js")>-1?(r.node=!0,r.svgSupported=!0):function(t,e){var n=e.browser,i=t.match(/Firefox\/([\d.]+)/),r=t.match(/MSIE\s([\d.]+)/)||t.match(/Trident\/.+?rv:(([\d.]+))/),o=t.match(/Edge?\/([\d.]+)/),a=/micromessenger/i.test(t);i&&(n.firefox=!0,n.version=i[1]);r&&(n.ie=!0,n.version=r[1]);o&&(n.edge=!0,n.version=o[1],n.newEdge=+o[1].split(".")[0]>18);a&&(n.weChat=!0);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);var s=e.domSupported="undefined"!=typeof document;if(s){var l=document.documentElement.style;e.transform3dSupported=(n.ie&&"transition"in l||n.edge||"WebKitCSSMatrix"in window&&"m11"in new WebKitCSSMatrix||"MozPerspective"in l)&&!("OTransition"in l),e.transformSupported=e.transform3dSupported||n.ie&&+n.version>=9}}(navigator.userAgent,r);var o="sans-serif",a="12px "+o;var s,l,u=function(t){var e={};if("undefined"==typeof JSON)return e;for(var n=0;n=0)o=r*t.length;else for(var h=0;h>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 e.clearMarkers=function(){z(n,(function(t){t.parentNode&&t.parentNode.removeChild(t)}))},n}(e,a),l=function(t,e,n){for(var i=n?"invTrans":"trans",r=e[i],o=e.srcCoords,a=[],s=[],l=!0,u=0;u<4;u++){var c=t[u].getBoundingClientRect(),h=2*u,d=c.left,p=c.top;a.push(d,p),l=l&&o&&d===o[h]&&p===o[h+1],s.push(t[u].offsetLeft,t[u].offsetTop)}return l&&r?r:(e.srcCoords=a,e[i]=n?Jt(s,a):Jt(a,s))}(s,a,o);if(l)return l(t,n,i),!0}return!1}function ne(t){return"CANVAS"===t.nodeName.toUpperCase()}var ie=/([&<>"'])/g,re={"&":"&","<":"<",">":">",'"':""","'":"'"};function oe(t){return null==t?"":(t+"").replace(ie,(function(t,e){return re[e]}))}var ae=/^(?:mouse|pointer|contextmenu|drag|drop)|click/,se=[],le=r.browser.firefox&&+r.browser.version.split(".")[0]<39;function ue(t,e,n,i){return n=n||{},i?ce(t,e,n):le&&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):ce(t,e,n),n}function ce(t,e,n){if(r.domSupported&&t.getBoundingClientRect){var i=e.clientX,o=e.clientY;if(ne(t)){var a=t.getBoundingClientRect();return n.zrX=i-a.left,void(n.zrY=o-a.top)}if(ee(se,t,i,o))return n.zrX=se[0],void(n.zrY=se[1])}n.zrX=n.zrY=0}function he(t){return t||window.event}function de(t,e,n){if(null!=(e=he(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&&ue(t,r,e,n)}else{ue(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&&ae.test(e.type)&&(e.which=1&a?1:2&a?3:4&a?2:0),e}function pe(t,e,n,i){t.addEventListener(e,n,i)}var fe=function(t){t.preventDefault(),t.stopPropagation(),t.cancelBubble=!0};function ge(t){return 2===t.which||3===t.which}var ye=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=ve(r)/ve(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}}}}};function xe(){return[1,0,0,1,0,0]}function _e(t){return t[0]=1,t[1]=0,t[2]=0,t[3]=1,t[4]=0,t[5]=0,t}function be(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 we(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 Se(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 Me(t,e,n,i){void 0===i&&(i=[0,0]);var r=e[0],o=e[2],a=e[4],s=e[1],l=e[3],u=e[5],c=Math.sin(n),h=Math.cos(n);return t[0]=r*h+s*c,t[1]=-r*c+s*h,t[2]=o*h+l*c,t[3]=-o*c+h*l,t[4]=h*(a-i[0])+c*(u-i[1])+i[0],t[5]=h*(u-i[1])-c*(a-i[0])+i[1],t}function Ie(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 Te(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 Ce(t){var e=[1,0,0,1,0,0];return be(e,t),e}var De=Object.freeze({__proto__:null,create:xe,identity:_e,copy:be,mul:we,translate:Se,rotate:Me,scale:Ie,invert:Te,clone:Ce}),Ae=function(){function t(t,e){this.x=t||0,this.y=e||0}return t.prototype.copy=function(t){return this.x=t.x,this.y=t.y,this},t.prototype.clone=function(){return new t(this.x,this.y)},t.prototype.set=function(t,e){return this.x=t,this.y=e,this},t.prototype.equal=function(t){return t.x===this.x&&t.y===this.y},t.prototype.add=function(t){return this.x+=t.x,this.y+=t.y,this},t.prototype.scale=function(t){this.x*=t,this.y*=t},t.prototype.scaleAndAdd=function(t,e){this.x+=t.x*e,this.y+=t.y*e},t.prototype.sub=function(t){return this.x-=t.x,this.y-=t.y,this},t.prototype.dot=function(t){return this.x*t.x+this.y*t.y},t.prototype.len=function(){return Math.sqrt(this.x*this.x+this.y*this.y)},t.prototype.lenSquare=function(){return this.x*this.x+this.y*this.y},t.prototype.normalize=function(){var t=this.len();return this.x/=t,this.y/=t,this},t.prototype.distance=function(t){var e=this.x-t.x,n=this.y-t.y;return Math.sqrt(e*e+n*n)},t.prototype.distanceSquare=function(t){var e=this.x-t.x,n=this.y-t.y;return e*e+n*n},t.prototype.negate=function(){return this.x=-this.x,this.y=-this.y,this},t.prototype.transform=function(t){if(t){var e=this.x,n=this.y;return this.x=t[0]*e+t[2]*n+t[4],this.y=t[1]*e+t[3]*n+t[5],this}},t.prototype.toArray=function(t){return t[0]=this.x,t[1]=this.y,t},t.prototype.fromArray=function(t){this.x=t[0],this.y=t[1]},t.set=function(t,e,n){t.x=e,t.y=n},t.copy=function(t,e){t.x=e.x,t.y=e.y},t.len=function(t){return Math.sqrt(t.x*t.x+t.y*t.y)},t.lenSquare=function(t){return t.x*t.x+t.y*t.y},t.dot=function(t,e){return t.x*e.x+t.y*e.y},t.add=function(t,e,n){t.x=e.x+n.x,t.y=e.y+n.y},t.sub=function(t,e,n){t.x=e.x-n.x,t.y=e.y-n.y},t.scale=function(t,e,n){t.x=e.x*n,t.y=e.y*n},t.scaleAndAdd=function(t,e,n,i){t.x=e.x+n.x*i,t.y=e.y+n.y*i},t.lerp=function(t,e,n,i){var r=1-i;t.x=r*e.x+i*n.x,t.y=r*e.y+i*n.y},t}(),ke=Math.min,Le=Math.max,Pe=Math.abs,Oe=["x","y"],Re=["width","height"],Ne=new Ae,ze=new Ae,Ee=new Ae,Be=new Ae,Ve=Ze(),Ge=Ve.minTv,Fe=Ve.maxTv,We=[0,0],He=function(){function t(e,n,i,r){t.set(this,e,n,i,r)}return t.set=function(t,e,n,i,r){return i<0&&(e+=i,i=-i),r<0&&(n+=r,r=-r),t.x=e,t.y=n,t.width=i,t.height=r,t},t.prototype.union=function(t){var e=ke(t.x,this.x),n=ke(t.y,this.y);isFinite(this.x)&&isFinite(this.width)?this.width=Le(t.x+t.width,this.x+this.width)-e:this.width=t.width,isFinite(this.y)&&isFinite(this.height)?this.height=Le(t.y+t.height,this.y+this.height)-n:this.height=t.height,this.x=e,this.y=n},t.prototype.applyTransform=function(e){t.applyTransform(this,this,e)},t.prototype.calculateTransform=function(t){var e=this,n=t.width/e.width,i=t.height/e.height,r=[1,0,0,1,0,0];return Se(r,r,[-e.x,-e.y]),Ie(r,r,[n,i]),Se(r,r,[t.x,t.y]),r},t.prototype.intersect=function(e,n,i){return t.intersect(this,e,n,i)},t.intersect=function(e,n,i,r){i&&Ae.set(i,0,0);var o=r&&r.outIntersectRect||null,a=r&&r.clamp;if(o&&(o.x=o.y=o.width=o.height=NaN),!e||!n)return!1;e instanceof t||(e=t.set(Ue,e.x,e.y,e.width,e.height)),n instanceof t||(n=t.set(Ye,n.x,n.y,n.width,n.height));var s=!!i;Ve.reset(r,s);var l=Ve.touchThreshold,u=e.x+l,c=e.x+e.width-l,h=e.y+l,d=e.y+e.height-l,p=n.x+l,f=n.x+n.width-l,g=n.y+l,y=n.y+n.height-l;if(u>c||h>d||p>f||g>y)return!1;var v=!(c=t.x&&e<=t.x+t.width&&n>=t.y&&n<=t.y+t.height},t.prototype.contain=function(e,n){return t.contain(this,e,n)},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){return t.x=e.x,t.y=e.y,t.width=e.width,t.height=e.height,t},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))}Ne.x=Ee.x=n.x,Ne.y=Be.y=n.y,ze.x=Be.x=n.x+n.width,ze.y=Ee.y=n.y+n.height,Ne.transform(i),Be.transform(i),ze.transform(i),Ee.transform(i),e.x=ke(Ne.x,ze.x,Ee.x,Be.x),e.y=ke(Ne.y,ze.y,Ee.y,Be.y);var l=Le(Ne.x,ze.x,Ee.x,Be.x),u=Le(Ne.y,ze.y,Ee.y,Be.y);e.width=l-e.x,e.height=u-e.y}else e!==n&&t.copy(e,n)},t}(),Ue=new He(0,0,0,0),Ye=new He(0,0,0,0);function Xe(t,e,n,i,r,o,a,s){var l=Pe(e-n),u=Pe(i-t),c=ke(l,u),h=Oe[r],d=Oe[1-r],p=Re[r];e=u||!Ve.bidirectional)&&(Ge[h]=-u,Ge[d]=0,Ve.useDir&&Ve.calcDirMTV())))}function Ze(){var t=0,e=new Ae,n=new Ae,i={minTv:new Ae,maxTv:new Ae,useDir:!1,dirMinTv:new Ae,touchThreshold:0,bidirectional:!0,negativeSize:!1,reset:function(r,o){i.touchThreshold=0,r&&null!=r.touchThreshold&&(i.touchThreshold=Le(0,r.touchThreshold)),i.negativeSize=!1,o&&(i.minTv.set(1/0,1/0),i.maxTv.set(0,0),i.useDir=!1,r&&null!=r.direction&&(i.useDir=!0,i.dirMinTv.copy(i.minTv),n.copy(i.minTv),t=r.direction,i.bidirectional=null==r.bidirectional||!!r.bidirectional,i.bidirectional||e.set(Math.cos(t),Math.sin(t))))},calcDirMTV:function(){var o=i.minTv,a=i.dirMinTv,s=o.y*o.y+o.x*o.x,l=Math.sin(t),u=Math.cos(t),c=l*o.y+u*o.x;r(c)?r(o.x)&&r(o.y)&&a.set(0,0):(n.x=s*u/c,n.y=s*l/c,r(n.x)&&r(n.y)?a.set(0,0):(i.bidirectional||e.dot(n)>0)&&n.len()=0;u--){var c=i[u];c===n||c.ignore||c.ignoreCoarsePointer||c.parent&&c.parent.ignoreCoarsePointer||(Qe.copy(c.getBoundingRect()),c.transform&&Qe.applyTransform(c.transform),Qe.intersect(l)&&o.push(c))}if(o.length)for(var h=Math.PI/12,d=2*Math.PI,p=0;p=0;o--){var a=t[o],s=void 0;if(a!==r&&!a.ignore&&(s=en(a,n,i))&&(!e.topTarget&&(e.topTarget=a),s!==je)){e.target=a;break}}}function rn(t,e,n){var i=t.painter;return e<0||e>i.getWidth()||n<0||n>i.getHeight()}z(["click","mousedown","mouseup","mousewheel","dblclick","contextmenu"],(function(t){tn.prototype[t]=function(e){var n,i,r=e.zrX,o=e.zrY,a=rn(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||Vt(this._downPoint,[e.zrX,e.zrY])>4)return;this._downPoint=null}this.dispatchToElement(n,t,e)}}));function on(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 an(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 sn(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+c])>0?a=c+1:l=c}return l}function ln(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+c])<0?l=c:a=c+1}return l}function un(t,e){var n,i,r=7,o=0,a=[];function s(s){var l=n[s],u=i[s],c=n[s+1],h=i[s+1];i[s]=u+h,s===o-3&&(n[s+1]=n[s+2],i[s+1]=i[s+2]),o--;var d=ln(t[c],t,l,u,0,e);l+=d,0!==(u-=d)&&0!==(h=sn(t[l+u-1],t,c,h,h-1,e))&&(u<=h?function(n,i,o,s){var l=0;for(l=0;l=7||p>=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[p+l]=t[d+l];return void(t[h]=a[c])}var f=r;for(;;){var g=0,y=0,v=!1;do{if(e(a[c],t[u])<0){if(t[h--]=t[u--],g++,y=0,0==--i){v=!0;break}}else if(t[h--]=a[c--],y++,g=0,1==--s){v=!0;break}}while((g|y)=0;l--)t[p+l]=t[d+l];if(0===i){v=!0;break}}if(t[h--]=a[c--],1==--s){v=!0;break}if(0!==(y=s-sn(t[u],a,0,s,s-1,e))){for(s-=y,p=(h-=y)+1,d=(c-=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(p=(h-=i)+1,d=(u-=i)+1,l=i-1;l>=0;l--)t[p+l]=t[d+l];t[h]=a[c]}else{if(0===s)throw new Error;for(d=h-(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=on(t,n,i,e))s&&(l=s),an(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 hn=!1;function dn(){hn||(hn=!0,console.warn("z / z2 / zlevel of displayable is invalid, which may cause unexpected errors"))}function pn(t,e){return t.zlevel===e.zlevel?t.z===e.z?t.z2-e.z2:t.z-e.z:t.zlevel-e.zlevel}var fn=function(){function t(){this._roots=[],this._displayList=[],this._displayListLen=0,this.displayableSortFunc=pn}return t.prototype.traverse=function(t,e){for(var n=0;n=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}(),gn=r.hasGlobalWindow&&(window.requestAnimationFrame&&window.requestAnimationFrame.bind(window)||window.msRequestAnimationFrame&&window.msRequestAnimationFrame.bind(window)||window.mozRequestAnimationFrame||window.webkitRequestAnimationFrame)||function(t){return setTimeout(t,16)},yn={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-yn.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*yn.bounceIn(2*t):.5*yn.bounceOut(2*t-1)+.5}},vn=Math.pow,mn=Math.sqrt,xn=1e-8,_n=1e-4,bn=mn(3),wn=1/3,Sn=It(),Mn=It(),In=It();function Tn(t){return t>-1e-8&&txn||t<-1e-8}function Dn(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 An(t,e,n,i,r){var o=1-r;return 3*(((e-t)*o+2*(n-e)*r)*o+(i-n)*r*r)}function kn(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,c=s*s-3*a*l,h=s*l-9*a*u,d=l*l-3*s*u,p=0;if(Tn(c)&&Tn(h)){if(Tn(s))o[0]=0;else(M=-l/s)>=0&&M<=1&&(o[p++]=M)}else{var f=h*h-4*c*d;if(Tn(f)){var g=h/c,y=-g/2;(M=-s/a+g)>=0&&M<=1&&(o[p++]=M),y>=0&&y<=1&&(o[p++]=y)}else if(f>0){var v=mn(f),m=c*s+1.5*a*(-h+v),x=c*s+1.5*a*(-h-v);(M=(-s-((m=m<0?-vn(-m,wn):vn(m,wn))+(x=x<0?-vn(-x,wn):vn(x,wn))))/(3*a))>=0&&M<=1&&(o[p++]=M)}else{var _=(2*c*s-3*a*h)/(2*mn(c*c*c)),b=Math.acos(_)/3,w=mn(c),S=Math.cos(b),M=(-s-2*w*S)/(3*a),I=(y=(-s+w*(S+bn*Math.sin(b)))/(3*a),(-s+w*(S-bn*Math.sin(b)))/(3*a));M>=0&&M<=1&&(o[p++]=M),y>=0&&y<=1&&(o[p++]=y),I>=0&&I<=1&&(o[p++]=I)}}return p}function Ln(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(Tn(a)){if(Cn(o))(c=-s/o)>=0&&c<=1&&(r[l++]=c)}else{var u=o*o-4*a*s;if(Tn(u))r[0]=-o/(2*a);else if(u>0){var c,h=mn(u),d=(-o-h)/(2*a);(c=(-o+h)/(2*a))>=0&&c<=1&&(r[l++]=c),d>=0&&d<=1&&(r[l++]=d)}}return l}function Pn(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,c=(l-s)*r+s,h=(c-u)*r+u;o[0]=t,o[1]=a,o[2]=u,o[3]=h,o[4]=h,o[5]=c,o[6]=l,o[7]=i}function On(t,e,n,i,r,o,a,s,l,u,c){var h,d,p,f,g,y=.005,v=1/0;Sn[0]=l,Sn[1]=u;for(var m=0;m<1;m+=.05)Mn[0]=Dn(t,n,r,a,m),Mn[1]=Dn(e,i,o,s,m),(f=Ft(Sn,Mn))=0&&f=0&&y=1?1:kn(0,i,o,1,t,s)&&Dn(0,r,a,1,s[0])}}}var Hn=function(){function t(t){this._inited=!1,this._startTime=0,this._pausedTime=0,this._paused=!1,this._life=t.life||1e3,this._delay=t.delay||0,this.loop=t.loop||!1,this.onframe=t.onframe||bt,this.ondestroy=t.ondestroy||bt,this.onrestart=t.onrestart||bt,t.easing&&this.setEasing(t.easing)}return t.prototype.step=function(t,e){if(this._inited||(this._startTime=t+this._delay,this._inited=!0),!this._paused){var n=this._life,i=t-this._startTime-this._pausedTime,r=i/n;r<0&&(r=0),r=Math.min(r,1);var o=this.easingFunc,a=o?o(r):r;if(this.onframe(a),1===r){if(!this.loop)return!0;var s=i%n;this._startTime=t-s,this._pausedTime=0,this.onrestart()}return!1}this._pausedTime+=e},t.prototype.pause=function(){this._paused=!0},t.prototype.resume=function(){this._paused=!1},t.prototype.setEasing=function(t){this.easing=t,this.easingFunc=Y(t)?t:yn[t]||Wn(t)},t}(),Un=function(t){this.value=t},Yn=function(){function t(){this._len=0}return t.prototype.insert=function(t){var e=new Un(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}(),Xn=function(){function t(t){this._list=new Yn,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 Un(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}(),Zn={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 jn(t){return(t=Math.round(t))<0?0:t>255?255:t}function qn(t){return t<0?0:t>1?1:t}function Kn(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?jn(parseFloat(e)/100*255):jn(parseInt(e,10))}function $n(t){var e=t;return e.length&&"%"===e.charAt(e.length-1)?qn(parseFloat(e)/100):qn(parseFloat(e))}function Jn(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 Qn(t,e,n){return t+(e-t)*n}function ti(t,e,n,i,r){return t[0]=e,t[1]=n,t[2]=i,t[3]=r,t}function ei(t,e){return t[0]=e[0],t[1]=e[1],t[2]=e[2],t[3]=e[3],t}var ni=new Xn(20),ii=null;function ri(t,e){ii&&ei(ii,e),ii=ni.put(t,ii||e.slice())}function oi(t,e){if(t){e=e||[];var n=ni.get(t);if(n)return ei(e,n);var i=(t+="").replace(/ /g,"").toLowerCase();if(i in Zn)return ei(e,Zn[i]),ri(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?(ti(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),ri(t,e),e):void ti(e,0,0,0,1):7===o||9===o?(r=parseInt(i.slice(1,7),16))>=0&&r<=16777215?(ti(e,(16711680&r)>>16,(65280&r)>>8,255&r,9===o?parseInt(i.slice(7),16)/255:1),ri(t,e),e):void ti(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(","),c=1;switch(l){case"rgba":if(4!==u.length)return 3===u.length?ti(e,+u[0],+u[1],+u[2],1):ti(e,0,0,0,1);c=$n(u.pop());case"rgb":return u.length>=3?(ti(e,Kn(u[0]),Kn(u[1]),Kn(u[2]),3===u.length?c:$n(u[3])),ri(t,e),e):void ti(e,0,0,0,1);case"hsla":return 4!==u.length?void ti(e,0,0,0,1):(u[3]=$n(u[3]),ai(u,e),ri(t,e),e);case"hsl":return 3!==u.length?void ti(e,0,0,0,1):(ai(u,e),ri(t,e),e);default:return}}ti(e,0,0,0,1)}}function ai(t,e){var n=(parseFloat(t[0])%360+360)%360/360,i=$n(t[1]),r=$n(t[2]),o=r<=.5?r*(i+1):r+i-r*i,a=2*r-o;return ti(e=e||[],jn(255*Jn(a,o,n+1/3)),jn(255*Jn(a,o,n)),jn(255*Jn(a,o,n-1/3)),1),4===t.length&&(e[3]=t[3]),e}function si(t,e){var n=oi(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 fi(n,4===n.length?"rgba":"rgb")}}function li(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]=jn(Qn(a[0],s[0],l)),n[1]=jn(Qn(a[1],s[1],l)),n[2]=jn(Qn(a[2],s[2],l)),n[3]=qn(Qn(a[3],s[3],l)),n}}var ui=li;function ci(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=oi(e[r]),s=oi(e[o]),l=i-r,u=fi([jn(Qn(a[0],s[0],l)),jn(Qn(a[1],s[1],l)),jn(Qn(a[2],s[2],l)),qn(Qn(a[3],s[3],l))],"rgba");return n?{color:u,leftIndex:r,rightIndex:o,value:i}:u}}var hi=ci;function di(t,e,n,i){var r=oi(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 c=((s-i)/6+l/2)/l,h=((s-r)/6+l/2)/l,d=((s-o)/6+l/2)/l;i===s?e=d-h:r===s?e=1/3+c-d:o===s&&(e=2/3+h-c),e<0&&(e+=1),e>1&&(e-=1)}var p=[360*e,n,u];return null!=t[3]&&p.push(t[3]),p}}(r),null!=e&&(r[0]=function(t){return(t=Math.round(t))<0?0:t>360?360:t}(Y(e)?e(r[0]):e)),null!=n&&(r[1]=$n(Y(n)?n(r[1]):n)),null!=i&&(r[2]=$n(Y(i)?i(r[2]):i)),fi(ai(r),"rgba")}function pi(t,e){var n=oi(t);if(n&&null!=e)return n[3]=qn(e),fi(n,"rgba")}function fi(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 gi(t,e){var n=oi(t);return n?(.299*n[0]+.587*n[1]+.114*n[2])*n[3]/255+(1-n[3])*e:0}var yi=new Xn(100);function vi(t){if(X(t)){var e=yi.get(t);return e||(e=si(t,-.1),yi.put(t,e)),e}if(Q(t)){var n=A({},t);return n.colorStops=E(t.colorStops,(function(t){return{offset:t.offset,color:si(t.color,-.1)}})),n}return t}var mi=Object.freeze({__proto__:null,parseCssInt:Kn,parseCssFloat:$n,parse:oi,lift:si,toHex:function(t){var e=oi(t);if(e)return((1<<24)+(e[0]<<16)+(e[1]<<8)+ +e[2]).toString(16).slice(1)},fastLerp:li,fastMapToColor:ui,lerp:ci,mapToColor:hi,modifyHSL:di,modifyAlpha:pi,stringify:fi,lum:gi,random:function(){return fi([Math.round(255*Math.random()),Math.round(255*Math.random()),Math.round(255*Math.random())],"rgb")},liftColor:vi}),xi=Math.round;function _i(t){var e;if(t&&"transparent"!==t){if("string"==typeof t&&t.indexOf("rgba")>-1){var n=oi(t);n&&(t="rgb("+n[0]+","+n[1]+","+n[2]+")",e=n[3])}}else t="none";return{color:t,opacity:null==e?1:e}}var bi=1e-4;function wi(t){return t-1e-4}function Si(t){return xi(1e3*t)/1e3}function Mi(t){return xi(1e4*t)/1e4}var Ii={left:"start",right:"end",center:"middle",middle:"middle"};function Ti(t){return t&&!!t.image}function Ci(t){return Ti(t)||function(t){return t&&!!t.svgElement}(t)}function Di(t){return"linear"===t.type}function Ai(t){return"radial"===t.type}function ki(t){return t&&("linear"===t.type||"radial"===t.type)}function Li(t){return"url(#"+t+")"}function Pi(t){var e=t.getGlobalScale(),n=Math.max(e[0],e[1]);return Math.max(Math.ceil(Math.log(n)/Math.log(10)),1)}function Oi(t){var e=t.x||0,n=t.y||0,i=(t.rotation||0)*wt,r=rt(t.scaleX,1),o=rt(t.scaleY,1),a=t.skewX||0,s=t.skewY||0,l=[];return(e||n)&&l.push("translate("+e+"px,"+n+"px)"),i&&l.push("rotate("+i+")"),1===r&&1===o||l.push("scale("+r+","+o+")"),(a||s)&&l.push("skew("+xi(a*wt)+"deg, "+xi(s*wt)+"deg)"),l.join(" ")}var Ri=r.hasGlobalWindow&&Y(window.btoa)?function(t){return window.btoa(unescape(encodeURIComponent(t)))}:"undefined"!=typeof Buffer?function(t){return Buffer.from(t).toString("base64")}:function(t){return null},Ni=Array.prototype.slice;function zi(t,e,n){return(e-t)*n+t}function Ei(t,e,n,i){for(var r=e.length,o=0;oi?e:t,o=Math.min(n,i),a=r[o-1]||{color:[0,0,0,0],offset:0},s=o;sa)i.length=a;else for(var s=o;s=1},t.prototype.getAdditiveTrack=function(){return this._additiveTrack},t.prototype.addKeyframe=function(t,e,n){this._needsSort=!0;var i=this.keyframes,r=i.length,o=!1,a=6,s=e;if(N(e)){var l=function(t){return N(t&&t[0])?2:1}(e);a=l,(1===l&&!j(e[0])||2===l&&!j(e[0][0]))&&(o=!0)}else if(j(e)&&!nt(e))a=0;else if(X(e))if(isNaN(+e)){var u=oi(e);u&&(s=u,a=3)}else a=0;else if(Q(e)){var c=A({},s);c.colorStops=E(e.colorStops,(function(t){return{offset:t.offset,color:oi(t.color)}})),Di(e)?a=4:Ai(e)&&(a=5),s=c}0===r?this.valType=a:a===this.valType&&6!==a||(o=!0),this.discrete=this.discrete||o;var h={time:t,value:s,rawValue:e,percent:0};return n&&(h.easing=n,h.easingFunc=Y(n)?n:yn[n]||Wn(n)),i.push(h),h},t.prototype.prepare=function(t,e){var n=this.keyframes;this._needsSort&&n.sort((function(t,e){return t.time-e.time}));for(var i=this.valType,r=n.length,o=n[r-1],a=this.discrete,s=Yi(i),l=Ui(i),u=0;u=0&&!(l[n].percent<=e);n--);n=p(n,u-2)}else{for(n=d;ne);n++);n=p(n-1,u-2)}r=l[n+1],i=l[n]}if(i&&r){this._lastFr=n,this._lastFrP=e;var f=r.percent-i.percent,g=0===f?1:p((e-i.percent)/f,1);r.easingFunc&&(g=r.easingFunc(g));var y=o?this._additiveValue:h?Xi:t[c];if(!Yi(s)&&!h||y||(y=this._additiveValue=[]),this.discrete)t[c]=g<1?i.rawValue:r.rawValue;else if(Yi(s))1===s?Ei(y,i[a],r[a],g):function(t,e,n,i){for(var r=e.length,o=r&&e[0].length,a=0;a0&&s.addKeyframe(0,Wi(l),i),this._trackKeys.push(a)}s.addKeyframe(t,Wi(e[a]),i)}return this._maxTime=Math.max(this._maxTime,t),this},t.prototype.pause=function(){this._clip.pause(),this._paused=!0},t.prototype.resume=function(){this._clip.resume(),this._paused=!1},t.prototype.isPaused=function(){return!!this._paused},t.prototype.duration=function(t){return this._maxTime=t,this._force=!0,this},t.prototype._doneCallback=function(){this._setTracksFinished(),this._clip=null;var t=this._doneCbs;if(t)for(var e=t.length,n=0;n0)){this._started=1;for(var e=this,n=[],i=this._maxTime||0,r=0;r1){var a=o.pop();r.addKeyframe(a.time,t[i]),r.prepare(this._maxTime,r.getAdditiveTrack())}}}},t}();function qi(){return(new Date).getTime()}var Ki,$i,Ji=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}return n(e,t),e.prototype.addClip=function(t){t.animation&&this.removeClip(t),this._head?(this._tail.next=t,t.prev=this._tail,t.next=null,this._tail=t):this._head=this._tail=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._head=n,n?n.prev=e:this._tail=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=qi()-this._pausedTime,n=e-this._time,i=this._head;i;){var r=i.next;i.step(e,n)?(i.ondestroy(),this.removeClip(i),i=r):i=r}this._time=e,t||(this.trigger("frame",n),this.stage.update&&this.stage.update())},e.prototype._startLoop=function(){var t=this;this._running=!0,gn((function e(){t._running&&(gn(e),!t._paused&&t.update())}))},e.prototype.start=function(){this._running||(this._time=qi(),this._pausedTime=0,this._startLoop())},e.prototype.stop=function(){this._running=!1},e.prototype.pause=function(){this._paused||(this._pauseStart=qi(),this._paused=!0)},e.prototype.resume=function(){this._paused&&(this._pausedTime+=qi()-this._pauseStart,this._paused=!1)},e.prototype.clear=function(){for(var t=this._head;t;){var e=t.next;t.prev=t.next=t.animation=null,t=e}this._head=this._tail=null},e.prototype.isFinished=function(){return null==this._head},e.prototype.animate=function(t,e){e=e||{},this.start();var n=new ji(t,e.loop);return this.addAnimator(n),n},e}(qt),Qi=r.domSupported,tr=($i={pointerdown:1,pointerup:1,pointermove:1,pointerout:1},{mouse:Ki=["click","dblclick","mousewheel","wheel","mouseout","mouseup","mousedown","mousemove","contextmenu"],touch:["touchstart","touchend","touchmove"],pointer:E(Ki,(function(t){var e=t.replace("mouse","pointer");return $i.hasOwnProperty(e)?e:t}))}),er=["mousemove","mouseup"],nr=["pointermove","pointerup"],ir=!1;function rr(t){var e=t.pointerType;return"pen"===e||"touch"===e}function or(t){t&&(t.zrByTouch=!0)}function ar(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 sr=function(t,e){this.stopPropagation=bt,this.stopImmediatePropagation=bt,this.preventDefault=bt,this.type=e.type,this.target=this.currentTarget=t.dom,this.pointerType=e.pointerType,this.clientX=e.clientX,this.clientY=e.clientY},lr={mousedown:function(t){t=de(this.dom,t),this.__mayPointerCapture=[t.zrX,t.zrY],this.trigger("mousedown",t)},mousemove:function(t){t=de(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=de(this.dom,t),this.__togglePointerCapture(!1),this.trigger("mouseup",t)},mouseout:function(t){ar(this,(t=de(this.dom,t)).toElement||t.relatedTarget)||(this.__pointerCapturing&&(t.zrEventControl="no_globalout"),this.trigger("mouseout",t))},wheel:function(t){ir=!0,t=de(this.dom,t),this.trigger("mousewheel",t)},mousewheel:function(t){ir||(t=de(this.dom,t),this.trigger("mousewheel",t))},touchstart:function(t){or(t=de(this.dom,t)),this.__lastTouchMoment=new Date,this.handler.processGesture(t,"start"),lr.mousemove.call(this,t),lr.mousedown.call(this,t)},touchmove:function(t){or(t=de(this.dom,t)),this.handler.processGesture(t,"change"),lr.mousemove.call(this,t)},touchend:function(t){or(t=de(this.dom,t)),this.handler.processGesture(t,"end"),lr.mouseup.call(this,t),+new Date-+this.__lastTouchMoment<300&&lr.click.call(this,t)},pointerdown:function(t){lr.mousedown.call(this,t)},pointermove:function(t){rr(t)||lr.mousemove.call(this,t)},pointerup:function(t){lr.mouseup.call(this,t)},pointerout:function(t){rr(t)||lr.mouseout.call(this,t)}};z(["click","dblclick","contextmenu"],(function(t){lr[t]=function(e){e=de(this.dom,e),this.trigger(t,e)}}));var ur={pointermove:function(t){rr(t)||ur.mousemove.call(this,t)},pointerup:function(t){ur.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 cr(t,e){var n=e.domHandlers;r.pointerEventsSupported?z(tr.pointer,(function(i){dr(e,i,(function(e){n[i].call(t,e)}))})):(r.touchEventsSupported&&z(tr.touch,(function(i){dr(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)}))})),z(tr.mouse,(function(i){dr(e,i,(function(r){r=he(r),e.touching||n[i].call(t,r)}))})))}function hr(t,e){function n(n){dr(e,n,(function(i){i=he(i),ar(t,i.target)||(i=function(t,e){return de(t.dom,new sr(t,e),!0)}(t,i),e.domHandlers[n].call(t,i))}),{capture:!0})}r.pointerEventsSupported?z(nr,n):r.touchEventsSupported||z(er,n)}function dr(t,e,n,i){t.mounted[e]=n,t.listenerOpts[e]=i,pe(t.domTarget,e,n,i)}function pr(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],e.removeEventListener(n,i,r));t.mounted={}}var fr=function(t,e){this.mounted={},this.listenerOpts={},this.touching=!1,this.domTarget=t,this.domHandlers=e},gr=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 fr(e,lr),Qi&&(i._globalHandlerScope=new fr(document,ur)),cr(i,i._localHandlerScope),i}return n(e,t),e.prototype.dispose=function(){pr(this._localHandlerScope),Qi&&pr(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,Qi&&+this.__pointerCapturing^+t){this.__pointerCapturing=t;var e=this._globalHandlerScope;t?hr(this,e):pr(e)}},e}(qt),yr=1;r.hasGlobalWindow&&(yr=Math.max(window.devicePixelRatio||window.screen&&window.screen.deviceXDPI/window.screen.logicalXDPI||1,1));var vr=yr,mr="#333",xr="#ccc",_r=_e,br=5e-5;function wr(t){return t>br||t<-5e-5}var Sr,Mr=[],Ir=[],Tr=[1,0,0,1,0,0],Cr=Math.abs,Dr=function(){function t(){}var e;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 wr(this.rotation)||wr(this.x)||wr(this.y)||wr(this.scaleX-1)||wr(this.scaleY-1)||wr(this.skewX)||wr(this.skewY)},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):_r(n),t&&(e?we(n,t,n):be(n,t)),this.transform=n,this._resolveGlobalScaleRatio(n)):n&&(_r(n),this.invTransform=null)},t.prototype._resolveGlobalScaleRatio=function(t){var e=this.globalScaleRatio;if(null!=e&&1!==e){this.getGlobalScale(Mr);var n=Mr[0]<0?-1:1,i=Mr[1]<0?-1:1,r=((Mr[0]-n)*e+n)/Mr[0]||0,o=((Mr[1]-i)*e+i)/Mr[1]||0;t[0]*=r,t[1]*=r,t[2]*=o,t[3]*=o}this.invTransform=this.invTransform||[1,0,0,1,0,0],Te(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&&(t.invTransform=t.invTransform||[1,0,0,1,0,0],we(Ir,t.invTransform,e),e=Ir);var n=this.originX,i=this.originY;(n||i)&&(Tr[4]=n,Tr[5]=i,we(Ir,e,Tr),Ir[4]-=n,Ir[5]-=i,e=Ir),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&&Ht(n,n,i),n},t.prototype.transformCoordToGlobal=function(t,e){var n=[t,e],i=this.transform;return i&&Ht(n,n,i),n},t.prototype.getLineScale=function(){var t=this.transform;return t&&Cr(t[0]-1)>1e-10&&Cr(t[3]-1)>1e-10?Math.sqrt(Cr(t[0]*t[3]-t[2]*t[1])):1},t.prototype.copyTransform=function(t){kr(this,t)},t.getLocalTransform=function(t,e){e=e||[];var n=t.originX||0,i=t.originY||0,r=t.scaleX,o=t.scaleY,a=t.anchorX,s=t.anchorY,l=t.rotation||0,u=t.x,c=t.y,h=t.skewX?Math.tan(t.skewX):0,d=t.skewY?Math.tan(-t.skewY):0;if(n||i||a||s){var p=n+a,f=i+s;e[4]=-p*r-h*f*o,e[5]=-f*o-d*p*r}else e[4]=e[5]=0;return e[0]=r,e[3]=o,e[1]=d*r,e[2]=h*o,l&&Me(e,e,l),e[4]+=n+u,e[5]+=i+c,e},t.initDefaultProps=((e=t.prototype).scaleX=e.scaleY=e.globalScaleRatio=1,void(e.x=e.y=e.originX=e.originY=e.skewX=e.skewY=e.rotation=e.anchorX=e.anchorY=0)),t}(),Ar=["x","y","originX","originY","anchorX","anchorY","rotation","scaleX","scaleY","skewX","skewY"];function kr(t,e){for(var n=0;n=Or)){t=t||a;for(var e=[],n=+new Date,i=0;i<=127;i++)e[i]=c.measureText(String.fromCharCode(i),t).width;var r=+new Date-n;return r>16?Pr=Or:r>2&&Pr++,e}}(t.font),t.asciiWidthMapTried=!0),0<=e&&e<=127?null!=t.asciiWidthMap?t.asciiWidthMap[e]:t.asciiCharWidth:t.stWideCharWidth}function Nr(t,e){var n=t.strWidthCache,i=n.get(e);return null==i&&(i=c.measureText(e,t.font).width,n.put(e,i)),i}function zr(t,e,n,i){var r=Nr(Lr(e),t),o=Gr(e),a=Br(0,r,n),s=Vr(0,o,i);return new He(a,s,r,o)}function Er(t,e,n,i){var r=((t||"")+"").split("\n");if(1===r.length)return zr(r[0],e,n,i);for(var o=new He(0,0,0,0),a=0;a=0?parseFloat(t)/100*e:parseFloat(t):t}function Wr(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,c="left",h="top";if(i instanceof Array)l+=Fr(i[0],n.width),u+=Fr(i[1],n.height),c=null,h=null;else switch(i){case"left":l-=r,u+=s,c="right",h="middle";break;case"right":l+=r+a,u+=s,h="middle";break;case"top":l+=a/2,u-=r,c="center",h="bottom";break;case"bottom":l+=a/2,u+=o+r,c="center";break;case"inside":l+=a/2,u+=s,c="center",h="middle";break;case"insideLeft":l+=r,u+=s,h="middle";break;case"insideRight":l+=a-r,u+=s,c="right",h="middle";break;case"insideTop":l+=a/2,u+=r,c="center";break;case"insideBottom":l+=a/2,u+=o-r,c="center",h="bottom";break;case"insideTopLeft":l+=r,u+=r;break;case"insideTopRight":l+=a-r,u+=r,c="right";break;case"insideBottomLeft":l+=r,u+=o-r,h="bottom";break;case"insideBottomRight":l+=a-r,u+=o-r,c="right",h="bottom"}return(t=t||{}).x=l,t.y=u,t.align=c,t.verticalAlign=h,t}var Hr="__zr_normal__",Ur=Ar.concat(["ignore"]),Yr=B(Ar,(function(t,e){return t[e]=!0,t}),{ignore:!1}),Xr={},Zr=new He(0,0,0,0),jr=[],qr=function(){function t(t){this.id=M(),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;r.copyTransform(e);var u=null!=n.position,c=n.autoOverflowArea,h=void 0;if((c||u)&&(h=Zr,n.layoutRect?h.copy(n.layoutRect):h.copy(this.getBoundingRect()),i||h.applyTransform(this.transform)),u){this.calculateTextPosition?this.calculateTextPosition(Xr,n,h):Wr(Xr,n,h),r.x=Xr.x,r.y=Xr.y,o=Xr.align,a=Xr.verticalAlign;var d=n.origin;if(d&&null!=n.rotation){var p=void 0,f=void 0;"center"===d?(p=.5*h.width,f=.5*h.height):(p=Fr(d[0],h.width),f=Fr(d[1],h.height)),l=!0,r.originX=-r.x+p+(i?0:h.x),r.originY=-r.y+f+(i?0:h.y)}}null!=n.rotation&&(r.rotation=n.rotation);var g=n.offset;g&&(r.x+=g[0],r.y+=g[1],l||(r.originX=-g[0],r.originY=-g[1]));var y=this._innerTextDefaultStyle||(this._innerTextDefaultStyle={});if(c){var v=y.overflowRect=y.overflowRect||new He(0,0,0,0);r.getLocalTransform(jr),Te(jr,jr),He.copy(v,h),v.applyTransform(jr)}else y.overflowRect=null;var m=void 0,x=void 0,_=void 0;(null==n.inside?"string"==typeof n.position&&n.position.indexOf("inside")>=0:n.inside)&&this.canBeInsideText()?(m=n.insideFill,x=n.insideStroke,null!=m&&"auto"!==m||(m=this.getInsideTextFill()),null!=x&&"auto"!==x||(x=this.getInsideTextStroke(m),_=!0)):(m=n.outsideFill,x=n.outsideStroke,null!=m&&"auto"!==m||(m=this.getOutsideFill()),null!=x&&"auto"!==x||(x=this.getOutsideStroke(m),_=!0)),(m=m||"#000")===y.fill&&x===y.stroke&&_===y.autoStroke&&o===y.align&&a===y.verticalAlign||(s=!0,y.fill=m,y.stroke=x,y.autoStroke=_,y.align=o,y.verticalAlign=a,e.setDefaultTextStyle(y)),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()?xr:mr},t.prototype.getOutsideStroke=function(t){var e=this.__zr&&this.__zr.getBackgroundColor(),n="string"==typeof e&&oi(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,fi(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||{},A(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(q(t))for(var n=F(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(Hr,!1,t)},t.prototype.useState=function(t,e,n,i){var r=t===Hr;if(this.hasState()||!r){var o=this.currentStates,a=this.stateTransition;if(!(P(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,c=this._textGuide;return u&&u.useState(t,e,n,l),c&&c.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}I("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,p);var f=this._textContent,g=this._textGuide;f&&f.useStates(t,e,h),g&&g.useStates(t,e,h),this._updateAnimationTargets(),this.currentStates=t.slice(),this.markRedraw(),!h&&this.__inHover&&(this._toggleHoverLayerFlag(!1),this.__dirty&=-2)}else this.clearStates()},t.prototype.isSilent=function(){for(var t=this;t;){if(t.silent)return!0;var e=t.__hostTarget;t=e?t.ignoreHostSilent?null:e:t.parent}return!1},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=P(i,t),o=P(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;o0&&n.during&&o[0].during((function(t,e){n.during(e)}));for(var d=0;d0||r.force&&!a.length){var w,S=void 0,M=void 0,I=void 0;if(s){M={},d&&(S={});for(_=0;_=0&&(n.splice(i,0,t),this._doAdd(t))}return this},e.prototype.replace=function(t,e){var n=P(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=P(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._disposed||(this.animation.start(),this._stillFrameAccum=0)},t.prototype.refreshHover=function(){this._needsRefreshHover=!0},t.prototype.refreshHoverImmediately=function(){this._disposed||(this._needsRefreshHover=!1,this.painter.refreshHover&&"canvas"===this.painter.getType()&&this.painter.refreshHover())},t.prototype.resize=function(t){this._disposed||(t=t||{},this.painter.resize(t.width,t.height),this.handler.resize())},t.prototype.clearAnimation=function(){this._disposed||this.animation.clear()},t.prototype.getWidth=function(){if(!this._disposed)return this.painter.getWidth()},t.prototype.getHeight=function(){if(!this._disposed)return this.painter.getHeight()},t.prototype.setCursorStyle=function(t){this._disposed||this.handler.setCursorStyle(t)},t.prototype.findHover=function(t,e){if(!this._disposed)return this.handler.findHover(t,e)},t.prototype.on=function(t,e,n){return this._disposed||this.handler.on(t,e,n),this},t.prototype.off=function(t,e){this._disposed||this.handler.off(t,e)},t.prototype.trigger=function(t,e){this._disposed||this.handler.trigger(t,e)},t.prototype.clear=function(){if(!this._disposed){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}var yo=function(t,e,n){switch(t){case"center":case"middle":t="50%";break;case"left":case"top":t="0%";break;case"right":case"bottom":t="100%"}return vo(t,e,n)};function vo(t,e,n){return X(t)?(i=t,i.replace(/^\s+|\s+$/g,"")).match(/%$/)?parseFloat(t)/100*e+(n||0):parseFloat(t):null==t?NaN:+t;var i}function mo(t,e,n){return null==e&&(e=10),e=Math.min(Math.max(0,e),20),t=(+t).toFixed(e),n?t:+t}function xo(t){return t.sort((function(t,e){return t-e})),t}function _o(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 bo(t)}function bo(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 wo(t,e){var n=Math.log,i=Math.LN10,r=Math.floor(n(t[1]-t[0])/i),o=Math.round(n(fo(e[1]-e[0]))/i),a=Math.min(Math.max(-r+o,0),20);return isFinite(a)?a:20}function So(t,e){var n=B(t,(function(t,e){return t+(isNaN(e)?0:e)}),0);if(0===n)return[];for(var i=Math.pow(10,e),r=E(t,(function(t){return(isNaN(t)?0:t)/n*i*100})),o=100*i,a=E(r,(function(t){return Math.floor(t)})),s=B(a,(function(t,e){return t+e}),0),l=E(r,(function(t,e){return t-a[e]}));su&&(u=l[h],c=h);++a[c],l[c]=0,++s}return E(a,(function(t){return t/i}))}function Mo(t,e){var n=Math.max(_o(t),_o(e)),i=t+e;return n>20?i:mo(i,n)}var Io=9007199254740991;function To(t){var e=2*Math.PI;return(t%e+e)%e}function Co(t){return t>-1e-4&&t=10&&e++,e}function Po(t,e){var n=Lo(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 Oo(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 Ro(t){t.sort((function(t,e){return s(t,e,0)?-1:1}));for(var e=-1/0,n=1,i=0;i0?t.length:0,this.item=null,this.key=NaN,this},t.prototype.next=function(){return(this._step>0?this._idx=this._end)&&(this.item=this._list[this._idx],this.key=this._idx=this._idx+this._step,!0)},t}();function ma(t){t.option=t.parentModel=t.ecModel=null}var xa="___EC__COMPONENT__CONTAINER___",_a="___EC__EXTENDED_CLASS___";function ba(t){var e={main:"",sub:""};if(t){var n=t.split(".");e.main=n[0]||"",e.sub=n[1]||""}return e}function wa(t,e){t.$constructor=t,t.extend=function(t){var e,i,r=this;return Y(i=r)&&/^class\s/.test(Function.prototype.toString.call(i))?e=function(t){function e(){return t.apply(this,arguments)||this}return n(e,t),e}(r):(e=function(){(t.$constructor||r).apply(this,arguments)},O(e,this)),A(e.prototype,t),e[_a]=!0,e.extend=this.extend,e.superCall=Ia,e.superApply=Ta,e.superClass=r,e}}function Sa(t,e){t.extend=e.extend}var Ma=Math.round(10*Math.random());function Ia(t,e){for(var n=[],i=2;i=0||r&&P(r,s)<0)){var l=n.getShallow(s,e);null!=l&&(o[t[a][0]]=l)}}return o}}var Aa=Da([["fill","color"],["shadowBlur"],["shadowOffsetX"],["shadowOffsetY"],["opacity"],["shadowColor"]]),ka=function(){function t(){}return t.prototype.getAreaStyle=function(t,e){return Aa(this,t,e)},t}(),La=new Xn(50);function Pa(t){if("string"==typeof t){var e=La.get(t);return e&&e.image}return t}function Oa(t,e,n,i,r){if(t){if("string"==typeof t){if(e&&e.__zrImageSrc===t||!n)return e;var o=La.get(t),a={hostEl:n,cb:i,cbPayload:r};return o?!Na(e=o.image)&&o.pending.push(a):((e=c.loadImage(t,Ra,Ra)).__zrImageSrc=t,La.put(t,e.__cachedImgObj={image:e,pending:[a]})),e}return t}return e}function Ra(){var t=this.__cachedImgObj;this.onload=this.onerror=this.__cachedImgObj=null;for(var e=0;e=s;u++)l-=s;var c=Nr(a,n);return c>l&&(n="",c=0),l=t-c,r.ellipsis=n,r.ellipsisWidth=c,r.contentWidth=l,r.containerWidth=t,r}function Va(t,e,n){var i=n.containerWidth,r=n.contentWidth,o=n.fontMeasureInfo;if(!i)return t.textLine="",void(t.isTruncated=!1);var a=Nr(o,e);if(a<=i)return t.textLine=e,void(t.isTruncated=!1);for(var s=0;;s++){if(a<=r||s>=n.maxIterations){e+=n.ellipsis;break}var l=0===s?Ga(e,r,o):a>0?Math.floor(e.length*r/a):0;a=Nr(o,e=e.substr(0,l))}""===e&&(e=n.placeholder),t.textLine=e,t.isTruncated=!0}function Ga(t,e,n){for(var i=0,r=0,o=t.length;r0&&f+i.accumWidth>i.width&&(o=e.split("\n"),h=!0),i.accumWidth=f}else{var g=Za(e,c,i.width,i.breakAll,i.accumWidth);i.accumWidth=g.accumWidth+p,a=g.linesWidths,o=g.lines}}o||(o=e.split("\n"));for(var y=Lr(c),v=0;v=32&&e<=591||e>=880&&e<=4351||e>=4608&&e<=5119||e>=7680&&e<=8303}(t)||!!Ya[t]}function Za(t,e,n,i,r){for(var o=[],a=[],s="",l="",u=0,c=0,h=Lr(e),d=0;dn:r+c+f>n)?c?(s||l)&&(g?(s||(s=l,l="",c=u=0),o.push(s),a.push(c-u),l+=p,s="",c=u+=f):(l&&(s+=l,l="",u=0),o.push(s),a.push(c),s=p,c=f)):g?(o.push(l),a.push(u),l=p,u=f):(o.push(p),a.push(f)):(c+=f,g?(l+=p,u+=f):(l&&(s+=l,l="",u=0),s+=p))}else l&&(s+=l,c+=u),o.push(s),a.push(c),s="",l="",u=0,c=0}return l&&(s+=l),s&&(o.push(s),a.push(c)),1===o.length&&(c+=r),{accumWidth:c,lines:o,linesWidths:a}}function ja(t,e,n,i,r,o){if(t.baseX=n,t.baseY=i,t.outerWidth=t.outerHeight=null,e){var a=2*e.width,s=2*e.height;He.set(qa,Br(n,a,r),Vr(i,s,o),a,s),He.intersect(e,qa,null,Ka);var l=Ka.outIntersectRect;t.outerWidth=l.width,t.outerHeight=l.height,t.baseX=Br(l.x,l.width,r,!0),t.baseY=Vr(l.y,l.height,o,!0)}}var qa=new He(0,0,0,0),Ka={outIntersectRect:{},clamp:!0};function $a(t){return null!=t?t+="":t=""}function Ja(t,e,n,i){var r=new He(Br(t.x||0,e,t.textAlign),Vr(t.y||0,n,t.textBaseline),e,n),o=null!=i?i:Qa(t)?t.lineWidth:0;return o>0&&(r.x-=o/2,r.y-=o/2,r.width+=o,r.height+=o),r}function Qa(t){var e=t.stroke;return null!=e&&"none"!==e&&t.lineWidth>0}var ts="__zr_style_"+Math.round(10*Math.random()),es={shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"#000",opacity:1,blend:"source-over"},ns={style:{shadowBlur:!0,shadowOffsetX:!0,shadowOffsetY:!0,shadowColor:!0,opacity:!0}};es[ts]=!0;var is=["z","z2","invisible"],rs=["invisible"],os=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=F(e),i=0;i1e-4)return s[0]=t-n,s[1]=e-i,l[0]=t+n,void(l[1]=e+i);if(ps[0]=hs(r)*n+t,ps[1]=cs(r)*i+e,fs[0]=hs(o)*n+t,fs[1]=cs(o)*i+e,u(s,ps,fs),c(l,ps,fs),(r%=ds)<0&&(r+=ds),(o%=ds)<0&&(o+=ds),r>o&&!a?o+=ds:rr&&(gs[0]=hs(p)*n+t,gs[1]=cs(p)*i+e,u(s,gs,s),c(l,gs,l))}var Ss={M:1,L:2,C:3,Q:4,A:5,Z:6,R:7},Ms=[],Is=[],Ts=[],Cs=[],Ds=[],As=[],ks=Math.min,Ls=Math.max,Ps=Math.cos,Os=Math.sin,Rs=Math.abs,Ns=Math.PI,zs=2*Ns,Es="undefined"!=typeof Float32Array,Bs=[];function Vs(t){return Math.round(t/Ns*1e8)/1e8%2*Ns}function Gs(t,e){var n=Vs(t[0]);n<0&&(n+=zs);var i=n-t[0],r=t[1];r+=i,!e&&r-n>=zs?r=n+zs:e&&n-r>=zs?r=n-zs:!e&&n>r?r=n+(zs-Vs(n-r)):e&&n0&&(this._ux=Rs(n/vr/t)||0,this._uy=Rs(n/vr/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._pathSegLen&&(this._pathSegLen=null,this._pathLen=0),this._version++},t.prototype.moveTo=function(t,e){return this._drawPendingPt(),this.addData(Ss.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=Rs(t-this._xi),i=Rs(e-this._yi),r=n>this._ux||i>this._uy;if(this.addData(Ss.L,t,e),this._ctx&&r&&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(Ss.C,t,e,n,i,r,o),this._ctx&&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(Ss.Q,t,e,n,i),this._ctx&&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(),Bs[0]=i,Bs[1]=r,Gs(Bs,o),i=Bs[0];var a=(r=Bs[1])-i;return this.addData(Ss.A,t,e,n,n,i,a,0,o?0:1),this._ctx&&this._ctx.arc(t,e,n,i,r,o),this._xi=Ps(r)*n+t,this._yi=Os(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(Ss.R,t,e,n,i),this},t.prototype.closePath=function(){this._drawPendingPt(),this.addData(Ss.Z);var t=this._ctx,e=this._x0,n=this._y0;return t&&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.len=function(){return this._len},t.prototype.setData=function(t){if(this._saveData){var e=t.length;this.data&&this.data.length===e||!Es||(this.data=new Float32Array(e));for(var n=0;n0&&o))for(var a=0;au.length&&(this._expandData(),u=this.data);for(var c=0;c0&&(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;e11&&(this.data=new Float32Array(t)))}},t.prototype.getBoundingRect=function(){Ts[0]=Ts[1]=Ds[0]=Ds[1]=Number.MAX_VALUE,Cs[0]=Cs[1]=As[0]=As[1]=-Number.MAX_VALUE;var t,e=this.data,n=0,i=0,r=0,o=0;for(t=0;tn||Rs(y)>i||h===e-1)&&(f=Math.sqrt(A*A+y*y),r=g,o=x);break;case Ss.C:var v=t[h++],m=t[h++],x=(g=t[h++],t[h++]),_=t[h++],b=t[h++];f=Rn(r,o,v,m,g,x,_,b,10),r=_,o=b;break;case Ss.Q:f=Gn(r,o,v=t[h++],m=t[h++],g=t[h++],x=t[h++],10),r=g,o=x;break;case Ss.A:var w=t[h++],S=t[h++],M=t[h++],I=t[h++],T=t[h++],C=t[h++],D=C+T;h+=1,p&&(a=Ps(T)*M+w,s=Os(T)*I+S),f=Ls(M,I)*ks(zs,Math.abs(C)),r=Ps(D)*M+w,o=Os(D)*I+S;break;case Ss.R:a=r=t[h++],s=o=t[h++],f=2*t[h++]+2*t[h++];break;case Ss.Z:var A=a-r;y=s-o;f=Math.sqrt(A*A+y*y),r=a,o=s}f>=0&&(l[c++]=f,u+=f)}return this._pathLen=u,u},t.prototype.rebuildPath=function(t,e){var n,i,r,o,a,s,l,u,c,h,d=this.data,p=this._ux,f=this._uy,g=this._len,y=e<1,v=0,m=0,x=0;if(!y||(this._pathSegLen||this._calculateLength(),l=this._pathSegLen,u=e*this._pathLen))t:for(var _=0;_0&&(t.lineTo(c,h),x=0),b){case Ss.M:n=r=d[_++],i=o=d[_++],t.moveTo(r,o);break;case Ss.L:a=d[_++],s=d[_++];var S=Rs(a-r),M=Rs(s-o);if(S>p||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,x=0}else{var T=S*S+M*M;T>x&&(c=a,h=s,x=T)}break;case Ss.C:var C=d[_++],D=d[_++],A=d[_++],k=d[_++],L=d[_++],P=d[_++];if(y){if(v+(j=l[m++])>u){Pn(r,C,A,L,I=(u-v)/j,Ms),Pn(o,D,k,P,I,Is),t.bezierCurveTo(Ms[1],Is[1],Ms[2],Is[2],Ms[3],Is[3]);break t}v+=j}t.bezierCurveTo(C,D,A,k,L,P),r=L,o=P;break;case Ss.Q:C=d[_++],D=d[_++],A=d[_++],k=d[_++];if(y){if(v+(j=l[m++])>u){Bn(r,C,A,I=(u-v)/j,Ms),Bn(o,D,k,I,Is),t.quadraticCurveTo(Ms[1],Is[1],Ms[2],Is[2]);break t}v+=j}t.quadraticCurveTo(C,D,A,k),r=A,o=k;break;case Ss.A:var O=d[_++],R=d[_++],N=d[_++],z=d[_++],E=d[_++],B=d[_++],V=d[_++],G=!d[_++],F=N>z?N:z,W=Rs(N-z)>.001,H=E+B,U=!1;if(y)v+(j=l[m++])>u&&(H=E+B*(u-v)/j,U=!0),v+=j;if(W&&t.ellipse?t.ellipse(O,R,N,z,V,E,H,G):t.arc(O,R,F,E,H,G),U)break t;w&&(n=Ps(E)*N+O,i=Os(E)*z+R),r=Ps(H)*N+O,o=Os(H)*z+R;break;case Ss.R:n=r=d[_],i=o=d[_+1],a=d[_++],s=d[_++];var Y=d[_++],X=d[_++];if(y){if(v+(j=l[m++])>u){var Z=u-v;t.moveTo(a,s),t.lineTo(a+ks(Z,Y),s),(Z-=Y)>0&&t.lineTo(a+Y,s+ks(Z,X)),(Z-=X)>0&&t.lineTo(a+Ls(Y-Z,0),s+X),(Z-=Y)>0&&t.lineTo(a,s+Ls(X-Z,0));break t}v+=j}t.rect(a,s,Y,X);break;case Ss.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.prototype.canSave=function(){return!!this._saveData},t.CMD=Ss,t.initDefaultProps=((e=t.prototype)._saveData=!0,e._ux=0,e._uy=0,e._pendingPtDist=0,void(e._version=0)),t}();function Ws(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+h&&c>i+h&&c>o+h&&c>s+h||ct+h&&u>n+h&&u>r+h&&u>a+h||ue+u&&l>i+u&&l>o+u||lt+u&&s>n+u&&s>r+u||sn||c+ur&&(r+=Zs);var d=Math.atan2(l,s);return d<0&&(d+=Zs),d>=i&&d<=r||d+Zs>=i&&d+Zs<=r}function qs(t,e,n,i,r,o){if(o>e&&o>i||or?s:0}var Ks=Fs.CMD,$s=2*Math.PI;var Js=[-1,-1,-1],Qs=[-1,-1];function tl(t,e,n,i,r,o,a,s,l,u){if(u>e&&u>i&&u>o&&u>s||u1&&(c=void 0,c=Qs[0],Qs[0]=Qs[1],Qs[1]=c),f=Dn(e,i,o,s,Qs[0]),p>1&&(g=Dn(e,i,o,s,Qs[1]))),2===p?ve&&s>i&&s>o||s=0&&c<=1&&(r[l++]=c);else{var u=a*a-4*o*s;if(Tn(u))(c=-a/(2*o))>=0&&c<=1&&(r[l++]=c);else if(u>0){var c,h=mn(u),d=(-a-h)/(2*o);(c=(-a+h)/(2*o))>=0&&c<=1&&(r[l++]=c),d>=0&&d<=1&&(r[l++]=d)}}return l}(e,i,o,s,Js);if(0===l)return 0;var u=En(e,i,o);if(u>=0&&u<=1){for(var c=0,h=Nn(e,i,o,u),d=0;dn||s<-n)return 0;var l=Math.sqrt(n*n-s*s);Js[0]=-l,Js[1]=l;var u=Math.abs(i-r);if(u<1e-4)return 0;if(u>=$s-1e-4){i=0,r=$s;var c=o?1:-1;return a>=Js[0]+t&&a<=Js[1]+t?c:0}if(i>r){var h=i;i=r,r=h}i<0&&(i+=$s,r+=$s);for(var d=0,p=0;p<2;p++){var f=Js[p];if(f+t>a){var g=Math.atan2(s,f);c=o?1:-1;g<0&&(g=$s+g),(g>=i&&g<=r||g+$s>=i&&g+$s<=r)&&(g>Math.PI/2&&g<1.5*Math.PI&&(c=-c),d+=c)}}return d}function il(t,e,n,i,r){for(var o,a,s,l,u=t.data,c=t.len(),h=0,d=0,p=0,f=0,g=0,y=0;y1&&(n||(h+=qs(d,p,f,g,i,r))),m&&(f=d=u[y],g=p=u[y+1]),v){case Ks.M:d=f=u[y++],p=g=u[y++];break;case Ks.L:if(n){if(Ws(d,p,u[y],u[y+1],e,i,r))return!0}else h+=qs(d,p,u[y],u[y+1],i,r)||0;d=u[y++],p=u[y++];break;case Ks.C:if(n){if(Hs(d,p,u[y++],u[y++],u[y++],u[y++],u[y],u[y+1],e,i,r))return!0}else h+=tl(d,p,u[y++],u[y++],u[y++],u[y++],u[y],u[y+1],i,r)||0;d=u[y++],p=u[y++];break;case Ks.Q:if(n){if(Us(d,p,u[y++],u[y++],u[y],u[y+1],e,i,r))return!0}else h+=el(d,p,u[y++],u[y++],u[y],u[y+1],i,r)||0;d=u[y++],p=u[y++];break;case Ks.A:var x=u[y++],_=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+x,a=Math.sin(S)*w+_,m?(f=o,g=a):h+=qs(d,p,o,a,i,r);var T=(i-x)*w/b+x;if(n){if(js(x,_,w,S,S+M,I,e,T,r))return!0}else h+=nl(x,_,w,S,S+M,I,T,r);d=Math.cos(S+M)*b+x,p=Math.sin(S+M)*w+_;break;case Ks.R:if(f=d=u[y++],g=p=u[y++],o=f+u[y++],a=g+u[y++],n){if(Ws(f,g,o,g,e,i,r)||Ws(o,g,o,a,e,i,r)||Ws(o,a,f,a,e,i,r)||Ws(f,a,f,g,e,i,r))return!0}else h+=qs(o,g,o,a,i,r),h+=qs(f,a,f,g,i,r);break;case Ks.Z:if(n){if(Ws(d,p,f,g,e,i,r))return!0}else h+=qs(d,p,f,g,i,r);d=f,p=g}}return n||(s=p,l=g,Math.abs(s-l)<1e-4)||(h+=qs(d,p,f,g,i,r)||0),0!==h}var rl=k({fill:"#000",stroke:null,strokePercent:1,fillOpacity:1,strokeOpacity:1,lineDashOffset:0,lineWidth:1,lineCap:"butt",miterLimit:10,strokeNoScale:!1,strokeFirst:!1},es),ol={style:k({fill:!0,stroke:!0,strokePercent:!0,fillOpacity:!0,strokeOpacity:!0,lineDashOffset:!0,lineWidth:!0,miterLimit:!0},ns.style)},al=Ar.concat(["invisible","culling","z","z2","zlevel","parent"]),sl=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.5?mr:e>.2?"#eee":xr}if(t)return xr}return mr},e.prototype.getInsideTextStroke=function(t){var e=this.style.fill;if(X(e)){var n=this.__zr;if(!(!n||!n.isDarkMode())===gi(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 Fs(!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._rectStroke||(this._rectStroke=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 il(t,e,!0,n,i)}(o,a/s,t,e)))return!0}if(this.hasFill())return function(t,e,n){return il(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:A(n,t),this.dirtyShape(),this},e.prototype.shapeChanged=function(){return!!(4&this.__dirty)},e.prototype.createStyle=function(t){return mt(rl,t)},e.prototype._innerSaveToNormal=function(e){t.prototype._innerSaveToNormal.call(this,e);var n=this._normalState;e.shape&&!n.shape&&(n.shape=A({},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=A({},i.shape),A(s,n.shape)):(s=A({},r?this.shape:i.shape),A(s,n.shape)):l&&(s=i.shape),s)if(o){this.shape=A({},this.shape);for(var u={},c=F(s),h=0;hu&&(n*=u/(a=n+i),i*=u/a),r+o>u&&(r*=u/(a=r+o),o*=u/a),i+r>c&&(i*=c/(a=i+r),r*=c/a),n+o>c&&(n*=c/(a=n+o),o*=c/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+c-r),0!==r&&t.arc(s+u-r,l+c-r,r,0,Math.PI/2),t.lineTo(s+o,l+c),0!==o&&t.arc(s+o,l+c-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}(sl);xl.prototype.type="rect";var _l={fill:"#000"},bl={},wl={style:k({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},ns.style)},Sl=function(t){function e(e){var n=t.call(this)||this;return n.type="text",n._children=[],n._defaultStyle=_l,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;ev&&p){var x=Math.floor(v/d);f=f||y.length>x,m=(y=y.slice(0,x)).length*d}if(r&&c&&null!=g)for(var _=Ba(g,u,e.ellipsis,{minChar:e.truncateMinChar,placeholder:e.placeholder}),b={},w=0;w0,T=0;Tg&&Ua(o,a.substring(g,y),e,f),Ua(o,d[2],e,f,d[1]),g=za.lastIndex}gh){var R=o.lines.length;D>0?(I.tokens=I.tokens.slice(0,D),S(I,C,T),o.lines=o.lines.slice(0,M+1)):o.lines=o.lines.slice(0,M),o.isTruncated=o.isTruncated||o.lines.length=0&&"right"===(C=x[T]).align;)this._placeToken(C,t,b,f,I,"right",y),w-=C.width,I-=C.width,T--;for(M+=(s-(M-p)-(g-I)-w)/2;S<=T;)C=x[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,s){var l=e.rich[t.styleName]||{};l.text=t.text;var u=t.verticalAlign,c=i+n/2;"top"===u?c=i+t.height/2:"bottom"===u&&(c=i+n-t.height/2),!t.isLineHolder&&Nl(l)&&this._renderBackground(l,e,"right"===o?r-t.width:"center"===o?r-t.width/2:r,c-t.height/2,t.width,t.height);var h=!!l.backgroundColor,d=t.textPadding;d&&(r=Ol(r,o,d),c-=t.height/2-d[0]-t.innerHeight/2);var p=this._getOrCreateChild(ul),f=p.createStyle();p.useStyle(f);var g=this._defaultStyle,y=!1,v=0,m=!1,x=Pl("fill"in l?l.fill:"fill"in e?e.fill:(y=!0,g.fill)),_=Ll("stroke"in l?l.stroke:"stroke"in e?e.stroke:h||s||g.autoStroke&&!y?null:(v=2,m=!0,g.stroke)),b=l.textShadowBlur>0||e.textShadowBlur>0;f.text=t.text,f.x=r,f.y=c,b&&(f.shadowBlur=l.textShadowBlur||e.textShadowBlur||0,f.shadowColor=l.textShadowColor||e.textShadowColor||"transparent",f.shadowOffsetX=l.textShadowOffsetX||e.textShadowOffsetX||0,f.shadowOffsetY=l.textShadowOffsetY||e.textShadowOffsetY||0),f.textAlign=o,f.textBaseline="middle",f.font=t.font||a,f.opacity=ot(l.opacity,e.opacity,1),Dl(f,l),_&&(f.lineWidth=ot(l.lineWidth,e.lineWidth,v),f.lineDash=rt(l.lineDash,e.lineDash),f.lineDashOffset=e.lineDashOffset||0,f.stroke=_),x&&(f.fill=x),p.setBoundingRect(Ja(f,t.contentWidth,t.contentHeight,m?0:null))},e.prototype._renderBackground=function(t,e,n,i,r,o){var a,s,l,u=t.backgroundColor,c=t.borderWidth,h=t.borderColor,d=u&&u.image,p=u&&!d,f=t.borderRadius,g=this;if(p||t.lineHeight||c&&h){(a=this._getOrCreateChild(xl)).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(p)(l=a.style).fill=u||null,l.fillOpacity=rt(t.fillOpacity,1);else if(d){(s=this._getOrCreateChild(dl)).onload=function(){g.dirtyStyle()};var v=s.style;v.image=u.image,v.x=n,v.y=i,v.width=r,v.height=o}c&&h&&((l=a.style).lineWidth=c,l.stroke=h,l.strokeOpacity=rt(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=ot(t.opacity,e.opacity,1)},e.makeFont=function(t){var e="";return Al(t)&&(e=[t.fontStyle,t.fontWeight,Cl(t.fontSize),t.fontFamily||"sans-serif"].join(" ")),e&&ut(e)||t.textFont||t.font},e}(os),Ml={left:!0,right:1,center:1},Il={top:1,bottom:1,middle:1},Tl=["fontStyle","fontWeight","fontSize","fontFamily"];function Cl(t){return"string"!=typeof t||-1===t.indexOf("px")&&-1===t.indexOf("rem")&&-1===t.indexOf("em")?isNaN(+t)?"12px":t+"px":t}function Dl(t,e){for(var n=0;n=0,o=!1;if(t instanceof sl){var a=Gl(t),s=r&&a.selectFill||a.normalFill,l=r&&a.selectStroke||a.normalStroke;if($l(s)||$l(l)){var u=(i=i||{}).style||{};"inherit"===u.fill?(o=!0,i=A({},i),(u=A({},u)).fill=s):!$l(u.fill)&&$l(s)?(o=!0,i=A({},i),(u=A({},u)).fill=vi(s)):!$l(u.stroke)&&$l(l)&&(o||(i=A({},i),u=A({},u)),u.stroke=vi(l)),i.style=u}}if(i&&null==i.z2){o||(i=A({},i));var c=t.z2EmphasisLift;i.z2=t.z2+(null!=c?c:Ul)}return i}(this,0,e,n);if("blur"===t)return function(t,e,n){var i=P(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 Iu(t,e,n){Lu(t,!0),au(t,uu),Cu(t,e,n)}function Tu(t,e,n,i){i?function(t){Lu(t,!1)}(t):Iu(t,e,n)}function Cu(t,e,n){var i=zl(t);null!=e?(i.focus=e,i.blurScope=n):i.focus&&(i.focus=null)}var Du=["emphasis","blur","select"],Au={itemStyle:"getItemStyle",lineStyle:"getLineStyle",areaStyle:"getAreaStyle"};function ku(t,e,n,i){n=n||"itemStyle";for(var r=0;r1&&(a*=Gu(f),s*=Gu(f));var g=(r===o?-1:1)*Gu((a*a*(s*s)-a*a*(p*p)-s*s*(d*d))/(a*a*(p*p)+s*s*(d*d)))||0,y=g*a*p/s,v=g*-s*d/a,m=(t+n)/2+Wu(h)*y-Fu(h)*v,x=(e+i)/2+Fu(h)*y+Wu(h)*v,_=Xu([1,0],[(d-y)/a,(p-v)/s]),b=[(d-y)/a,(p-v)/s],w=[(-1*d-y)/a,(-1*p-v)/s],S=Xu(b,w);if(Yu(b,w)<=-1&&(S=Hu),Yu(b,w)>=1&&(S=0),S<0){var M=Math.round(S/Hu*1e6)/1e6;S=2*Hu+M%2*Hu}c.addData(u,m,x,a,s,_,S,h,o)}var ju=/([mlvhzcqtsa])([^mlvhzcqtsa]*)/gi,qu=/-?([0-9]*\.)?[0-9]+([eE]-?[0-9]+)?/g;var Ku=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.applyTransform=function(t){},e}(sl);function $u(t){return null!=t.setData}function Ju(t,e){var n=function(t){var e=new Fs;if(!t)return e;var n,i=0,r=0,o=i,a=r,s=Fs.CMD,l=t.match(ju);if(!l)return e;for(var u=0;uk*k+L*L&&(M=T,I=C),{cx:M,cy:I,x0:-c,y0:-h,x1:M*(r/b-1),y1:I*(r/b-1)}}function vc(t,e){var n,i=pc(e.r,0),r=pc(e.r0||0,0),o=i>0;if(o||r>0){if(o||(i=r,r=0),r>i){var a=i;i=r,r=a}var s=e.startAngle,l=e.endAngle;if(!isNaN(s)&&!isNaN(l)){var u=e.cx,c=e.cy,h=!!e.clockwise,d=hc(l-s),p=d>ac&&d%ac;if(p>gc&&(d=p),i>gc)if(d>ac-gc)t.moveTo(u+i*lc(s),c+i*sc(s)),t.arc(u,c,i,s,l,!h),r>gc&&(t.moveTo(u+r*lc(l),c+r*sc(l)),t.arc(u,c,r,l,s,h));else{var f=void 0,g=void 0,y=void 0,v=void 0,m=void 0,x=void 0,_=void 0,b=void 0,w=void 0,S=void 0,M=void 0,I=void 0,T=void 0,C=void 0,D=void 0,A=void 0,k=i*lc(s),L=i*sc(s),P=r*lc(l),O=r*sc(l),R=d>gc;if(R){var N=e.cornerRadius;N&&(n=function(t){var e;if(U(t)){var n=t.length;if(!n)return t;e=1===n?[t[0],t[0],0,0]:2===n?[t[0],t[0],t[1],t[1]]:3===n?t.concat(t[2]):t}else e=[t,t,t,t];return e}(N),f=n[0],g=n[1],y=n[2],v=n[3]);var z=hc(i-r)/2;if(m=fc(z,y),x=fc(z,v),_=fc(z,f),b=fc(z,g),M=w=pc(m,x),I=S=pc(_,b),(w>gc||S>gc)&&(T=i*lc(l),C=i*sc(l),D=r*lc(s),A=r*sc(s),dgc){var Y=fc(y,M),X=fc(v,M),Z=yc(D,A,k,L,i,Y,h),j=yc(T,C,P,O,i,X,h);t.moveTo(u+Z.cx+Z.x0,c+Z.cy+Z.y0),M0&&t.arc(u+Z.cx,c+Z.cy,Y,cc(Z.y0,Z.x0),cc(Z.y1,Z.x1),!h),t.arc(u,c,i,cc(Z.cy+Z.y1,Z.cx+Z.x1),cc(j.cy+j.y1,j.cx+j.x1),!h),X>0&&t.arc(u+j.cx,c+j.cy,X,cc(j.y1,j.x1),cc(j.y0,j.x0),!h))}else t.moveTo(u+k,c+L),t.arc(u,c,i,s,l,!h);else t.moveTo(u+k,c+L);if(r>gc&&R)if(I>gc){Y=fc(f,I),Z=yc(P,O,T,C,r,-(X=fc(g,I)),h),j=yc(k,L,D,A,r,-Y,h);t.lineTo(u+Z.cx+Z.x0,c+Z.cy+Z.y0),I0&&t.arc(u+Z.cx,c+Z.cy,X,cc(Z.y0,Z.x0),cc(Z.y1,Z.x1),!h),t.arc(u,c,r,cc(Z.cy+Z.y1,Z.cx+Z.x1),cc(j.cy+j.y1,j.cx+j.x1),h),Y>0&&t.arc(u+j.cx,c+j.cy,Y,cc(j.y1,j.x1),cc(j.y0,j.x0),!h))}else t.lineTo(u+P,c+O),t.arc(u,c,r,l,s,h);else t.lineTo(u+P,c+O)}else t.moveTo(u,c);t.closePath()}}}var mc=function(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0,this.cornerRadius=0},xc=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new mc},e.prototype.buildPath=function(t,e){vc(t,e)},e.prototype.isZeroArea=function(){return this.shape.startAngle===this.shape.endAngle||this.shape.r===this.shape.r0},e}(sl);xc.prototype.type="sector";var _c=function(){this.cx=0,this.cy=0,this.r=0,this.r0=0},bc=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultShape=function(){return new _c},e.prototype.buildPath=function(t,e){var n=e.cx,i=e.cy,r=2*Math.PI;t.moveTo(n+e.r,i),t.arc(n,i,e.r,0,r,!1),t.moveTo(n+e.r0,i),t.arc(n,i,e.r0,0,r,!0)},e}(sl);function wc(t,e,n){var i=e.smooth,r=e.points;if(r&&r.length>=2){if(i){var o=function(t,e,n,i){var r,o,a,s,l=[],u=[],c=[],h=[];if(i){a=[1/0,1/0],s=[-1/0,-1/0];for(var d=0,p=t.length;dUc[1]){if(r=!1,Yc.negativeSize||n)return r;var s=Wc(Uc[0]-Hc[1]),l=Wc(Hc[0]-Uc[1]);Gc(s,l)>Zc.len()&&(s=l||!Yc.bidirectional)&&(Ae.scale(Xc,a,-l*i),Yc.useDir&&Yc.calcDirMTV()))}}return r},t.prototype._getProjMinMaxOnAxis=function(t,e,n){for(var i=this._axes[t],r=this._origin,o=e[0].dot(i)+r[t],a=o,s=o,l=1;l0){var h={duration:c.duration,delay:c.delay||0,easing:c.easing,done:o,force:!!o||!!a,setToFinal:!u,scope:t,during:a};l?e.animateFrom(n,h):e.animateTo(n,h)}else e.stopAnimation(),!l&&e.attr(n),a&&a(1),o&&o()}function th(t,e,n,i,r,o){Qc("update",t,e,n,i,r,o)}function eh(t,e,n,i,r,o){Qc("enter",t,e,n,i,r,o)}function nh(t){if(!t.__zr)return!0;for(var e=0;efo(o[1])?o[0]>0?"right":"left":o[1]>0?"bottom":"top"}function Ih(t){return!t.isGroup}function Th(t,e,n){if(t&&e){var i,r=(i={},t.traverse((function(t){Ih(t)&&t.anid&&(i[t.anid]=t)})),i);e.traverse((function(t){if(Ih(t)&&t.anid){var e=r[t.anid];if(e){var i=o(t);t.attr(o(e)),th(t,i,n,zl(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=T(t.shape)),e}}function Ch(t,e){return E(t,(function(t){var n=t[0];n=po(n,e.x),n=ho(n,e.x+e.width);var i=t[1];return i=po(i,e.y),[n,i=ho(i,e.y+e.height)]}))}function Dh(t,e){var n=po(t.x,e.x),i=ho(t.x+t.width,e.x+e.width),r=po(t.y,e.y),o=ho(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 Ah(t,e,n){var i=A({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),k(r,n),new dl(i)):gh(t.replace("path://",""),i,n,"center")}function kh(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=Ph(f,g,u,c)/p;if(y<0||y>1)return!1;var v=Ph(f,g,h,d)/p;return!(v<0||v>1)}function Ph(t,e,n,i){return t*i-n*e}function Oh(t,e,n,i,r){return null==e||(j(e)?Rh[0]=Rh[1]=Rh[2]=Rh[3]=e:(Rh[0]=e[0],Rh[1]=e[1],Rh[2]=e[2],Rh[3]=e[3]),i&&(Rh[0]=po(0,Rh[0]),Rh[1]=po(0,Rh[1]),Rh[2]=po(0,Rh[2]),Rh[3]=po(0,Rh[3])),n&&(Rh[0]=-Rh[0],Rh[1]=-Rh[1],Rh[2]=-Rh[2],Rh[3]=-Rh[3]),Nh(t,Rh,"x","width",3,1,r&&r[0]||0),Nh(t,Rh,"y","height",0,2,r&&r[1]||0)),t}var Rh=[0,0,0,0];function Nh(t,e,n,i,r,o,a){var s=e[o]+e[r],l=t[i];t[i]+=s,a=po(0,ho(a,l)),t[i]=0?-e[r]:e[o]>=0?l+e[o]:fo(s)>1e-8?(l-a)*e[r]/s:0):t[n]-=e[r]}function zh(t){var e=t.itemTooltipOption,n=t.componentModel,i=t.itemName,r=X(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&&z(F(l),(function(t){_t(s,t)||(s[t]=l[t],s.$vars.push(t))}));var u=zl(t.el);u.componentMainType=o,u.componentIndex=a,u.tooltipConfig={name:i,option:k({content:i,encodeHTMLContent:!0,formatterParams:s},r)}}function Eh(t,e){var n;t.isGroup&&(n=e(t)),n||t.traverse(e)}function Bh(t,e){if(t)if(U(t))for(var n=0;ne&&(e=i),ie&&(n=e=0),{min:n,max:e}}function Yh(t,e,n){Xh(t,e,n,-1/0)}function Xh(t,e,n,i){if(t.ignoreModelZ)return i;var r=t.getTextContent(),o=t.getTextGuideLine();if(t.isGroup)for(var a=t.childrenRef(),s=0;s-1?Td:Dd;function Pd(t,e){t=t.toUpperCase(),kd[t]=new wd(e),Ad[t]=e}function Od(t){return kd[t]}Pd(Cd,{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",custom:"Custom chart",chart:"Chart"}},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:". "}}}}),Pd(Td,{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:"旭日图",custom:"自定义图表",chart:"图表"}},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 Rd=null;function Nd(){return Rd}var zd=1e3,Ed=6e4,Bd=36e5,Vd=864e5,Gd=31536e6,Fd={year:/({yyyy}|{yy})/,month:/({MMMM}|{MMM}|{MM}|{M})/,day:/({dd}|{d})/,hour:/({HH}|{H}|{hh}|{h})/,minute:/({mm}|{m})/,second:/({ss}|{s})/,millisecond:/({SSS}|{S})/},Wd={year:"{yyyy}",month:"{MMM}",day:"{d}",hour:"{HH}:{mm}",minute:"{HH}:{mm}",second:"{HH}:{mm}:{ss}",millisecond:"{HH}:{mm}:{ss} {SSS}"},Hd="{yyyy}-{MM}-{dd}",Ud={year:"{yyyy}",month:"{yyyy}-{MM}",day:Hd,hour:Hd+" "+Wd.hour,minute:Hd+" "+Wd.minute,second:Hd+" "+Wd.second,millisecond:"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss} {SSS}"},Yd=["year","month","day","hour","minute","second","millisecond"],Xd=["year","half-year","quarter","month","week","half-week","day","half-day","quarter-day","hour","minute","second","millisecond"];function Zd(t){return X(t)||Y(t)?t:function(t){t=t||{};var e={},n=!0;return z(Yd,(function(e){n&&(n=null==t[e])})),z(Yd,(function(i,r){var o=t[i];e[i]={};for(var a=null,s=r;s>=0;s--){var l=Yd[s],u=q(o)&&!U(o)?o[l]:o,c=void 0;U(u)?a=(c=u.slice())[0]||"":X(u)?c=[a=u]:(null==a?a=Wd[i]:Fd[l].test(a)||(a=e[l][l][0]+" "+a),c=[a],n&&(c[1]="{primary|"+a+"}")),e[i][l]=c}})),e}(t)}function jd(t,e){return"0000".substr(0,e-(t+="").length)+t}function qd(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 Kd(t){return t===qd(t)}function $d(t,e,n,i){var r=Ao(t),o=r[tp(n)](),a=r[ep(n)]()+1,s=Math.floor((a-1)/3)+1,l=r[np(n)](),u=r["get"+(n?"UTC":"")+"Day"](),c=r[ip(n)](),h=(c-1)%12+1,d=r[rp(n)](),p=r[op(n)](),f=r[ap(n)](),g=c>=12?"pm":"am",y=g.toUpperCase(),v=(i instanceof wd?i:Od(i||Ld)||kd[Dd]).getModel("time"),m=v.get("month"),x=v.get("monthAbbr"),_=v.get("dayOfWeek"),b=v.get("dayOfWeekAbbr");return(e||"").replace(/{a}/g,g+"").replace(/{A}/g,y+"").replace(/{yyyy}/g,o+"").replace(/{yy}/g,jd(o%100+"",2)).replace(/{Q}/g,s+"").replace(/{MMMM}/g,m[a-1]).replace(/{MMM}/g,x[a-1]).replace(/{MM}/g,jd(a,2)).replace(/{M}/g,a+"").replace(/{dd}/g,jd(l,2)).replace(/{d}/g,l+"").replace(/{eeee}/g,_[u]).replace(/{ee}/g,b[u]).replace(/{e}/g,u+"").replace(/{HH}/g,jd(c,2)).replace(/{H}/g,c+"").replace(/{hh}/g,jd(h+"",2)).replace(/{h}/g,h+"").replace(/{mm}/g,jd(d,2)).replace(/{m}/g,d+"").replace(/{ss}/g,jd(p,2)).replace(/{s}/g,p+"").replace(/{SSS}/g,jd(f,3)).replace(/{S}/g,f+"")}function Jd(t,e){var n=Ao(t),i=n[ep(e)]()+1,r=n[np(e)](),o=n[ip(e)](),a=n[rp(e)](),s=n[op(e)](),l=0===n[ap(e)](),u=l&&0===s,c=u&&0===a,h=c&&0===o,d=h&&1===r;return d&&1===i?"year":d?"month":h?"day":c?"hour":u?"minute":l?"second":"millisecond"}function Qd(t,e,n){switch(e){case"year":t[lp(n)](0);case"month":t[up(n)](1);case"day":t[cp(n)](0);case"hour":t[hp(n)](0);case"minute":t[dp(n)](0);case"second":t[pp(n)](0)}return t}function tp(t){return t?"getUTCFullYear":"getFullYear"}function ep(t){return t?"getUTCMonth":"getMonth"}function np(t){return t?"getUTCDate":"getDate"}function ip(t){return t?"getUTCHours":"getHours"}function rp(t){return t?"getUTCMinutes":"getMinutes"}function op(t){return t?"getUTCSeconds":"getSeconds"}function ap(t){return t?"getUTCMilliseconds":"getMilliseconds"}function sp(t){return t?"setUTCFullYear":"setFullYear"}function lp(t){return t?"setUTCMonth":"setMonth"}function up(t){return t?"setUTCDate":"setDate"}function cp(t){return t?"setUTCHours":"setHours"}function hp(t){return t?"setUTCMinutes":"setMinutes"}function dp(t){return t?"setUTCSeconds":"setSeconds"}function pp(t){return t?"setUTCMilliseconds":"setMilliseconds"}function fp(t){if(!zo(t))return X(t)?t:"-";var e=(t+"").split(".");return e[0].replace(/(\d{1,3})(?=(?:\d{3})+(?!\d))/g,"$1,")+(e.length>1?"."+e[1]:"")}function gp(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 yp=st;function vp(t,e,n){function i(t){return t&&ut(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?Ao(t):t;if(!isNaN(+s))return $d(s,"{yyyy}-{MM}-{dd} {HH}:{mm}:{ss}",n);if(a)return"-"}if("ordinal"===e)return Z(t)?i(t):j(t)&&r(t)?t+"":"-";var l=No(t);return r(l)?fp(l):Z(t)?i(t):"boolean"==typeof t?t+"":"-"}var mp=["a","b","c","d","e","f","g"],xp=function(t,e){return"{"+t+(null==e?"":e)+"}"};function _p(t,e,n){U(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 wp(t,e){return e=e||"transparent",X(t)?t:q(t)&&t.colorStops&&(t.colorStops[0]||{}).color||e}function Sp(t,e){if("_blank"===e||"blank"===e){var n=window.open();n.opener=null,n.location.href=t}else window.open(t,e)}var Mp={},Ip={},Tp=function(){function t(){this._normalMasterList=[],this._nonSeriesBoxMasterList=[]}return t.prototype.create=function(t,e){function n(n,i){var r=[];return z(n,(function(n,i){var o=n.create(t,e);r=r.concat(o||[])})),r}this._nonSeriesBoxMasterList=n(Mp,!0),this._normalMasterList=n(Ip,!1)},t.prototype.update=function(t,e){z(this._normalMasterList,(function(n){n.update&&n.update(t,e)}))},t.prototype.getCoordinateSystems=function(){return this._normalMasterList.concat(this._nonSeriesBoxMasterList)},t.register=function(t,e){"matrix"!==t&&"calendar"!==t?Ip[t]=e:Mp[t]=e},t.get=function(t){return Ip[t]||Mp[t]},t}();var Cp=1,Dp=2;var Ap=yt();var kp=0,Lp=1,Pp=2;function Op(t,e){var n=t.getShallow("coordinateSystem"),i=t.getShallow("coordinateSystemUsage",!0),r=kp;if(n){var o="series"===t.mainType;null==i&&(i=o?"data":"box"),"data"===i?(r=Lp,o||(r=kp)):"box"===i&&(r=Pp,o||function(t){return!!Mp[t]}(n)||(r=kp))}return{coordSysType:n,kind:r}}function Rp(t){var e=t.targetModel,n=t.coordSysType,i=t.coordSysProvider,r=t.isDefaultDataCoordSys;t.allowNotFound;var o=Op(e),a=o.kind,s=o.coordSysType;if(r&&a!==Lp&&(a=Lp,s=n),a===kp||s!==n)return!1;var l=i(n,e);return!!l&&(a===Lp?e.coordinateSystem=l:e.boxCoordinateSystem=l,!0)}var Np=function(t,e){var n=e.getReferringComponents(t,ha).models[0];return n&&n.coordinateSystem},zp=z,Ep=["left","right","top","bottom","width","height"],Bp=[["width","left","right"],["height","top","bottom"]];function Vp(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 c,h,d=l.getBoundingRect(),p=e.childAt(u+1),f=p&&p.getBoundingRect();if("horizontal"===t){var g=d.width+(f?-f.x+d.x:0);(c=o+g)>i||l.newline?(o=0,c=g,a+=s+n,s=d.height):s=Math.max(s,d.height)}else{var y=d.height+(f?-f.y+d.y:0);(h=a+y)>r||l.newline?(o+=s+n,a=0,h=y,s=d.width):s=Math.max(s,d.width)}l.newline||(l.x=o,l.y=a,l.markRedraw(),"horizontal"===t?o=c+n:a=h+n)}))}var Gp=Vp;H(Vp,"vertical"),H(Vp,"horizontal");function Fp(t,e){return{left:t.getShallow("left",e),top:t.getShallow("top",e),right:t.getShallow("right",e),bottom:t.getShallow("bottom",e),width:t.getShallow("width",e),height:t.getShallow("height",e)}}function Wp(t,e){var n=function(t,e){var n,i,r=Xp(t,e,{enableLayoutOnlyByCenter:!0}),o=t.getBoxLayoutParams();if(r.type===Yp.point)i=r.refPoint,n=Hp(o,{width:e.getWidth(),height:e.getHeight()});else{var a=t.get("center"),s=U(a)?a:[a,a];n=Hp(o,r.refContainer),i=r.boxCoordFrom===Dp?r.refPoint:[yo(s[0],n.width)+n.x,yo(s[1],n.height)+n.y]}return{viewRect:n,center:i}}(t,e),i=n.viewRect,r=n.center,o=t.get("radius");U(o)||(o=[0,o]);var a=yo(i.width,e.getWidth()),s=yo(i.height,e.getHeight()),l=Math.min(a,s),u=yo(o[0],l/2),c=yo(o[1],l/2);return{cx:r[0],cy:r[1],r0:u,r:c,viewRect:i}}function Hp(t,e,n){n=yp(n||0);var i=e.width,r=e.height,o=yo(t.left,i),a=yo(t.top,r),s=yo(t.right,i),l=yo(t.bottom,r),u=yo(t.width,i),c=yo(t.height,r),h=n[2]+n[0],d=n[1]+n[3],p=t.aspect;switch(isNaN(u)&&(u=i-s-d-o),isNaN(c)&&(c=r-l-h-a),null!=p&&(isNaN(u)&&isNaN(c)&&(p>i/r?u=.8*i:c=.8*r),isNaN(u)&&(u=p*c),isNaN(c)&&(c=u/p)),isNaN(o)&&(o=i-s-u-d),isNaN(a)&&(a=r-l-c-h),t.left||t.right){case"center":o=i/2-u/2-n[3];break;case"right":o=i-u-d}switch(t.top||t.bottom){case"middle":case"center":a=r/2-c/2-n[0];break;case"bottom":a=r-c-h}o=o||0,a=a||0,isNaN(u)&&(u=i-d-o-(s||0)),isNaN(c)&&(c=r-h-a-(l||0));var f=new He((e.x||0)+o+n[3],(e.y||0)+a+n[0],u,c);return f.margin=n,f}function Up(t,e,n){var i=t.getShallow("preserveAspect",!0);if(!i)return e;var r=e.width/e.height;if(Math.abs(Math.atan(n)-Math.atan(r))<1e-9)return e;var o=t.getShallow("preserveAspectAlign",!0),a=t.getShallow("preserveAspectVerticalAlign",!0),s={width:e.width,height:e.height},l="cover"===i;return r>n&&!l||r=2)return o;for(var c=0;c=0;a--)o=C(o,n[a],!0);e.defaultOption=o}return e.defaultOption},e.prototype.getReferringComponents=function(t,e){var n=t+"Index",i=t+"Id";return pa(this.ecModel,t,{index:this.get(n,!0),id:this.get(i,!0)},e)},e.prototype.getBoxLayoutParams=function(){return Fp(this,!1)},e.prototype.getZLevelKey=function(){return""},e.prototype.setZLevel=function(t){this.option.zlevel=t},e.protoInitialize=((i=e.prototype).type="component",i.id="",i.name="",i.mainType="",i.subType="",void(i.componentIndex=0)),e}(wd);Sa(Qp,wd),Ca(Qp),function(t){var e={};t.registerSubTypeDefaulter=function(t,n){var i=ba(t);e[i.main]=n},t.determineSubType=function(n,i){var r=i.type;if(!r){var o=ba(n).main;t.hasSubTypes(n)&&e[o]&&(r=e[o](i))}return r}}(Qp),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 z(t,(function(o){var a=n(i,o),s=function(t,e){var n=[];return z(t,(function(t){P(e,t)>=0&&n.push(t)})),n}(a.originalDeps=e(o),t);a.entryCount=s.length,0===a.entryCount&&r.push(o),z(s,(function(t){P(a.predecessor,t)<0&&a.predecessor.push(t);var e=n(i,t);P(e.successor,t)<0&&e.successor.push(o)}))})),{graph:i,noEntryList:r}}(i),s=a.graph,l=a.noEntryList,u={};for(z(t,(function(t){u[t]=!0}));l.length;){var c=l.pop(),h=s[c],d=!!u[c];d&&(r.call(o,c,h.originalDeps.slice()),delete u[c]),z(h.successor,d?f:p)}z(u,(function(){var t="";throw new Error(t)}))}function p(t){s[t].entryCount--,0===s[t].entryCount&&l.push(t)}function f(t){u[t]=!0,p(t)}}}(Qp,(function(t){var e=[];z(Qp.getClassesByMainType(t),(function(t){e=e.concat(t.dependencies||t.prototype.dependencies||[])})),e=E(e,(function(t){return ba(t).main})),"dataset"!==t&&P(e,"dataset")<=0&&e.unshift("dataset");return e}));var tf={color:{},darkColor:{},size:{}},ef=tf.color={theme:["#5070dd","#b6d634","#505372","#ff994d","#0ca8df","#ffd10a","#fb628b","#785db0","#3fbe95"],neutral00:"#fff",neutral05:"#f4f7fd",neutral10:"#e8ebf0",neutral15:"#dbdee4",neutral20:"#cfd2d7",neutral25:"#c3c5cb",neutral30:"#b7b9be",neutral35:"#aaacb2",neutral40:"#9ea0a5",neutral45:"#929399",neutral50:"#86878c",neutral55:"#797b7f",neutral60:"#6d6e73",neutral65:"#616266",neutral70:"#54555a",neutral75:"#48494d",neutral80:"#3c3c41",neutral85:"#303034",neutral90:"#232328",neutral95:"#17171b",neutral99:"#000",accent05:"#eff1f9",accent10:"#e0e4f2",accent15:"#d0d6ec",accent20:"#c0c9e6",accent25:"#b1bbdf",accent30:"#a1aed9",accent35:"#91a0d3",accent40:"#8292cc",accent45:"#7285c6",accent50:"#6578ba",accent55:"#5c6da9",accent60:"#536298",accent65:"#4a5787",accent70:"#404c76",accent75:"#374165",accent80:"#2e3654",accent85:"#252b43",accent90:"#1b2032",accent95:"#121521",transparent:"rgba(0,0,0,0)",highlight:"rgba(255,231,130,0.8)"};for(var nf in A(ef,{primary:ef.neutral80,secondary:ef.neutral70,tertiary:ef.neutral60,quaternary:ef.neutral50,disabled:ef.neutral20,border:ef.neutral30,borderTint:ef.neutral20,borderShade:ef.neutral40,background:ef.neutral05,backgroundTint:"rgba(234,237,245,0.5)",backgroundTransparent:"rgba(255,255,255,0)",backgroundShade:ef.neutral10,shadow:"rgba(0,0,0,0.2)",shadowTint:"rgba(129,130,136,0.2)",axisLine:ef.neutral70,axisLineTint:ef.neutral40,axisTick:ef.neutral70,axisTickMinor:ef.neutral60,axisLabel:ef.neutral70,axisSplitLine:ef.neutral15,axisMinorSplitLine:ef.neutral05}),ef)if(ef.hasOwnProperty(nf)){var rf=ef[nf];"theme"===nf?tf.darkColor.theme=ef.theme.slice():"highlight"===nf?tf.darkColor.highlight="rgba(255,231,130,0.4)":0===nf.indexOf("accent")?tf.darkColor[nf]=di(rf,null,(function(t){return.5*t}),(function(t){return Math.min(1,1.3-t)})):tf.darkColor[nf]=di(rf,null,(function(t){return.9*t}),(function(t){return 1-Math.pow(t,1.5)}))}tf.size={xxs:2,xs:5,s:10,m:15,l:20,xl:30,xxl:40,xxxl:50};var of="";"undefined"!=typeof navigator&&(of=navigator.platform||"");var af="rgba(0, 0, 0, 0.2)",sf=tf.color.theme[0],lf=di(sf,null,null,.9),uf={darkMode:"auto",colorBy:"series",color:tf.color.theme,gradientColor:[lf,sf],aria:{decal:{decals:[{color:af,dashArrayX:[1,0],dashArrayY:[2,5],symbolSize:1,rotation:Math.PI/6},{color:af,symbol:"circle",dashArrayX:[[8,8],[0,8,8,0]],dashArrayY:[6,0],symbolSize:.8},{color:af,dashArrayX:[1,0],dashArrayY:[4,3],rotation:-Math.PI/4},{color:af,dashArrayX:[[6,6],[0,6,6,0]],dashArrayY:[6,0]},{color:af,dashArrayX:[[1,0],[1,6]],dashArrayY:[1,0,6,0],rotation:Math.PI/4},{color:af,symbol:"triangle",dashArrayX:[[9,9],[0,9,9,0]],dashArrayY:[7,2],symbolSize:.75}]}},textStyle:{fontFamily:of.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},cf=yt(["tooltip","label","itemName","itemId","itemGroupId","itemChildGroupId","seriesName"]),hf="original",df="arrayRows",pf="objectRows",ff="keyedColumns",gf="typedArray",yf="unknown",vf="column",mf="row",xf=1,_f=2,bf=3,wf=sa();function Sf(t,e,n){var i={},r=If(e);if(!r||!t)return i;var o,a,s=[],l=[],u=e.ecModel,c=wf(u).datasetMap,h=r.uid+"_"+n.seriesLayoutBy;z(t=t.slice(),(function(e,n){var r=q(e)?e:t[n]={name:e};"ordinal"===r.type&&null==o&&(o=n,a=f(r)),i[r.name]=[]}));var d=c.get(h)||c.set(h,{categoryWayDim:a,valueWayDim:0});function p(t,e,n){for(var i=0;ie)return t[i];return t[n-1]}(i,a):n;if((c=c||n)&&c.length){var h=c[l];return r&&(u[r]=h),s.paletteIdx=(l+1)%c.length,h}}var Ef="\0_ec_inner";var Bf=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 wd(i),this._locale=new wd(r),this._optionManager=o},e.prototype.setOption=function(t,e,n){var i=Ff(e);this._optionManager.setOption(t,n,i),this._resetOption(null,i)},e.prototype.resetOption=function(t,e){return this._resetOption(t,Ff(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)):Lf(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&&z(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=yt(),s=e&&e.replaceMergeMainTypeMap;wf(this).datasetMap=yt(),z(t,(function(t,e){null!=t&&(Qp.hasClass(e)?e&&(o.push(e),a.set(e,!0)):n[e]=null==n[e]?T(t):C(n[e],t,!0))})),s&&s.each((function(t,e){Qp.hasClass(e)&&!a.get(e)&&(o.push(e),a.set(e,!0))})),Qp.topologicalTravel(o,Qp.getAllClassMainTypes(),(function(e){var o=function(t,e,n){var i=Df.get(e);if(!i)return n;var r=i(t);return r?n.concat(r):n}(this,e,qo(t[e])),a=i.get(e),l=a?s&&s.get(e)?"replaceMerge":"normalMerge":"replaceAll",u=ta(a,o,l);(function(t,e,n){z(t,(function(t){var i=t.newOption;q(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,Qp),n[e]=null,i.set(e,null),r.set(e,0);var c,h=[],d=[],p=0;z(u,(function(t,n){var i=t.existing,r=t.newOption;if(r){var o="series"===e,a=Qp.getClass(e,t.keyInfo.subType,!o);if(!a)return;if("tooltip"===e){if(c)return void 0;c=!0}if(i&&i.constructor===a)i.name=t.keyInfo.name,i.mergeOption(r,this),i.optionUpdated(r,!1);else{var s=A({componentIndex:n},t.keyInfo);A(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),d.push(i),p++):(h.push(void 0),d.push(void 0))}),this),n[e]=h,i.set(e,d),r.set(e,p),"series"===e&&Af(this)}),this),this._seriesIndices||Af(this)},e.prototype.getOption=function(){var t=T(this.option);return z(t,(function(e,n){if(Qp.hasClass(n)){for(var i=qo(e),r=i.length,o=!1,a=r-1;a>=0;a--)i[a]&&!oa(i[a])?o=!0:(i[a]=null,!o&&r--);i.length=r,t[n]=i}})),delete t[Ef],t},e.prototype.setTheme=function(t){this._theme=new wd(t),this._resetOption("recreate",null)},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 Zf=z,jf=q,qf=["areaStyle","lineStyle","nodeStyle","linkStyle","chordStyle","label","labelLine"];function Kf(t){var e=t&&t.itemStyle;if(e)for(var n=0,i=qf.length;nu&&(u=p)}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 Vg(this.getData(e),t)},t.prototype.formatTooltip=function(t,e,n){},t}();function Wg(t){var e,n;return q(t)?t.type&&(n=t):e=t,{text:e,frag:n}}function Hg(t){return new Ug(t)}var Ug=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=c(this._modBy),s=this._modDataCount||0,l=c(t&&t.modBy),u=t&&t.modDataCount||0;function c(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 h=t&&t.step;if(this._dueEnd=n?n._outputDueEnd:this._count?this._count(this.context):1/0,this._progress){var d=this._dueIndex,p=Math.min(null!=h?this._dueIndex+h:1/0,this._dueEnd);if(!i&&(o||d1&&i>0?s:a}};return o;function a(){return e=t?null:oe},gte:function(t,e){return t>=e}},Kg=function(){function t(t,e){if(!j(e)){var n="";0,Yo(n)}this._opFn=qg[t],this._rvalFloat=No(e)}return t.prototype.evaluate=function(t){return j(t)?this._opFn(t,this._rvalFloat):this._opFn(No(t),this._rvalFloat)},t}(),$g=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=j(t)?t:No(t),i=j(e)?e:No(e),r=isNaN(n),o=isNaN(i);if(r&&(n=this._incomparable),o&&(i=this._incomparable),r&&o){var a=X(t),s=X(e);a&&(n=s?t:0),s&&(i=a?e:0)}return ni?-this._resultLT:0},t}(),Jg=function(){function t(t,e){this._rval=e,this._isEQ=t,this._rvalTypeof=typeof e,this._rvalFloat=No(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=No(t)===this._rvalFloat)}return this._isEQ?e:!e},t}();function Qg(t,e){return"eq"===t||"ne"===t?new Jg("eq"===t,e):_t(qg,t)?new Kg(t,e):null}var ty=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 Xg(t,e)},t}();function ey(t){var e=t.sourceFormat;if(!sy(e)){var n="";0,Yo(n)}return t.data}function ny(t){var e=t.sourceFormat,n=t.data;if(!sy(e)){var i="";0,Yo(i)}if(e===df){for(var r=[],o=0,a=n.length;o65535?cy:hy}function yy(t,e,n,i,r){var o=fy[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=E(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.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&&x<=c||isNaN(x))&&(a[s++]=p),p++}d=!0}else if(2===r){f=h[i[0]];var y=h[i[1]],v=t[i[1]][0],m=t[i[1]][1];for(g=0;g=u&&x<=c||isNaN(x))&&(_>=v&&_<=m||isNaN(_))&&(a[s++]=p),p++}d=!0}}if(!d)if(1===r)for(g=0;g=u&&x<=c||isNaN(x))&&(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),c=this.getRawIndex(0),h=new(gy(this._rawCount))(Math.min(2*(Math.ceil(s/u)+2),s));h[l++]=c;for(var d=1;dn&&(n=i,r=I)}M>0&&M<_-x&&(h[l++]=Math.min(S,r),r=Math.max(S,r)),h[l++]=r,c=r}return h[l++]=this.getRawIndex(s-1),o._count=l,o._indices=h,o.getRawIndex=this._getRawIdx,o},t.prototype.minmaxDownSample=function(t,e){for(var n=this.clone([t],!0),i=n._chunks,r=Math.floor(1/e),o=i[t],a=this.count(),s=new(gy(this._rawCount))(2*Math.ceil(a/r)),l=0,u=0;ua&&(f=a-u);for(var g=0;gp&&(p=y,d=u+g)}var v=this.getRawIndex(c),m=this.getRawIndex(d);cu-p&&(s=u-p,a.length=s);for(var f=0;fc[1]&&(c[1]=y),h[d++]=v}return r._count=d,r._indices=h,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 Xg(t[i],this._dimensions[i])}ly={arrayRows:t,objectRows:function(t,e,n,i){return Xg(t[e],this._dimensions[i])},keyedColumns:t,original:function(t,e,n,i){var r=t&&(null==t.value?t:t.value);return Xg(r instanceof Array?r[i]:r,this._dimensions[i])},typedArray:function(t,e,n,i){return t[i]}}}(),t}(),my=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(_y(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=$(a=o.get("data",!0))?gf:hf,e=[];var c=this._getSourceMetaRawOption()||{},h=l&&l.metaRawOption||{},d=rt(c.seriesLayoutBy,h.seriesLayoutBy)||null,p=rt(c.sourceHeader,h.sourceHeader),f=rt(c.dimensions,h.dimensions);t=d!==h.seriesLayoutBy||!!p!=!!h.sourceHeader||f?[bg(a,{seriesLayoutBy:d,sourceHeader:p,dimensions:f},s)]:[]}else{var g=n;if(r){var y=this._applyTransform(i);t=y.sourceList,e=y.upstreamSignList}else{t=[bg(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&&by(o)}var a,s=[],l=[];return z(t,(function(t){t.prepareSource();var e=t.getSource(r||0),n="";null==r||e||by(n),s.push(e),l.push(t._getVersionSign())})),i?e=function(t,e,n){var i=qo(t),r=i.length,o="";r||Yo(o);for(var a=0,s=r;a1||n>0&&!t.noHeader;return z(t.blocks,(function(t){var n=Ay(t);n>=e&&(e=n+ +(i&&(!n||Cy(t)&&!t.noHeader)))})),e}return 0}function ky(t,e,n,i){var r,o=e.noHeader,a=(r=Ay(e),{html:My[r],richText:Iy[r]}),s=[],l=e.blocks||[];lt(!l||U(l)),l=l||[];var u=t.orderMode;if(e.sortBlocks&&u){l=l.slice();var c={valueAsc:"asc",valueDesc:"desc"};if(_t(c,u)){var h=new $g(c[u],null);l.sort((function(t,e){return h.evaluate(t.sortParam,e.sortParam)}))}else"seriesDesc"===u&&l.reverse()}z(l,(function(n,r){var o=e.valueFormatter,l=Dy(n)(o?A(A({},t),{valueFormatter:o}):t,n,r>0?a.html:0,i);null!=l&&s.push(l)}));var d="richText"===t.renderMode?s.join(a.richText):Oy(i,s.join(""),o?n:a.html);if(o)return d;var p=vp(e.header,"ordinal",t.useUTC),f=Sy(i,t.renderMode).nameStyle,g=wy(i);return"richText"===t.renderMode?Ry(t,p,f)+a.richText+d:Oy(i,'
'+oe(p)+"
"+d,n)}function Ly(t,e,n,i){var r=t.renderMode,o=e.noName,a=e.noValue,s=!e.markerType,l=e.name,u=t.useUTC,c=e.valueFormatter||t.valueFormatter||function(t){return E(t=U(t)?t:[t],(function(t,e){return vp(t,U(p)?p[e]:p,u)}))};if(!o||!a){var h=s?"":t.markupStyleCreator.makeTooltipMarker(e.markerType,e.markerColor||tf.color.secondary,r),d=o?"":vp(l,"ordinal",u),p=e.valueType,f=a?[]:c(e.value,e.dataIndex),g=!s||!o,y=!s&&o,v=Sy(i,r),m=v.nameStyle,x=v.valueStyle;return"richText"===r?(s?"":h)+(o?"":Ry(t,d,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(U(e)?e.join(" "):e,o)}(t,f,g,y,x)):Oy(i,(s?"":h)+(o?"":function(t,e,n){return''+oe(t)+""}(d,!s,m))+(a?"":function(t,e,n,i){var r=n?"10px":"20px",o=e?"float:right;margin-left:"+r:"";return t=U(t)?t:[t],''+E(t,(function(t){return oe(t)})).join("  ")+""}(f,g,y,x)),n)}}function Py(t,e,n,i,r,o){if(t)return Dy(t)({useUTC:r,renderMode:n,orderMode:i,markupStyleCreator:e,valueFormatter:t.valueFormatter},t,0,o)}function Oy(t,e,n){return'
'+e+'
'}function Ry(t,e,n){return t.markupStyleCreator.wrapRichTextStyle(e,n)}function Ny(t,e){return wp(t.getData().getItemVisual(e,"style")[t.visualDrawType])}function zy(t,e){var n=t.get("padding");return null!=n?n:"richText"===e?[8,10]:10}var Ey=function(){function t(){this.richTextStyles={},this._nextStyleNameId=Eo()}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=bp({color:e,type:t,renderMode:n,markerId:i});return X(r)?r:(this.richTextStyles[i]=r.style,r.content)},t.prototype.wrapRichTextStyle=function(t,e){var n={};U(e)?z(e,(function(t){return A(n,t)})):A(n,e);var i=this._generateStyleName();return this.richTextStyles[i]=n,"{"+i+"|"+t+"}"},t}();function By(t){var e,n,i,r,o=t.series,a=t.dataIndex,s=t.multipleSeries,l=o.getData(),u=l.mapDimensionsAll("defaultedTooltip"),c=u.length,h=o.getRawValue(a),d=U(h),p=Ny(o,a);if(c>1||d&&!c){var f=function(t,e,n,i,r){var o=e.getData(),a=B(t,(function(t,e,n){var i=o.getDimensionInfo(n);return t||i&&!1!==i.tooltip&&null!=i.displayName}),!1),s=[],l=[],u=[];function c(t,e){var n=o.getDimensionInfo(e);n&&!1!==n.otherDims.tooltip&&(a?u.push(Ty("nameValue",{markerType:"subItem",markerColor:r,name:n.displayName,value:t,valueType:n.type})):(s.push(t),l.push(n.type)))}return i.length?z(i,(function(t){c(Vg(o,n,t),t)})):z(t,c),{inlineValues:s,inlineValueTypes:l,blocks:u}}(h,o,a,u,p);e=f.inlineValues,n=f.inlineValueTypes,i=f.blocks,r=f.inlineValues[0]}else if(c){var g=l.getDimensionInfo(u[0]);r=e=Vg(l,a,u[0]),n=g.type}else r=e=d?h[0]:h;var y=ra(o),v=y&&o.name||"",m=l.getName(a),x=s?v:m;return Ty("section",{header:v,noHeader:s||!y,sortParam:r,blocks:[Ty("nameValue",{markerType:"item",markerColor:p,name:x,noName:!ut(x),value:e,valueType:n,dataIndex:a})].concat(i||[])})}var Vy=sa();function Gy(t,e){return t.getName(e)||t.getId(e)}var Fy="__universalTransitionEnabled",Wy=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._selectedDataIndicesMap={},e}var i;return n(e,t),e.prototype.init=function(t,e,n){this.seriesIndex=this.componentIndex,this.dataTask=Hg({count:Uy,reset:Yy}),this.dataTask.context={model:this},this.mergeDefaultAndTheme(t,n),(Vy(this).sourceManager=new my(this)).prepareSource();var i=this.getInitialData(t,n);Zy(i,this),this.dataTask.context.data=i,Vy(this).dataBeforeProcessed=i,Hy(this),this._initSelectedMapFromData(i)},e.prototype.mergeDefaultAndTheme=function(t,e){var n=jp(this),i=n?Kp(t):{},r=this.subType;Qp.hasClass(r)&&(r+="Series"),C(t,e.getTheme().get(this.subType)),C(t,this.getDefaultOption()),Ko(t,"label",["show"]),this.fillDataTextStyle(t.data),n&&qp(t,i,n)},e.prototype.mergeOption=function(t,e){t=C(this.option,t,!0),this.fillDataTextStyle(t.data);var n=jp(this);n&&qp(this.option,t,n);var i=Vy(this).sourceManager;i.dirty(),i.prepareSource();var r=this.getInitialData(t,e);Zy(r,this),this.dataTask.dirty(),this.dataTask.context.data=r,Vy(this).dataBeforeProcessed=r,Hy(this),this._initSelectedMapFromData(r)},e.prototype.fillDataTextStyle=function(t){if(t&&!$(t))for(var e=["show"],n=0;n=0&&c<0)&&(u=o,c=r,h=0),r===c&&(l[h++]=e))})),l.length=h,l},e.prototype.formatTooltip=function(t,e,n){return By({series:this,dataIndex:t,multipleSeries:e})},e.prototype.isAnimationEnabled=function(){var t=this.ecModel;if(r.node&&(!t||!t.ssr))return!1;var e=this.getShallow("animation");return e&&this.getData().count()>this.getShallow("animationThreshold")&&(e=!1),!!e},e.prototype.restoreData=function(){this.dataTask.dirty()},e.prototype.getColorFromPalette=function(t,e,n){var i=this.ecModel,r=Rf.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){var i=this.option.selectedMode,r=this.getData(e);if("series"===i||"all"===n)return this.option.selectedMap={},void(this._selectedDataIndicesMap={});for(var o=0;o=0&&n.push(r)}return n},e.prototype.isSelected=function(t,e){var n=this.option.selectedMap;if(!n)return!1;var i=this.getData(e);return("all"===n||n[Gy(i,t)])&&!i.getItemModel(t).get(["select","disabled"])},e.prototype.isUniversalTransitionEnabled=function(){if(this[Fy])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,o=r.selectedMode,a=e.length;if(o&&a)if("series"===o)r.selectedMap="all";else if("multiple"===o){q(r.selectedMap)||(r.selectedMap={});for(var s=r.selectedMap,l=0;l0&&this._innerSelect(t,e)}},e.registerClass=function(t){return Qp.registerClass(t)},e.protoInitialize=((i=e.prototype).type="series.__base__",i.seriesIndex=0,i.ignoreStyleOnData=!1,i.hasSymbolVisual=!1,i.defaultSymbol="circle",i.visualStyleAccessPath="itemStyle",void(i.visualDrawType="fill")),e}(Qp);function Hy(t){var e=t.name;ra(t)||(t.name=function(t){var e=t.getRawData(),n=e.mapDimensionsAll("seriesName"),i=[];return z(n,(function(t){var n=e.getDimensionInfo(t);n.displayName&&i.push(n.displayName)})),i.join(" ")}(t)||e)}function Uy(t){return t.model.getRawData().count()}function Yy(t){var e=t.model;return e.setData(e.getRawData().cloneShallow()),Xy}function Xy(t,e){e.outputData&&t.end>e.outputData.count()&&e.model.getRawData().cloneShallow(e.outputData)}function Zy(t,e){z(vt(t.CHANGABLE_METHODS,t.DOWNSAMPLE_METHODS),(function(n){t.wrapMethod(n,H(jy,e))}))}function jy(t,e){var n=qy(t);return n&&n.setOutputEnd((e||this).count()),e}function qy(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}}R(Wy,Fg),R(Wy,Rf),Sa(Wy,Qp);var Ky=function(){function t(){this.group=new to,this.uid=Md("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.toggleBlurSeries=function(t,e,n){},t.prototype.eachRendered=function(t){var e=this.group;e&&e.traverse(t)},t}();function $y(){var t=sa();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"}}wa(Ky),Ca(Ky);var Jy=sa(),Qy=$y(),tv=function(){function t(){this.group=new to,this.uid=Md("viewChart"),this.renderTask=Hg({plan:iv,reset:rv}),this.renderTask.context={view:this}}return t.prototype.init=function(t,e){},t.prototype.render=function(t,e,n,i){0},t.prototype.highlight=function(t,e,n,i){var r=t.getData(i&&i.dataType);r&&nv(r,i,"emphasis")},t.prototype.downplay=function(t,e,n,i){var r=t.getData(i&&i.dataType);r&&nv(r,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.prototype.eachRendered=function(t){Bh(this.group,t)},t.markUpdateMethod=function(t,e){Jy(t).updateMethod=e},t.protoInitialize=void(t.prototype.type="chart"),t}();function ev(t,e,n){t&&Pu(t)&&("emphasis"===e?du:pu)(t,n)}function nv(t,e,n){var i=aa(t,e),r=e&&null!=e.highlightKey?function(t){var e=Vl[t];return null==e&&Bl<=32&&(e=Vl[t]=Bl++),e}(e.highlightKey):null;null!=i?z(qo(i),(function(e){ev(t.getItemGraphicEl(e),n,r)})):t.eachItemGraphicEl((function(t){ev(t,n,r)}))}function iv(t){return Qy(t.model)}function rv(t){var e=t.model,n=t.ecModel,i=t.api,r=t.payload,o=e.pipelineContext.progressiveRender,a=t.view,s=r&&Jy(r).updateMethod,l=o?"incrementalPrepareRender":s&&a[s]?s:"render";return"render"!==l&&a[l](e,n,i,r),ov[l]}wa(tv),Ca(tv);var ov={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)}}},av="\0__throttleOriginMethod",sv="\0__throttleRate",lv="\0__throttleType";function uv(t,e,n){var i,r,o,a,s,l=0,u=0,c=null;function h(){u=(new Date).getTime(),c=null,t.apply(o,a||[])}e=e||0;var d=function(){for(var t=[],d=0;d=0?h():c=setTimeout(h,-r),l=i};return d.clear=function(){c&&(clearTimeout(c),c=null)},d.debounceNextCall=function(t){s=t},d}function cv(t,e,n,i){var r=t[e];if(r){var o=r[av]||r,a=r[lv];if(r[sv]!==n||a!==i){if(null==n||!i)return t[e]=o;(r=t[e]=uv(o,n,"debounce"===i))[av]=o,r[lv]=i,r[sv]=n}return r}}function hv(t,e){var n=t[e];n&&n[av]&&(n.clear&&n.clear(),t[e]=n[av])}var dv=sa(),pv={itemStyle:Da(xd,!0),lineStyle:Da(yd,!0)},fv={lineStyle:"stroke",itemStyle:"fill"};function gv(t,e){var n=t.visualStyleMapper||pv[e];return n||(console.warn("Unknown style type '"+e+"'."),pv.itemStyle)}function yv(t,e){var n=t.visualDrawType||fv[e];return n||(console.warn("Unknown style type '"+e+"'."),"fill")}var vv={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=t.getModel(i),o=gv(t,i)(r),a=r.getShallow("decal");a&&(n.setVisual("decal",a),a.dirty=!0);var s=yv(t,i),l=o[s],u=Y(l)?l:null,c="auto"===o.fill||"auto"===o.stroke;if(!o[s]||u||c){var h=t.getColorFromPalette(t.name,null,e.getSeriesCount());o[s]||(o[s]=h,n.setVisual("colorFromPalette",!0)),o.fill="auto"===o.fill||Y(o.fill)?h:o.fill,o.stroke="auto"===o.stroke||Y(o.stroke)?h: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=A({},o);r[s]=u(i),e.setItemVisual(n,"style",r)}}}},mv=new wd,xv={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){if(!t.ignoreStyleOnData&&!e.isSeriesFiltered(t)){var n=t.getData(),i=t.visualStyleAccessPath||"itemStyle",r=gv(t,i),o=n.getVisual("drawType");return{dataEach:n.hasItemOption?function(t,e){var n=t.getRawDataItem(e);if(n&&n[i]){mv.option=n[i];var a=r(mv);A(t.ensureUniqueItemVisual(e,"style"),a),mv.option.decal&&(t.setItemVisual(e,"decal",mv.option.decal),mv.option.decal.dirty=!0),o in a&&t.setItemVisual(e,"colorFromPalette",!1)}}:null}}}},_v={performRawSeries:!0,overallReset:function(t){var e=yt();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)),dv(t).scope=r}})),t.eachSeries((function(e){if(!e.isColorBySeries()&&!t.isSeriesFiltered(e)){var n=e.getRawData(),i={},r=e.getData(),o=dv(e).scope,a=e.visualStyleAccessPath||"itemStyle",s=yv(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+"",c=n.count();l[s]=e.getColorFromPalette(u,o,c)}}))}}))}},bv=Math.PI;var wv=function(){function t(t,e,n,i){this._stageTaskMap=yt(),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=yt();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;z(this._allHandlers,(function(i){var r=t.get(i.uid)||t.set(i.uid,{}),o="";lt(!(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))}z(t,(function(t,s){if(!i.visualType||i.visualType===t.visualType){var l=o._stageTaskMap.get(t.uid),u=l.seriesTaskMap,c=l.overallTask;if(c){var h,d=c.agentStubMap;d.each((function(t){a(i,t)&&(t.dirty(),h=!0)})),h&&c.dirty(),o.updatePayload(c,n);var p=o.getPerformArgs(c,i.block);d.each((function(t){t.perform(p)})),c.perform(p)&&(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=yt(),s=t.seriesType,l=t.getTargetSeries;function u(e){var s=e.uid,l=a.set(s,o&&o.get(s)||Hg({plan:Cv,reset:Dv,count:Lv}));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||Hg({reset:Sv});o.context={ecModel:n,api:i,overallReset:t.overallReset,scheduler:r};var a=o.agentStubMap,s=o.agentStubMap=yt(),l=t.seriesType,u=t.getTargetSeries,c=!0,h=!1,d="";function p(t){var e=t.uid,n=s.set(e,a&&a.get(e)||(h=!0,Hg({reset:Mv,onDirty:Tv})));n.context={model:t,overallProgress:c},n.agent=o,n.__block=c,r._pipe(t,n)}lt(!t.createOnAllSeries,d),l?n.eachRawSeriesByType(l,p):u?u(n,i).each(p):(c=!1,z(n.getSeries(),p)),h&&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 Y(t)&&(t={overallReset:t,seriesType:Pv(t)}),t.uid=Md("stageHandler"),e&&(t.visualType=e),t},t}();function Sv(t){t.overallReset(t.ecModel,t.api,t.payload)}function Mv(t){return t.overallProgress&&Iv}function Iv(){this.agent.dirty(),this.getDownstream().dirty()}function Tv(){this.agent&&this.agent.dirty()}function Cv(t){return t.plan?t.plan(t.model,t.ecModel,t.api,t.payload):null}function Dv(t){t.useClearVisual&&t.data.clearAllVisual();var e=t.resetDefines=qo(t.reset(t.model,t.ecModel,t.api,t.payload));return e.length>1?E(e,(function(t,e){return kv(e)})):Av}var Av=kv(0);function kv(t){return function(e,n){var i=n.data,r=n.resetDefines[t];if(r&&r.dataEach)for(var o=e.start;o0&&c===r.length-u.length){var h=r.slice(0,c);"data"!==h&&(e.mainType=h,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}(),Uv=["symbol","symbolSize","symbolRotate","symbolOffset"],Yv=Uv.concat(["symbolKeepAspect"]),Xv={createOnAllSeries:!0,performRawSeries:!0,reset:function(t,e){var n=t.getData();if(t.legendIcon&&n.setVisual("legendIcon",t.legendIcon),t.hasSymbolVisual){for(var i={},r={},o=!1,a=0;a=0&&fm(l)?l:.5,t.createRadialGradient(a,s,0,a,s,l)}(t,e,n):function(t,e,n){var i=null==e.x?0:e.x,r=null==e.x2?1:e.x2,o=null==e.y?0:e.y,a=null==e.y2?0:e.y2;return e.global||(i=i*n.width+n.x,r=r*n.width+n.x,o=o*n.height+n.y,a=a*n.height+n.y),i=fm(i)?i:0,r=fm(r)?r:1,o=fm(o)?o:0,a=fm(a)?a:0,t.createLinearGradient(i,o,r,a)}(t,e,n),r=e.colorStops,o=0;o0&&(e=i.lineDash,n=i.lineWidth,e&&"solid"!==e&&n>0?"dashed"===e?[4*n,2*n]:"dotted"===e?[n]:j(e)?[e]:U(e)?e:null:null),o=i.lineDashOffset;if(r){var a=i.strokeNoScale&&t.getLineScale?t.getLineScale():1;a&&1!==a&&(r=E(r,(function(t){return t/a})),o/=a)}return[r,o]}var xm=new Fs(!0);function _m(t){var e=t.stroke;return!(null==e||"none"===e||!(t.lineWidth>0))}function bm(t){return"string"==typeof t&&"none"!==t}function wm(t){var e=t.fill;return null!=e&&"none"!==e}function Sm(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 Mm(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 Im(t,e,n){var i=Oa(e.image,e.__image,n);if(Na(i)){var r=t.createPattern(i,e.repeat||"repeat");if("function"==typeof DOMMatrix&&r&&r.setTransform){var o=new DOMMatrix;o.translateSelf(e.x||0,e.y||0),o.rotateSelf(0,0,(e.rotation||0)*wt),o.scaleSelf(e.scaleX||1,e.scaleY||1),r.setTransform(o)}return r}}var Tm=["shadowBlur","shadowOffsetX","shadowOffsetY"],Cm=[["lineCap","butt"],["lineJoin","miter"],["miterLimit",10]];function Dm(t,e,n,i,r){var o=!1;if(!i&&e===(n=n||{}))return!1;if(i||e.opacity!==n.opacity){Lm(t,r),o=!0;var a=Math.max(Math.min(e.opacity,1),0);t.globalAlpha=isNaN(a)?es.opacity:a}(i||e.blend!==n.blend)&&(o||(Lm(t,r),o=!0),t.globalCompositeOperation=e.blend||es.blend);for(var s=0;s0&&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.isSSR=function(){return this._ssr},e.prototype.setOption=function(t,e,n){if(!this[Km])if(this._disposed)kx(this.id);else{var i,r,o;if(q(e)&&(n=e.lazyUpdate,i=e.silent,r=e.replaceMerge,o=e.transition,e=e.notMerge),this[Km]=!0,Mx(this),!this._model||e){var a=new Yf(this._api),s=this._theme,l=this._model=new Bf;l.scheduler=this._scheduler,l.ssr=this._ssr,l.init(null,null,null,s,this._locale,a)}this._model.setOption(t,{replaceMerge:r},Nx);var u={seriesTransition:o,optionChanged:!0};if(n)this[Jm]={silent:i,updateParams:u},this[Km]=!1,this.getZr().wakeUp();else{try{ox(this),lx.update.call(this,null,u)}catch(t){throw this[Jm]=null,this[Km]=!1,t}this._ssr||this._zr.flush(),this[Jm]=null,this[Km]=!1,dx.call(this,i),px.call(this,i)}}},e.prototype.setTheme=function(t,e){if(!this[Km])if(this._disposed)kx(this.id);else{var n=this._model;if(n){var i=e&&e.silent,r=null;this[Jm]&&(null==i&&(i=this[Jm].silent),r=this[Jm].updateParams,this[Jm]=null),this[Km]=!0,Mx(this);try{this._updateTheme(t),n.setTheme(this._theme),ox(this),lx.update.call(this,{type:"setTheme"},r)}catch(t){throw this[Km]=!1,t}this[Km]=!1,dx.call(this,i),px.call(this,i)}}},e.prototype._updateTheme=function(t){X(t)&&(t=Ex[t]),t&&((t=T(t))&&dg(t,!0),this._theme=t)},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||r.hasGlobalWindow&&window.devicePixelRatio||1},e.prototype.getRenderedCanvas=function(t){return this.renderToCanvas(t)},e.prototype.renderToCanvas=function(t){t=t||{};var e=this._zr.painter;return e.getRenderedCanvas({backgroundColor:t.backgroundColor||this._model.get("backgroundColor"),pixelRatio:t.pixelRatio||this.getDevicePixelRatio()})},e.prototype.renderToSVGString=function(t){t=t||{};var e=this._zr.painter;return e.renderToString({useViewBox:t.useViewBox})},e.prototype.getSvgDataURL=function(){var t=this._zr;return z(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;z(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.renderToCanvas(t).toDataURL("image/"+(t&&t.type||"png"));return z(i,(function(t){t.group.ignore=!1})),o}kx(this.id)},e.prototype.getConnectedDataURL=function(t){if(!this._disposed){var e="svg"===t.type,n=this.group,i=Math.min,r=Math.max,o=1/0;if(Gx[n]){var a=o,s=o,l=-1/0,u=-1/0,h=[],d=t&&t.pixelRatio||this.getDevicePixelRatio();z(Vx,(function(o,c){if(o.group===n){var d=e?o.getZr().painter.getSvgDom().innerHTML:o.renderToCanvas(T(t)),p=o.getDom().getBoundingClientRect();a=i(p.left,a),s=i(p.top,s),l=r(p.right,l),u=r(p.bottom,u),h.push({dom:d,left:p.left,top:p.top})}}));var p=(l*=d)-(a*=d),f=(u*=d)-(s*=d),g=c.createCanvas(),y=oo(g,{renderer:e?"svg":"canvas"});if(y.resize({width:p,height:f}),e){var v="";return z(h,(function(t){var e=t.left-a,n=t.top-s;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 xl({shape:{x:0,y:0,width:p,height:f},style:{fill:t.connectedBackgroundColor}})),z(h,(function(t){var e=new dl({style:{x:t.left*d-a,y:t.top*d-s,image:t.dom}});y.add(e)})),y.refreshImmediately(),g.toDataURL("image/"+(t&&t.type||"png"))}return this.getDataURL(t)}kx(this.id)},e.prototype.convertToPixel=function(t,e,n){return ux(this,"convertToPixel",t,e,n)},e.prototype.convertToLayout=function(t,e,n){return ux(this,"convertToLayout",t,e,n)},e.prototype.convertFromPixel=function(t,e,n){return ux(this,"convertFromPixel",t,e,n)},e.prototype.containPixel=function(t,e){var n;if(!this._disposed)return z(ua(this._model,t),(function(t,i){i.indexOf("Models")>=0&&z(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;kx(this.id)},e.prototype.getVisual=function(t,e){var n=ua(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?jv(r,o,e):qv(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=this;z(Ax,(function(e){var n=function(n){var i,r=t.getModel(),o=n.target,a="globalout"===e;if(a?i={}:o&&Qv(o,(function(t){var e=zl(t);if(e&&null!=e.dataIndex){var n=e.dataModel||r.getSeriesByIndex(e.seriesIndex);return i=n&&n.getDataParams(e.dataIndex,e.dataType,o)||{},!0}if(e.eventData)return i=A({},e.eventData),!0}),!0),i){var s=i.componentType,l=i.componentIndex;"markLine"!==s&&"markPoint"!==s&&"markArea"!==s||(s="series",l=i.seriesIndex);var u=s&&null!=l&&r.getComponent(s,l),c=u&&t["series"===u.mainType?"_chartsMap":"_componentsMap"][u.__viewId];0,i.event=n,i.type=e,t._$eventProcessor.eventInfo={targetEl:o,packedEvent:i,model:u,view:c},t.trigger(e,i)}};n.zrEventfulCallAtLast=!0,t._zr.on(e,n,t)}));var e=this._messageCenter;z(Ox,(function(n,i){e.on(i,(function(e){t.trigger(i,e)}))})),function(t,e,n){t.on("selectchanged",(function(t){var i=n.getModel();t.isFromClick?(Jv("map","selectchanged",e,i,t),Jv("pie","selectchanged",e,i,t)):"select"===t.fromAction?(Jv("map","selected",e,i,t),Jv("pie","selected",e,i,t)):"unselect"===t.fromAction&&(Jv("map","unselected",e,i,t),Jv("pie","unselected",e,i,t))}))}(e,this,this._api)},e.prototype.isDisposed=function(){return this._disposed},e.prototype.clear=function(){this._disposed?kx(this.id):this.setOption({series:[]},!0)},e.prototype.dispose=function(){if(this._disposed)kx(this.id);else{this._disposed=!0,this.getDom()&&fa(this.getDom(),Hx,"");var t=this,e=t._api,n=t._model;z(t._componentsViews,(function(t){t.dispose(n,e)})),z(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 Vx[t.id]}},e.prototype.resize=function(t){if(!this[Km])if(this._disposed)kx(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[Jm]&&(null==i&&(i=this[Jm].silent),n=!0,this[Jm]=null),this[Km]=!0,Mx(this);try{n&&ox(this),lx.update.call(this,{type:"resize",animation:A({duration:0},t&&t.animation)})}catch(t){throw this[Km]=!1,t}this[Km]=!1,dx.call(this,i),px.call(this,i)}}},e.prototype.showLoading=function(t,e){if(this._disposed)kx(this.id);else if(q(t)&&(e=t,t=""),t=t||"default",this.hideLoading(),Bx[t]){var n=Bx[t](this._api,e),i=this._zr;this._loadingFX=n,i.add(n)}},e.prototype.hideLoading=function(){this._disposed?kx(this.id):(this._loadingFX&&this._zr.remove(this._loadingFX),this._loadingFX=null)},e.prototype.makeActionFromEvent=function(t){var e=A({},t);return e.type=Px[t.type],e},e.prototype.dispatchAction=function(t,e){if(this._disposed)kx(this.id);else if(q(e)||(e={silent:!!e}),Lx[t.type]&&this._model)if(this[Km])this._pendingActions.push(t);else{var n=e.silent;hx.call(this,t,n);var i=e.flush;i?this._zr.flush():!1!==i&&r.browser.weChat&&this._throttledZrFlush(),dx.call(this,n),px.call(this,n)}},e.prototype.updateLabelLayout=function(){Wm.trigger("series:layoutlabels",this._model,this._api,{updatedSeries:[]})},e.prototype.appendData=function(t){if(this._disposed)kx(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){t.clearColorPalette(),t.eachSeries((function(t){t.clearColorPalette()}))}function e(t){for(var e=[],n=t.currentStates,i=0;i0?{duration:o,delay:i.get("delay"),easing:i.get("easing")}:null;n.eachRendered((function(t){if(t.states&&t.states.emphasis){if(nh(t))return;if(t instanceof sl&&function(t){var e=Gl(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}(t),t.__dirty){var n=t.prevStates;n&&t.useStates(n)}if(r){t.stateTransition=a;var i=t.getTextContent(),o=t.getTextGuideLine();i&&(i.stateTransition=a),o&&(o.stateTransition=a)}t.__dirty&&e(t)}}))}ox=function(t){var e=t._scheduler;e.restorePipelines(t._model),e.prepareStageTasks(),ax(t,!0),ax(t,!1),e.plan()},ax=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")&&!r.node&&!r.worker&&e.eachSeries((function(e){if(!e.preventUsingHoverLayer){var n=t._chartsMap[e.__viewId];n.__alive&&n.eachRendered((function(t){t.states.emphasis&&(t.states.emphasis.hoverLayer=!0)}))}}))}(t,e),Wm.trigger("series:afterupdate",e,n,l)},bx=function(t){t[Qm]=!0,t.getZr().wakeUp()},Mx=function(t){t[$m]=(t[$m]+1)%1e3},Sx=function(t){t[Qm]&&(t.getZr().storage.traverse((function(t){nh(t)||e(t)})),t[Qm]=!1)},xx=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){du(e,n),bx(t)},i.prototype.leaveEmphasis=function(e,n){pu(e,n),bx(t)},i.prototype.enterBlur=function(e){fu(e),bx(t)},i.prototype.leaveBlur=function(e){gu(e),bx(t)},i.prototype.enterSelect=function(e){yu(e),bx(t)},i.prototype.leaveSelect=function(e){vu(e),bx(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.prototype.getMainProcessVersion=function(){return t[$m]},i}(Hf))(t)},_x=function(t){function e(t,e){for(var n=0;n=0)){i_.push(n);var o=wv.wrapStageHandler(n,r);o.__prio=e,o.__raw=n,t.push(o)}}function o_(t,e){Bx[t]=e}function a_(t,e,n){var i=Um("registerMap");i&&i(t,e,n)}var s_=function(t){var e=(t=T(t)).type,n="";e||Yo(n);var i=e.split(":");2!==i.length&&Yo(n);var r=!1;"echarts"===i[0]&&(e=i[1],r=!0),t.__isBuiltIn=r,oy.set(e,t)};function l_(t,e,n,i){return{eventContent:{selected:Mu(n),isFromClick:e.isFromClick||!1}}}n_(Zm,vv),n_(jm,xv),n_(jm,_v),n_(Zm,Xv),n_(jm,Zv),n_(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=Bm(n,e))}));var r=i.getVisual("decal");if(r)i.getVisual("style").decal=Bm(r,e)}}))})),jx(dg),qx(900,(function(t){var e=yt();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.push(o)}})),e.each((function(t){0!==t.length&&("seriesDesc"===(t[0].seriesModel.get("stackOrder")||"seriesAsc")&&t.reverse(),z(t,(function(e,n){e.data.setCalculationInfo("stackedOnSeries",n>0?t[n-1].seriesModel:null)})),function(t){z(t,(function(e,n){var i=[],r=[NaN,NaN],o=[e.stackResultDimension,e.stackedOverDimension],a=e.data,s=e.isStackedByIndex,l=e.seriesModel.get("stackStrategy")||"samesign";a.modify(o,(function(o,u,c){var h,d,p=a.get(e.stackedDimension,c);if(isNaN(p))return r;s?d=a.getRawIndex(c):h=a.get(e.stackedByDimension,c);for(var f=NaN,g=n-1;g>=0;g--){var y=t[g];if(s||(d=y.data.rawIndexOf(y.stackedByDimension,h)),d>=0){var v=y.data.getByRawIndex(y.stackResultDimension,d);if("all"===l||"positive"===l&&v>0||"negative"===l&&v<0||"samesign"===l&&p>=0&&v>0||"samesign"===l&&p<=0&&v<0){p=Mo(p,v),f=v;break}}}return i[0]=p,i[1]=f,i}))}))}(t))}))})),o_("default",(function(t,e){k(e=e||{},{text:"loading",textColor:tf.color.primary,fontSize:12,fontWeight:"normal",fontStyle:"normal",fontFamily:"sans-serif",maskColor:"rgba(255,255,255,0.8)",showSpinner:!0,color:tf.color.theme[0],spinnerRadius:10,lineWidth:5,zlevel:0});var n=new to,i=new xl({style:{fill:e.maskColor},zlevel:e.zlevel,z:1e4});n.add(i);var r,o=new Sl({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 xl({style:{fill:"none"},textContent:o,textConfig:{position:"right",distance:10},zlevel:e.zlevel,z:10001});return n.add(a),e.showSpinner&&((r=new Nc({shape:{startAngle:-bv/2,endAngle:-bv/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*bv/2}).start("circularInOut"),r.animateShape(!0).when(1e3,{startAngle:3*bv/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})),Qx({type:Yl,event:Yl,update:Yl},bt),Qx({type:Xl,event:Xl,update:Xl},bt),Qx({type:Zl,event:Kl,update:Zl,action:bt,refineEvent:l_,publishNonRefinedEvent:!0}),Qx({type:jl,event:Kl,update:jl,action:bt,refineEvent:l_,publishNonRefinedEvent:!0}),Qx({type:ql,event:Kl,update:ql,action:bt,refineEvent:l_,publishNonRefinedEvent:!0}),Zx("default",{}),Zx("dark",Wv);var u_=[],c_={registerPreprocessor:jx,registerProcessor:qx,registerPostInit:Kx,registerPostUpdate:$x,registerUpdateLifecycle:Jx,registerAction:Qx,registerCoordinateSystem:t_,registerLayout:e_,registerVisual:n_,registerTransform:s_,registerLoading:o_,registerMap:a_,registerImpl:function(t,e){Hm[t]=e},PRIORITY:qm,ComponentModel:Qp,ComponentView:Ky,SeriesModel:Wy,ChartView:tv,registerComponentModel:function(t){Qp.registerClass(t)},registerComponentView:function(t){Ky.registerClass(t)},registerSeriesModel:function(t){Wy.registerClass(t)},registerChartView:function(t){tv.registerClass(t)},registerCustomSeries:function(t,e){Xm(t,e)},registerSubTypeDefaulter:function(t,e){Qp.registerSubTypeDefaulter(t,e)},registerPainter:function(t,e){ao(t,e)}};function h_(t){U(t)?z(t,(function(t){h_(t)})):P(u_,t)>=0||(u_.push(t),Y(t)&&(t={install:t}),t.install(c_))}function d_(t){return null==t?0:t.length||1}function p_(t){return t}var f_=function(){function t(t,e,n,i,r,o){this._old=t,this._new=e,this._oldKeyGetter=n||p_,this._newKeyGetter=i||p_,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===h)this._updateManyToOne&&this._updateManyToOne(u,l),i[s]=null;else if(1===c&&h>1)this._updateOneToMany&&this._updateOneToMany(u,l),i[s]=null;else if(1===c&&1===h)this._update&&this._update(u,l),i[s]=null;else if(c>1&&h>1)this._updateManyToMany&&this._updateManyToMany(u,l),i[s]=null;else if(c>1)for(var d=0;d1)for(var a=0;a30}var T_,C_,D_,A_,k_,L_,P_,O_=q,R_=E,N_="undefined"==typeof Int32Array?Array:Int32Array,z_=["hasItemOption","_nameList","_idList","_invertedIndicesMap","_dimSummary","userOutput","_rawData","_dimValueGetter","_nameDimIdx","_idDimIdx","_nameRepeatCount"],E_=["_approximateExtent"],B_=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","minmaxDownSample","lttbDownSample","map"],this.CHANGABLE_METHODS=["filterSelf","selectRange"],this.DOWNSAMPLE_METHODS=["downSample","minmaxDownSample","lttbDownSample"];var i=!1;w_(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===hf&&!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&&(U(r=this.getVisual(e))?r=r.slice():O_(r)&&(r=A({},r)),i[e]=r),r},t.prototype.setItemVisual=function(t,e,n){var i=this._itemVisuals[t]||{};this._itemVisuals[t]=i,O_(e)?A(i,e):i[e]=n},t.prototype.clearAllVisual=function(){this._visual={},this._itemVisuals=[]},t.prototype.setLayout=function(t,e){O_(t)?A(this._layout,t):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?A(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;El(n,this.dataType,t,e),this._graphicEls[t]=e},t.prototype.getItemGraphicEl=function(t){return this._graphicEls[t]},t.prototype.eachItemGraphicEl=function(t,e){z(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:R_(this.dimensions,this._getDimInfo,this),this.hostModel)),k_(e,this),e._store=this._store,e},t.prototype.wrapMethod=function(t,e){var n=this[t];Y(n)&&(this.__wrappedMethods=this.__wrappedMethods||[],this.__wrappedMethods.push(t),this[t]=function(){var t=n.apply(this,arguments);return e.apply(this,[t].concat(at(arguments)))})},t.internalField=(T_=function(t){var e=t._invertedIndicesMap;z(e,(function(n,i){var r=t._dimInfos[i],o=r.ordinalMeta,a=t._store;if(o){n=e[i]=new N_(o.categories.length);for(var s=0;s1&&(s+="__ec__"+u),i[e]=s}})),t}();function V_(t,e){_g(t)||(t=wg(t));var n=(e=e||{}).coordDimensions||[],i=e.dimensionsDefine||t.dimensionsDefine||[],r=yt(),o=[],a=function(t,e,n,i){var r=Math.max(t.dimensionsDetectedCount||1,e.length,n.length,i||0);return z(e,(function(t){var e;q(t)&&(e=t.dimsDef)&&(r=Math.max(r,e.length))})),r}(t,n,i,e.dimensionsCount),s=e.canOmitUnusedDimensions&&I_(a),l=i===t.dimensionsDefine,u=l?M_(t):S_(i),c=e.encodeDefine;!c&&e.encodeDefaulter&&(c=e.encodeDefaulter(t,a));for(var h=yt(c),d=new dy(a),p=0;p0&&(i.name=r+(o-1)),o++,e.set(r,o)}}(o),new b_({source:t,dimensions:o,fullDimensionCount:a,dimensionOmitted:s})}function G_(t,e,n){if(n||e.hasKey(t)){for(var i=0;e.hasKey(t+i);)i++;t+=i}return e.set(t,!0),t}var F_=function(t){this.coordSysDims=[],this.axisMap=yt(),this.categoryAxisMap=yt(),this.coordSysName=t};var W_={cartesian2d:function(t,e,n,i){var r=t.getReferringComponents("xAxis",ha).models[0],o=t.getReferringComponents("yAxis",ha).models[0];e.coordSysDims=["x","y"],n.set("x",r),n.set("y",o),H_(r)&&(i.set("x",r),e.firstCategoryDimIndex=0),H_(o)&&(i.set("y",o),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=1))},singleAxis:function(t,e,n,i){var r=t.getReferringComponents("singleAxis",ha).models[0];e.coordSysDims=["single"],n.set("single",r),H_(r)&&(i.set("single",r),e.firstCategoryDimIndex=0)},polar:function(t,e,n,i){var r=t.getReferringComponents("polar",ha).models[0],o=r.findAxisModel("radiusAxis"),a=r.findAxisModel("angleAxis");e.coordSysDims=["radius","angle"],n.set("radius",o),n.set("angle",a),H_(o)&&(i.set("radius",o),e.firstCategoryDimIndex=0),H_(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();z(o.parallelAxisIndex,(function(t,o){var s=r.getComponent("parallelAxis",t),l=a[o];n.set(l,s),H_(s)&&(i.set(l,s),null==e.firstCategoryDimIndex&&(e.firstCategoryDimIndex=o))}))},matrix:function(t,e,n,i){var r=t.getReferringComponents("matrix",ha).models[0];e.coordSysDims=["x","y"];var o=r.getDimensionModel("x"),a=r.getDimensionModel("y");n.set("x",o),n.set("y",a),i.set("x",o),i.set("y",a)}};function H_(t){return"category"===t.get("type")}function U_(t,e,n){var i,r,o,a=(n=n||{}).byIndex,s=n.stackedCoordDimension;!function(t){return!w_(t.schema)}(e)?(r=e.schema,i=r.dimensions,o=e.store):i=e;var l,u,c,h,d=!(!t||!t.get("stack"));if(z(i,(function(t,e){X(t)&&(i[e]=t={name:t}),d&&!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){c="__\0ecstackresult_"+t.id,h="__\0ecstackedover_"+t.id,l&&(l.createInvertedIndices=!0);var p=u.coordDim,f=u.type,g=0;z(i,(function(t){t.coordDim===p&&g++}));var y={name:c,coordDim:p,coordDimIndex:g,type:f,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length},v={name:h,coordDim:h,coordDimIndex:g+1,type:f,isExtraCoord:!0,isCalculationCoord:!0,storeDimIndex:i.length+1};r?(o&&(y.storeDimIndex=o.ensureCalculationDimension(h,f),v.storeDimIndex=o.ensureCalculationDimension(c,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:h,stackResultDimension:c}}function Y_(t,e){return!!e&&e===t.getCalculationInfo("stackedDimension")}function X_(t,e){return Y_(t,e)?t.getCalculationInfo("stackResultDimension"):e}function Z_(t,e,n){n=n||{};var i,r=e.getSourceManager(),o=!1;t?(o=!0,i=wg(t)):o=(i=r.getSource()).sourceFormat===hf;var a=function(t){var e=t.get("coordinateSystem"),n=new F_(e),i=W_[e];if(i)return i(t,n,n.axisMap,n.categoryAxisMap),n}(e),s=function(t,e){var n,i=t.get("coordinateSystem"),r=Tp.get(i);return e&&e.coordSysDims&&(n=E(e.coordSysDims,(function(t){var n={name:t},i=e.axisMap.get(t);if(i){var r=i.get("type");n.type=v_(r)}return n}))),n||(n=r&&(r.getDimensionsInfo?r.getDimensionsInfo():r.dimensions.slice())||["x","y"]),n}(e,a),l=n.useEncodeDefaulter,u=Y(l)?l:l?H(Sf,s,e):null,c=V_(i,{coordDimensions:s,generateCoord:n.generateCoord,encodeDefine:e.getEncode(),encodeDefaulter:u,canOmitUnusedDimensions:!o}),h=function(t,e,n){var i,r;return n&&z(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}(c.dimensions,n.createInvertedIndices,a),d=o?null:r.getSharedDataStore(c),p=U_(e,{schema:c,store:d}),f=new B_(c,e);f.setCalculationInfo(p);var g=null!=h&&function(t){if(t.sourceFormat===hf){var e=function(t){var e=0;for(;er&&(a=o.interval=r);var s=o.intervalPrecision=$_(a);return function(t,e){!isFinite(t[0])&&(t[0]=e[0]),!isFinite(t[1])&&(t[1]=e[1]),J_(t,0,e),J_(t,1,e),t[0]>t[1]&&(t[0]=t[1])}(o.niceTickExtent=[mo(Math.ceil(t[0]/a)*a,s),mo(Math.floor(t[1]/a)*a,s)],t),o}function K_(t){var e=Math.pow(10,Lo(t)),n=t/e;return n?2===n?n=3:3===n?n=5:n*=2:n=1,mo(n*e)}function $_(t){return _o(t)+2}function J_(t,e,n){t[e]=Math.max(Math.min(t[e],n[1]),n[0])}function Q_(t,e){return t>=e[0]&&t<=e[1]}var tb=function(){function t(){this.normalize=eb,this.scale=nb}return t.prototype.updateMethods=function(t){t.hasBreaks()?(this.normalize=W(t.normalize,t),this.scale=W(t.scale,t)):(this.normalize=eb,this.scale=nb)},t}();function eb(t,e){return e[1]===e[0]?.5:(t-e[0])/(e[1]-e[0])}function nb(t,e){return t*(e[1]-e[0])+e[0]}function ib(t,e,n){var i=Math.log(t);return[Math.log(n?e[0]:Math.max(0,e[0]))/i,Math.log(n?e[1]:Math.max(0,e[1]))/i]}var rb=function(){function t(t){this._calculator=new tb,this._setting=t||{},this._extent=[1/0,-1/0];var e=Nd();e&&(this._brkCtx=e.createScaleBreakContext(),this._brkCtx.update(this._extent))}return t.prototype.getSetting=function(t){return this._setting[t]},t.prototype._innerUnionExtent=function(t){var e=this._extent;this._innerSetExtent(t[0]e[1]?t[1]:e[1])},t.prototype.unionExtentFromData=function(t,e){this._innerUnionExtent(t.getApproximateExtent(e))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.setExtent=function(t,e){this._innerSetExtent(t,e)},t.prototype._innerSetExtent=function(t,e){var n=this._extent;isNaN(t)||(n[0]=t),isNaN(e)||(n[1]=e),this._brkCtx&&this._brkCtx.update(n)},t.prototype.setBreaksFromOption=function(t){var e=Nd();e&&this._innerSetBreak(e.parseAxisBreakOption(t,W(this.parse,this)))},t.prototype._innerSetBreak=function(t){this._brkCtx&&(this._brkCtx.setBreaks(t),this._calculator.updateMethods(this._brkCtx),this._brkCtx.update(this._extent))},t.prototype._innerGetBreaks=function(){return this._brkCtx?this._brkCtx.breaks:[]},t.prototype.hasBreaks=function(){return!!this._brkCtx&&this._brkCtx.hasBreaks()},t.prototype._getExtentSpanWithBreaks=function(){return this._brkCtx&&this._brkCtx.hasBreaks()?this._brkCtx.getExtentSpan():this._extent[1]-this._extent[0]},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}();Ca(rb);var ob=0,ab=function(){function t(t){this.categories=t.categories||[],this._needCollect=t.needCollect,this._deduplication=t.deduplication,this.uid=++ob,this._onCollect=t.onCollect}return t.createByAxisModel=function(e){var n=e.option,i=n.data,r=i&&E(i,sb);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(!X(t)&&!n)return t;if(n&&!this._deduplication)return e=this.categories.length,this.categories[e]=t,this._onCollect&&this._onCollect(t,e),e;var i=this._getOrCreateMap();return null==(e=i.get(t))&&(n?(e=this.categories.length,this.categories[e]=t,i.set(t,e),this._onCollect&&this._onCollect(t,e)):e=NaN),e},t.prototype._getOrCreateMap=function(){return this._map||(this._map=yt(this.categories))},t}();function sb(t){return q(t)&&null!=t.value?t.value:t+""}var lb=function(t){function e(e){var n=t.call(this,e)||this;n.type="ordinal";var i=n.getSetting("ordinalMeta");return i||(i=new ab({})),U(i)&&(i=new ab({categories:E(i,(function(t){return q(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 null==t?NaN:X(t)?this._ordinalMeta.getOrdinal(t):Math.round(t)},e.prototype.contain=function(t){return Q_(t,this._extent)&&t>=0&&t=0&&t=0&&t=t},e.prototype.getOrdinalMeta=function(){return this._ordinalMeta},e.prototype.calcNiceTicks=function(){},e.prototype.calcNiceExtent=function(){},e.type="ordinal",e}(rb);rb.registerClass(lb);var ub=mo,cb=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 null==t||""===t?NaN:Number(t)},e.prototype.contain=function(t){return Q_(t,this._extent)},e.prototype.normalize=function(t){return this._calculator.normalize(t,this._extent)},e.prototype.scale=function(t){return this._calculator.scale(t,this._extent)},e.prototype.getInterval=function(){return this._interval},e.prototype.setInterval=function(t){this._interval=t,this._niceExtent=this._extent.slice(),this._intervalPrecision=$_(t)},e.prototype.getTicks=function(t){t=t||{};var e=this._interval,n=this._extent,i=this._niceExtent,r=this._intervalPrecision,o=Nd(),a=[];if(!e)return a;if("only_break"===t.breakTicks&&o)return o.addBreaksToTicks(a,this._brkCtx.breaks,this._extent),a;n[0]=0&&(l=ub(l+u*e,r))}if(a.length>0&&l===a[a.length-1].value)break;if(a.length>1e4)return[]}var c=a.length?a[a.length-1].value:i[1];return n[1]>c&&(t.expandToNicedExtent?a.push({value:ub(c+e,r)}):a.push({value:n[1]})),o&&o.pruneTicksByBreak(t.pruneByBreak,a,this._brkCtx.breaks,(function(t){return t.value}),this._interval,this._extent),"none"!==t.breakTicks&&o&&o.addBreaksToTicks(a,this._brkCtx.breaks,this._extent),a},e.prototype.getMinorTicks=function(t){for(var e=this.getTicks({expandToNicedExtent:!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 z(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(),c=Math.abs(u[1]-u[0]);i=s?l/c*s:l}else{var h=t.getData();i=Math.abs(o[1]-o[0])/h.count()}var d=yo(t.get("barWidth"),i),p=yo(t.get("barMaxWidth"),i),f=yo(t.get("barMinWidth")||(Sb(t)?.5:1),i),g=t.get("barGap"),y=t.get("barCategoryGap"),v=t.get("defaultBarGap");n.push({bandWidth:i,barWidth:d,barMaxWidth:p,barMinWidth:f,barGap:g,barCategoryGap:y,defaultBarGap:v,axisKey:yb(r),stackId:gb(t)})})),xb(n)}function xb(t){var e={};z(t,(function(t,n){var i=t.axisKey,r=t.bandWidth,o=e[i]||{bandWidth:r,remainedWidth:r,autoWidthCount:0,categoryGap:null,gap:t.defaultBarGap||0,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 c=t.barMinWidth;c&&(a[s].minWidth=c);var h=t.barGap;null!=h&&(o.gap=h);var d=t.barCategoryGap;null!=d&&(o.categoryGap=d)}));var n={};return z(e,(function(t,e){n[e]={};var i=t.stacks,r=t.bandWidth,o=t.categoryGap;if(null==o){var a=F(i).length;o=Math.max(35-4*a,15)+"%"}var s=yo(o,r),l=yo(t.gap,1),u=t.remainedWidth,c=t.autoWidthCount,h=(u-s)/(c+(c-1)*l);h=Math.max(h,0),z(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,c--}else{var i=h;e&&ei&&(i=n),i!==h&&(t.width=i,u-=i+l*i,c--)}})),h=(u-s)/(c+(c-1)*l),h=Math.max(h,0);var d,p=0;z(i,(function(t,e){t.width||(t.width=h),d=t,p+=t.width*(1+l)})),d&&(p-=d.width*l);var f=-p/2;z(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){var n=vb(t,e),i=mb(n);z(n,(function(t){var e=t.getData(),n=t.coordinateSystem.getBaseAxis(),r=gb(t),o=i[yb(n)][r],a=o.offset,s=o.width;e.setLayout({bandWidth:o.bandWidth,offset:a,size:s})}))}function bb(t){return{seriesType:t,plan:$y(),reset:function(t){if(wb(t)){var e=t.getData(),n=t.coordinateSystem,i=n.getBaseAxis(),r=n.getOtherAxis(i),o=e.getDimensionIndex(e.mapDimension(r.dim)),a=e.getDimensionIndex(e.mapDimension(i.dim)),s=t.get("showBackground",!0),l=e.mapDimension(r.dim),u=e.getCalculationInfo("stackResultDimension"),c=Y_(e,l)&&!!e.getCalculationInfo("stackedOnSeries"),h=r.isHorizontal(),d=function(t,e){var n=e.model.get("startValue");n||(n=0);return e.toGlobalCoord(e.dataToCoord("log"===e.type?n>0?n:1:n))}(0,r),p=Sb(t),f=t.get("barMinHeight")||0,g=u&&e.getDimensionIndex(u),y=e.getLayout("size"),v=e.getLayout("offset");return{progress:function(t,e){for(var i,r=t.count,l=p&&pb(3*r),u=p&&s&&pb(3*r),m=p&&pb(r),x=n.master.getRect(),_=h?x.width:x.height,b=e.getStore(),w=0;null!=(i=t.next());){var S=b.get(c?g:o,i),M=b.get(a,i),I=d,T=void 0;c&&(T=+S-b.get(o,i));var C=void 0,D=void 0,A=void 0,k=void 0;if(h){var L=n.dataToPoint([S,M]);if(c)I=n.dataToPoint([T,M])[0];C=I,D=L[1]+v,A=L[0]-I,k=y,Math.abs(A)a){0;break}if(p[s](p[r]()+t),d=p.getTime(),o){var f=o.calcNiceTickMultiple(d,h);f>0&&(p[s](p[r]()+f*t),d=p.getTime())}}c.push({value:d,notAdd:!0})}function c(t,r,o){var a=[],s=!r.length;if(!Tb(qd(t),i[0],i[1],n)){s&&(r=[{value:Pb(i[0],t,n)},{value:i[1]}]);for(var l=0;l=i[0]&&c<=i[1]&&u(d,c,h,p,f,g,a),"year"===t&&o.length>1&&0===l&&o.unshift({value:o[0].value-d})}}for(l=0;l=i[0]&&x<=i[1]&&p++)}var _=r/e;if(p>1.5*_&&f>_/1.5)break;if(h.push(v),p>_||t===s[g])break}d=[]}}var b=V(E(h,(function(t){return V(t,(function(t){return t.value>=i[0]&&t.value<=i[1]&&!t.notAdd}))})),(function(t){return t.length>0})),w=[],S=b.length-1;for(g=0;gn&&(this._approxInterval=n);var r=Ib.length,o=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 Db(t){return(t/=2592e6)>6?6:t>3?3:t>2?2:1}function Ab(t){return(t/=Bd)>12?12:t>6?6:t>3.5?4:t>2?2:1}function kb(t,e){return(t/=e?Ed:zd)>30?30:t>20?20:t>15?15:t>10?10:t>5?5:t>2?2:1}function Lb(t){return Po(t,!0)}function Pb(t,e,n){var i=Math.max(0,P(Yd,e)-1);return Qd(new Date(t),Yd[i],n).getTime()}rb.registerClass(Mb);var Ob=mo,Rb=Math.floor,Nb=Math.ceil,zb=Math.pow,Eb=Math.log,Bb=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="log",e.base=10,e._originalScale=new cb,e}return n(e,t),e.prototype.getTicks=function(e){e=e||{};var n=this._extent.slice(),i=this._originalScale.getExtent(),r=t.prototype.getTicks.call(this,e),o=this.base,a=this._originalScale._innerGetBreaks(),s=Nd();return E(r,(function(t){var e,r=t.value,l=null,u=zb(o,r);if(r===n[0]&&this._fixMin?l=i[0]:r===n[1]&&this._fixMax&&(l=i[1]),s){var c=s.getTicksLogTransformBreak(t,o,a,Vb);e=c.vBreak,null==l&&(l=c.brkRoundingCriterion)}return null!=l&&(u=Vb(u,l)),{value:u,break:e}}),this)},e.prototype._getNonTransBreaks=function(){return this._originalScale._innerGetBreaks()},e.prototype.setExtent=function(e,n){this._originalScale.setExtent(e,n);var i=ib(this.base,[e,n]);t.prototype.setExtent.call(this,i[0],i[1])},e.prototype.getExtent=function(){var e=this.base,n=t.prototype.getExtent.call(this);n[0]=zb(e,n[0]),n[1]=zb(e,n[1]);var i=this._originalScale.getExtent();return this._fixMin&&(n[0]=Vb(n[0],i[0])),this._fixMax&&(n[1]=Vb(n[1],i[1])),n},e.prototype.unionExtentFromData=function(t,e){this._originalScale.unionExtentFromData(t,e);var n=ib(this.base,t.getApproximateExtent(e),!0);this._innerUnionExtent(n)},e.prototype.calcNiceTicks=function(t){t=t||10;var e=this._extent.slice(),n=this._getExtentSpanWithBreaks();if(isFinite(n)&&!(n<=0)){var i=ko(n);for(t/n*i<=.5&&(i*=10);!isNaN(i)&&Math.abs(i)<1&&Math.abs(i)>0;)i*=10;var r=[Ob(Nb(e[0]/i)*i),Ob(Rb(e[1]/i)*i)];this._interval=i,this._intervalPrecision=$_(i),this._niceExtent=r}},e.prototype.calcNiceExtent=function(e){t.prototype.calcNiceExtent.call(this,e),this._fixMin=e.fixMin,this._fixMax=e.fixMax},e.prototype.contain=function(e){return e=Eb(e)/Eb(this.base),t.prototype.contain.call(this,e)},e.prototype.normalize=function(e){return e=Eb(e)/Eb(this.base),t.prototype.normalize.call(this,e)},e.prototype.scale=function(e){return e=t.prototype.scale.call(this,e),zb(this.base,e)},e.prototype.setBreaksFromOption=function(t){var e=Nd();if(e){var n=e.logarithmicParseBreaksFromOption(t,this.base,W(this.parse,this)),i=n.parsedOriginal,r=n.parsedLogged;this._originalScale._innerSetBreak(i),this._innerSetBreak(r)}},e.type="log",e}(cb);function Vb(t,e){return Ob(t,_o(e))}rb.registerClass(Bb);var Gb=function(){function t(t,e,n){this._prepareParams(t,e,n)}return t.prototype._prepareParams=function(t,e,n){n[1]0&&s>0&&!l&&(a=0),a<0&&s<0&&!u&&(s=0));var h=this._determinedMin,d=this._determinedMax;return null!=h&&(a=h,l=!0),null!=d&&(s=d,u=!0),{min:a,max:s,minFixed:l,maxFixed:u,isBlank:c}},t.prototype.modifyDataMinMax=function(t,e){this[Wb[t]]=e},t.prototype.setDeterminedMinMax=function(t,e){var n=Fb[t];this[n]=e},t.prototype.freeze=function(){this.frozen=!0},t}(),Fb={min:"_determinedMin",max:"_determinedMax"},Wb={min:"_dataMin",max:"_dataMax"};function Hb(t,e,n){var i=t.rawExtentInfo;return i||(i=new Gb(t,e,n),t.rawExtentInfo=i,i)}function Ub(t,e){return null==e?null:nt(e)?NaN:t.parse(e)}function Yb(t,e){var n=t.type,i=Hb(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=vb("bar",a),l=!1;if(z(s,(function(t){l=l||t.getBaseAxis()===e.axis})),l){var u=mb(s),c=function(t,e,n,i){var r=n.axis.getExtent(),o=Math.abs(r[1]-r[0]),a=function(t,e,n){if(t&&e){var i=t[yb(e)];return null!=i&&null!=n?i[gb(n)]:i}}(i,n.axis);if(void 0===a)return{min:t,max:e};var s=1/0;z(a,(function(t){s=Math.min(t.offset,s)}));var l=-1/0;z(a,(function(t){l=Math.max(t.offset+t.width,l)})),s=Math.abs(s),l=Math.abs(l);var u=s+l,c=e-t,h=c/(1-(s+l)/o)-c;return e+=h*(l/u),t-=h*(s/u),{min:t,max:e}}(r,o,e,u);r=c.min,o=c.max}}return{extent:[r,o],fixMin:i.minFixed,fixMax:i.maxFixed}}function Xb(t,e){var n=e,i=Yb(t,n),r=i.extent,o=n.get("splitNumber");t instanceof Bb&&(t.base=n.get("logBase"));var a=t.type,s=n.get("interval"),l="interval"===a||"time"===a;t.setBreaksFromOption(ew(n)),t.setExtent(r[0],r[1]),t.calcNiceExtent({splitNumber:o,fixMin:i.fixMin,fixMax:i.fixMax,minInterval:l?n.get("minInterval"):null,maxInterval:l?n.get("maxInterval"):null}),null!=s&&t.setInterval&&t.setInterval(s)}function Zb(t,e){if(e=e||t.get("type"))switch(e){case"category":return new lb({ordinalMeta:t.getOrdinalMeta?t.getOrdinalMeta():t.getCategories(),extent:[1/0,-1/0]});case"time":return new Mb({locale:t.ecModel.getLocaleModel(),useUTC:t.ecModel.get("useUTC")});default:return new(rb.getClass(e)||cb)}}function jb(t){var e=t.getLabelModel().get("formatter");if("time"===t.type){var n=Zd(e);return function(e,i){return t.scale.getFormattedLabel(e,i,n)}}if(X(e))return function(n){var i=t.scale.getLabel(n);return e.replace("{value}",null!=i?i:"")};if(Y(e)){if("category"===t.type)return function(n,i){return e(qb(t,n),n.value-t.scale.getExtent()[0],null)};var i=Nd();return function(n,r){var o=null;return i&&(o=i.makeAxisLabelFormatterParamBreak(o,n.break)),e(qb(t,n),r,o)}}return function(e){return t.scale.getLabel(e)}}function qb(t,e){return"category"===t.type?t.scale.getLabel(e):e.value}function Kb(t){var e=t.get("interval");return null==e?"auto":e}function $b(t){return"category"===t.type&&0===Kb(t.getLabelModel())}function Jb(t,e){var n={};return z(t.mapDimensionsAll(e),(function(e){n[X_(t,e)]=!0})),F(n)}function Qb(t){return"middle"===t||"center"===t}function tw(t){return t.getShallow("show")}function ew(t){var e,n=t.get("breaks",!0);if(null!=n)return Nd()?"x"!==(e=t.axis).dim&&"y"!==e.dim&&"z"!==e.dim&&"single"!==e.dim||"category"===e.type?void 0:n:void 0}var nw=function(){function t(){}return t.prototype.getNeedCrossZero=function(){return!this.option.scale},t.prototype.getCoordSysModel=function(){},t}();var iw={isDimensionStacked:Y_,enableDataStack:U_,getStackedDimension:X_};var rw=Object.freeze({__proto__:null,createList:function(t){return Z_(null,t)},getLayoutRect:Hp,dataStack:iw,createScale:function(t,e){var n=e;e instanceof wd||(n=new wd(e));var i=Zb(n);return i.setExtent(t[0],t[1]),Xb(i,n),i},mixinAxisModelCommonMethods:function(t){R(t,nw)},getECData:zl,createTextStyle:function(t,e){return Qh(t,null,null,"normal"!==(e=e||{}).state)},createDimensions:function(t,e){return V_(t,e).dimensions},createSymbol:hm,enableHoverEmphasis:Iu});function ow(t,e){return Math.abs(t-e)<1e-8}function aw(t,e,n){var i=0,r=t[0];if(!r)return!1;for(var o=1;on&&(t=r,n=a)}if(t)return function(t){for(var e=0,n=0,i=0,r=t.length,o=t[r-1][0],a=t[r-1][1],s=0;s>1^-(1&s),l=l>>1^-(1&l),r=s+=r,o=l+=o,i.push([s/n,l/n])}return i}function vw(t,e){return E(V((t=function(t){if(!t.UTF8Encoding)return t;var e=t,n=e.UTF8Scale;return null==n&&(n=1024),z(e.features,(function(t){var e=t.geometry,i=e.encodeOffsets,r=e.coordinates;if(i)switch(e.type){case"LineString":e.coordinates=yw(r,i,n);break;case"Polygon":case"MultiLineString":gw(r,i,n);break;case"MultiPolygon":z(r,(function(t,e){return gw(t,i[e],n)}))}})),e.UTF8Encoding=!1,e}(t)).features,(function(t){return t.geometry&&t.properties&&t.geometry.coordinates.length>0})),(function(t){var n=t.properties,i=t.geometry,r=[];switch(i.type){case"Polygon":var o=i.coordinates;r.push(new hw(o[0],o.slice(1)));break;case"MultiPolygon":z(i.coordinates,(function(t){t[0]&&r.push(new hw(t[0],t.slice(1)))}));break;case"LineString":r.push(new dw([i.coordinates]));break;case"MultiLineString":r.push(new dw(i.coordinates))}var a=new pw(n[e||"name"],r,n.cp);return a.properties=n,a}))}var mw=Object.freeze({__proto__:null,linearMap:go,round:mo,asc:xo,getPrecision:_o,getPrecisionSafe:bo,getPixelPrecision:wo,getPercentWithPrecision:function(t,e,n){return t[e]&&So(t,n)[e]||0},parsePercent:yo,MAX_SAFE_INTEGER:Io,remRadian:To,isRadianAroundZero:Co,parseDate:Ao,quantity:ko,quantityExponent:Lo,nice:Po,quantile:Oo,reformIntervals:Ro,isNumeric:zo,numericToNumber:No}),xw=Object.freeze({__proto__:null,parse:Ao,format:$d,roundTime:Qd}),_w=Object.freeze({__proto__:null,extendShape:ch,extendPath:dh,makePath:gh,makeImage:yh,mergePath:mh,resizePath:xh,createIcon:Ah,updateProps:th,initProps:eh,getTransform:wh,clipPointsByRect:Ch,clipRectByRect:Dh,registerShape:ph,getShapeClass:fh,Group:to,Image:dl,Text:Sl,Circle:nc,Ellipse:rc,Sector:xc,Ring:bc,Polygon:Mc,Polyline:Tc,Rect:xl,Line:Ac,BezierCurve:Oc,Arc:Nc,IncrementalDisplayable:Kc,CompoundPath:zc,LinearGradient:Bc,RadialGradient:Vc,BoundingRect:He}),bw=Object.freeze({__proto__:null,addCommas:fp,toCamelCase:gp,normalizeCssArray:yp,encodeHTML:oe,formatTpl:_p,getTooltipMarker:bp,formatTime:function(t,e,n){"week"!==t&&"month"!==t&&"quarter"!==t&&"half-year"!==t&&"year"!==t||(t="MM-dd\nyyyy");var i=Ao(e),r=n?"getUTC":"get",o=i[r+"FullYear"](),a=i[r+"Month"]()+1,s=i[r+"Date"](),l=i[r+"Hours"](),u=i[r+"Minutes"](),c=i[r+"Seconds"](),h=i[r+"Milliseconds"]();return t=t.replace("MM",jd(a,2)).replace("M",a).replace("yyyy",o).replace("yy",jd(o%100+"",2)).replace("dd",jd(s,2)).replace("d",s).replace("hh",jd(l,2)).replace("h",l).replace("mm",jd(u,2)).replace("m",u).replace("ss",jd(c,2)).replace("s",c).replace("SSS",jd(h,3))},capitalFirst:function(t){return t?t.charAt(0).toUpperCase()+t.substr(1):t},truncateText:function(t,e,n,i,r){var o={};return Ea(o,t,e,n,i,r),o.text},getTextRect:function(t,e,n,i,r,o,a,s){return new Sl({style:{text:t,font:e,align:n,verticalAlign:i,padding:r,rich:o,overflow:a?"truncate":null,lineHeight:s}}).getBoundingRect()}}),ww=Object.freeze({__proto__:null,map:E,each:z,indexOf:P,inherits:O,reduce:B,filter:V,bind:W,curry:H,isArray:U,isString:X,isObject:q,isFunction:Y,extend:A,defaults:k,clone:T,merge:C}),Sw=sa(),Mw=sa(),Iw=1,Tw=2;function Cw(t){return{out:{noPxChangeTryDetermine:[]},kind:t}}function Dw(t,e){var n=E(e,(function(e){return t.scale.parse(e)}));return"time"===t.type&&n.length>0&&(n.sort(),n.unshift(n[0]),n.push(n[n.length-1])),n}function Aw(t,e){var n=t.getLabelModel().get("customValues");if(n){var i=jb(t),r=t.scale.getExtent();return{labels:E(V(Dw(t,n),(function(t){return t>=r[0]&&t<=r[1]})),(function(e){var n={value:e};return{formattedLabel:i(n),rawLabel:t.scale.getLabel(n),tickValue:e,time:void 0,break:void 0}}))}}return"category"===t.type?function(t,e){var n=t.getLabelModel(),i=Lw(t,n,e);return!n.get("show")||t.scale.isBlank()?{labels:[]}:i}(t,e):function(t){var e=t.scale.getTicks(),n=jb(t);return{labels:E(e,(function(e,i){return{formattedLabel:n(e,i),rawLabel:t.scale.getLabel(e),tickValue:e.value,time:e.time,break:e.break}}))}}(t)}function kw(t,e,n){var i=t.getTickModel().get("customValues");if(i){var r=t.scale.getExtent();return{ticks:V(Dw(t,i),(function(t){return t>=r[0]&&t<=r[1]}))}}return"category"===t.type?function(t,e){var n,i,r=Pw(t),o=Kb(e),a=Nw(r,o);if(a)return a;e.get("show")&&!t.scale.isBlank()||(n=[]);if(Y(o))n=Gw(t,o,!0);else if("auto"===o){var s=Lw(t,t.getLabelModel(),Cw(Tw));i=s.labelCategoryInterval,n=E(s.labels,(function(t){return t.tickValue}))}else n=Vw(t,i=o,!0);return zw(r,o,{ticks:n,tickCategoryInterval:i})}(t,e):{ticks:E(t.scale.getTicks(n),(function(t){return t.value}))}}function Lw(t,e,n){var i,r,o=Ow(t),a=Kb(e),s=n.kind===Iw;if(!s){var l=Nw(o,a);if(l)return l}Y(a)?i=Gw(t,a):(r="auto"===a?function(t,e){if(e.kind===Iw){var n=t.calculateCategoryInterval(e);return e.out.noPxChangeTryDetermine.push((function(){return Mw(t).autoInterval=n,!0})),n}var i=Mw(t).autoInterval;return null!=i?i:Mw(t).autoInterval=t.calculateCategoryInterval(e)}(t,n):a,i=Vw(t,r));var u={labels:i,labelCategoryInterval:r};return s?n.out.noPxChangeTryDetermine.push((function(){return zw(o,a,u),!0})):zw(o,a,u),u}var Pw=Rw("axisTick"),Ow=Rw("axisLabel");function Rw(t){return function(e){return Mw(e)[t]||(Mw(e)[t]={list:[]})}}function Nw(t,e){for(var n=0;ne&&i.axisExtent0===r[0]&&i.axisExtent1===r[1])return o;i.lastTickCount=n,i.lastAutoInterval=e,i.axisExtent0=r[0],i.axisExtent1=r[1]}function Vw(t,e,n){var i=jb(t),r=t.scale,o=r.getExtent(),a=t.getLabelModel(),s=[],l=Math.max((e||0)+1,1),u=o[0],c=r.count();0!==u&&l>1&&c/l>2&&(u=Math.round(Math.ceil(u/l)*l));var h=$b(t),d=a.get("showMinLabel")||h,p=a.get("showMaxLabel")||h;d&&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,time:void 0,break:void 0})}return p&&f-l!==o[1]&&g(o[1]),s}function Gw(t,e,n){var i=t.scale,r=jb(t),o=[];return z(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,time:void 0,break:void 0})})),o}var Fw=[0,1],Ww=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(this.scale.parse(t))},t.prototype.getExtent=function(){return this._extent.slice()},t.prototype.getPixelPrecision=function(t){return wo(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(i.parse(t)),this.onBand&&"ordinal"===i.type&&Hw(n=n.slice(),i.count()),go(t,Fw,n,e)},t.prototype.coordToData=function(t,e){var n=this._extent,i=this.scale;this.onBand&&"ordinal"===i.type&&Hw(n=n.slice(),i.count());var r=go(t,n,Fw,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=E(kw(this,e,{breakTicks:t.breakTicks,pruneByBreak:t.pruneByBreak}).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],e[0].onBand=!0,o=e[1]={coord:s[1],tickValue:e[0].tickValue,onBand:!0};else{var l=e[r-1].tickValue-e[0].tickValue,u=(e[r-1].coord-e[0].coord)/l;z(e,(function(t){t.coord-=u/2,t.onBand=!0}));var c=t.scale.getExtent();a=1+c[1]-e[r-1].tickValue,o={coord:e[r-1].coord+u*a,tickValue:c[1]+1,onBand:!0},e.push(o)}var h=s[0]>s[1];d(e[0].coord,s[0])&&(i?e[0].coord=s[0]:e.shift());i&&d(s[0],e[0].coord)&&e.unshift({coord:s[0],onBand:!0});d(s[1],o.coord)&&(i?o.coord=s[1]:e.pop());i&&d(o.coord,s[1])&&e.push({coord:s[1],onBand:!0});function d(t,e){return t=mo(t),e=mo(e),h?t>e:t0&&t<100||(t=5),E(this.scale.getMinorTicks(t),(function(t){return E(t,(function(t){return{coord:this.dataToCoord(t),tickValue:t}}),this)}),this)},t.prototype.getViewLabels=function(t){return Aw(this,t=t||Cw(Tw)).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(t){return function(t,e){var n=e.kind,i=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),r=jb(t),o=(i.axisRotate-i.labelRotate)/180*Math.PI,a=t.scale,s=a.getExtent(),l=a.count();if(s[1]-s[0]<1)return 0;var u=1;l>40&&(u=Math.max(1,Math.floor(l/40)));for(var c=s[0],h=t.dataToCoord(c+1)-t.dataToCoord(c),d=Math.abs(h*Math.cos(o)),p=Math.abs(h*Math.sin(o)),f=0,g=0;c<=s[1];c+=u){var y,v,m=Er(r({value:c}),i.font,"center","top");y=1.3*m.width,v=1.3*m.height,f=Math.max(f,y,7),g=Math.max(g,v,7)}var x=f/d,_=g/p;isNaN(x)&&(x=1/0),isNaN(_)&&(_=1/0);var b=Math.max(0,Math.floor(Math.min(x,_)));if(n===Iw)return e.out.noPxChangeTryDetermine.push(W(Ew,null,t,b,l)),b;var w=Bw(t,b,l);return null!=w?w:b}(this,t=t||Cw(Tw))},t}();function Hw(t,e){var n=(t[1]-t[0])/e/2;t[0]+=n,t[1]-=n}var Uw=2*Math.PI,Yw=Fs.CMD,Xw=["top","right","bottom","left"];function Zw(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 jw(t,e,n,i,r,o,a,s,l){a-=t,s-=e;var u=Math.sqrt(a*a+s*s),c=(a/=u)*n+t,h=(s/=u)*n+e;if(Math.abs(i-r)%Uw<1e-4)return l[0]=c,l[1]=h,u-n;if(o){var d=i;i=Xs(r),r=Xs(d)}else i=Xs(i),r=Xs(r);i>r&&(r+=Uw);var p=Math.atan2(s,a);if(p<0&&(p+=Uw),p>=i&&p<=r||p+Uw>=i&&p+Uw<=r)return l[0]=c,l[1]=h,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),x=(y-a)*(y-a)+(v-s)*(v-s);return m0){e=e/180*Math.PI,tS.fromArray(t[0]),eS.fromArray(t[1]),nS.fromArray(t[2]),Ae.sub(iS,tS,eS),Ae.sub(rS,nS,eS);var n=iS.len(),i=rS.len();if(!(n<.001||i<.001)){iS.scale(1/n),rS.scale(1/i);var r=iS.dot(rS);if(Math.cos(e)1&&Ae.copy(sS,nS),sS.toArray(t[1])}}}}function uS(t,e,n){if(n<=180&&n>0){n=n/180*Math.PI,tS.fromArray(t[0]),eS.fromArray(t[1]),nS.fromArray(t[2]),Ae.sub(iS,eS,tS),Ae.sub(rS,nS,eS);var i=iS.len(),r=rS.len();if(!(i<.001||r<.001))if(iS.scale(1/i),rS.scale(1/r),iS.dot(e)=a)Ae.copy(sS,nS);else{sS.scaleAndAdd(rS,o/Math.tan(Math.PI/2-s));var l=nS.x!==eS.x?(sS.x-eS.x)/(nS.x-eS.x):(sS.y-eS.y)/(nS.y-eS.y);if(isNaN(l))return;l<0?Ae.copy(sS,eS):l>1&&Ae.copy(sS,nS)}sS.toArray(t[1])}}}function cS(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 hS(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=Vt(i[0],i[1]),o=Vt(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=Wt([],i[1],i[0],a/r),l=Wt([],i[1],i[2],a/o),u=Wt([],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 c=1;c0&&r&&b(-h/o,0,o);var g,y,v=t[0],m=t[o-1];function x(){g=v.rect[a]-n,y=i-m.rect[a]-m.rect[s]}function _(t,e,n){if(t<0){var i=Math.min(e,-t);if(i>0){b(i*n,0,o);var r=i+t;r<0&&w(-r*n,1)}else w(-t*n,1)}}function b(e,n,i){0!==e&&(c=!0);for(var r=n;r0)for(l=0;l0;l--){b(-(i[l-1]*h),l,o)}}}function S(t){var e=t<0?-1:1;t=Math.abs(t);for(var n=Math.ceil(t/(o-1)),i=0;i0?b(n,0,i+1):b(-n,o-i-1,o),(t-=n)<=0)return}return x(),g<0&&w(-g,.8),y<0&&w(y,.8),x(),_(g,y,1),_(y,g,-1),x(),g<0&&S(-g),y<0&&S(y),c}function MS(t){var e=[];function n(t){if(!t.ignore){var e=t.ensureState("emphasis");null==e.ignore&&(e.ignore=!1)}t.ignore=!0}t.sort((function(t,e){return(e.suggestIgnore?1:0)-(t.suggestIgnore?1:0)||e.priority-t.priority}));for(var i=0;i=0&&n.attr(p.oldLayoutSelect),P(u,"emphasis")>=0&&n.attr(p.oldLayoutEmphasis)),th(n,s,e,a)}else if(n.attr(s),!ad(n).valueAnimation){var c=rt(n.style.opacity,1);n.style.opacity=0,eh(n,{style:{opacity:c}},e,a)}if(p.oldLayout=s,n.states.select){var h=p.oldLayoutSelect={};PS(h,s,OS),PS(h,n.states.select,OS)}if(n.states.emphasis){var d=p.oldLayoutEmphasis={};PS(d,s,OS),PS(d,n.states.emphasis,OS)}ld(n,a,l,e,e)}if(i&&!i.ignore&&!i.invisible){r=(p=LS(i)).oldLayout;var p,f={points:i.shape.points};r?(i.attr({shape:r}),th(i,{shape:f},e)):(i.setShape(f),i.style.strokePercent=0,eh(i,{style:{strokePercent:1}},e)),p.oldLayout=f}},t}(),NS=sa();var zS=Math.sin,ES=Math.cos,BS=Math.PI,VS=2*Math.PI,GS=180/BS,FS=function(){function t(){}return t.prototype.reset=function(t){this._start=!0,this._d=[],this._str="",this._p=Math.pow(10,t||4)},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=a-o,u=!s,c=Math.abs(l),h=wi(c-VS)||(u?l>=VS:-l>=VS),d=l>0?l%VS:l%VS+VS,p=!1;p=!!h||!wi(c)&&d>=BS==!!u;var f=t+n*ES(o),g=e+i*zS(o);this._start&&this._add("M",f,g);var y=Math.round(r*GS);if(h){var v=1/this._p,m=(u?1:-1)*(VS-v);this._add("A",n,i,y,1,+u,t+n*ES(o+m),e+i*zS(o+m)),v>.01&&this._add("A",n,i,y,0,+u,f,g)}else{var x=t+n*ES(a),_=e+i*zS(a);this._add("A",n,i,y,+p,+u,x,_)}},t.prototype.rect=function(t,e,n,i){this._add("M",t,e),this._add("l",n,0),this._add("l",0,i),this._add("l",-n,0),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){for(var u=[],c=this._p,h=1;h"}(r,o)+("style"!==r?oe(a):a||"")+(i?""+n+E(i,(function(e){return t(e)})).join(n)+n:"")+("")}(t)}function QS(t){return{zrId:t,shadowCache:{},patternCache:{},gradientCache:{},clipPathCache:{},defs:{},cssNodes:{},cssAnims:{},cssStyleCache:{},cssAnimIdx:0,shadowIdx:0,gradientIdx:0,patternIdx:0,clipPathIdx:0}}function tM(t,e,n,i){return $S("svg","root",{width:t,height:e,xmlns:ZS,"xmlns:xlink":jS,version:"1.1",baseProfile:"full",viewBox:!!i&&"0 0 "+t+" "+e},n)}var eM=0;function nM(){return eM++}var iM={cubicIn:"0.32,0,0.67,0",cubicOut:"0.33,1,0.68,1",cubicInOut:"0.65,0,0.35,1",quadraticIn:"0.11,0,0.5,0",quadraticOut:"0.5,1,0.89,1",quadraticInOut:"0.45,0,0.55,1",quarticIn:"0.5,0,0.75,0",quarticOut:"0.25,1,0.5,1",quarticInOut:"0.76,0,0.24,1",quinticIn:"0.64,0,0.78,0",quinticOut:"0.22,1,0.36,1",quinticInOut:"0.83,0,0.17,1",sinusoidalIn:"0.12,0,0.39,0",sinusoidalOut:"0.61,1,0.88,1",sinusoidalInOut:"0.37,0,0.63,1",exponentialIn:"0.7,0,0.84,0",exponentialOut:"0.16,1,0.3,1",exponentialInOut:"0.87,0,0.13,1",circularIn:"0.55,0,1,0.45",circularOut:"0,0.55,0.45,1",circularInOut:"0.85,0,0.15,1"},rM="transform-origin";function oM(t,e,n){var i=A({},t.shape);A(i,e),t.buildPath(n,i);var r=new FS;return r.reset(Pi(t)),n.rebuildPath(r,1),r.generateStr(),r.getStr()}function aM(t,e){var n=e.originX,i=e.originY;(n||i)&&(t[rM]=n+"px "+i+"px")}var sM={fill:"fill",opacity:"opacity",lineWidth:"stroke-width",lineDashOffset:"stroke-dashoffset"};function lM(t,e){var n=e.zrId+"-ani-"+e.cssAnimIdx++;return e.cssAnims[n]=t,n}function uM(t){return X(t)?iM[t]?"cubic-bezier("+iM[t]+")":Wn(t)?t:"":""}function cM(t,e,n,i){var r=t.animators,o=r.length,a=[];if(t instanceof zc){var s=function(t,e,n){var i,r,o=t.shape.paths,a={};if(z(o,(function(t){var e=QS(n.zrId);e.animation=!0,cM(t,{},e,!0);var o=e.cssAnims,s=e.cssNodes,l=F(o),u=l.length;if(u){var c=o[r=l[u-1]];for(var h in c){var d=c[h];a[h]=a[h]||{d:""},a[h].d+=d.d||""}for(var p in s){var f=s[p].animation;f.indexOf(r)>=0&&(i=f)}}})),i){e.d=!1;var s=lM(a,n);return i.replace(r,s)}}(t,e,n);if(s)a.push(s);else if(!o)return}else if(!o)return;for(var l={},u=0;u0})).length)return lM(c,n)+" "+r[0]+" both"}for(var y in l){(s=g(l[y]))&&a.push(s)}if(a.length){var v=n.zrId+"-cls-"+nM();n.cssNodes["."+v]={animation:a.join(",")},e.class=v}}function hM(t,e,n,i){var r=JSON.stringify(t),o=n.cssStyleCache[r];o||(o=n.zrId+"-cls-"+nM(),n.cssStyleCache[r]=o,n.cssNodes["."+o+(i?":hover":"")]=t),e.class=e.class?e.class+" "+o:o}var dM=Math.round;function pM(t){return t&&X(t.src)}function fM(t){return t&&Y(t.toDataURL)}function gM(t,e,n,i){XS((function(r,o){var a="fill"===r||"stroke"===r;a&&ki(o)?TM(e,t,r,i):a&&Ci(o)?CM(n,t,r,i):t[r]=o,a&&i.ssr&&"none"===o&&(t["pointer-events"]="visible")}),e,n,!1),function(t,e,n){var i=t.style;if(function(t){return t&&(t.shadowBlur||t.shadowOffsetX||t.shadowOffsetY)}(i)){var r=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(",")}(t),o=n.shadowCache,a=o[r];if(!a){var s=t.getGlobalScale(),l=s[0],u=s[1];if(!l||!u)return;var c=i.shadowOffsetX||0,h=i.shadowOffsetY||0,d=i.shadowBlur,p=_i(i.shadowColor),f=p.opacity,g=p.color,y=d/2/l+" "+d/2/u;a=n.zrId+"-s"+n.shadowIdx++,n.defs[a]=$S("filter",a,{id:a,x:"-100%",y:"-100%",width:"300%",height:"300%"},[$S("feDropShadow","",{dx:c/l,dy:h/u,stdDeviation:y,"flood-color":g,"flood-opacity":f})]),o[r]=a}e.filter=Li(a)}}(n,t,i)}function yM(t,e){var n=so(e);n&&(n.each((function(e,n){null!=e&&(t[(qS+n).toLowerCase()]=e+"")})),e.isSilent()&&(t[qS+"silent"]="true"))}function vM(t){return wi(t[0]-1)&&wi(t[1])&&wi(t[2])&&wi(t[3]-1)}function mM(t,e,n){if(e&&(!function(t){return wi(t[4])&&wi(t[5])}(e)||!vM(e))){var i=n?10:1e4;t.transform=vM(e)?"translate("+dM(e[4]*i)/i+" "+dM(e[5]*i)/i+")":function(t){return"matrix("+Si(t[0])+","+Si(t[1])+","+Si(t[2])+","+Si(t[3])+","+Mi(t[4])+","+Mi(t[5])+")"}(e)}}function xM(t,e,n){for(var i=t.points,r=[],o=0;o=0&&a||o;s&&(r=vi(s))}var l=i.lineWidth;l&&(l/=!i.strokeNoScale&&t.transform?t.transform[0]:1);var u={cursor:"pointer"};r&&(u.fill=r),i.stroke&&(u.stroke=i.stroke),l&&(u["stroke-width"]=l),hM(u,e,n,!0)}}(t,o,e),$S(s,t.id+"",o)}function IM(t,e){return t instanceof sl?MM(t,e):t instanceof dl?function(t,e){var n=t.style,i=n.image;if(i&&!X(i)&&(pM(i)?i=i.src:fM(i)&&(i=i.toDataURL())),i){var r=n.x||0,o=n.y||0,a={href:i,width:n.width,height:n.height};return r&&(a.x=r),o&&(a.y=o),mM(a,t.transform),gM(a,n,t,e),yM(a,t),e.animation&&cM(t,a,e),$S("image",t.id+"",a)}}(t,e):t instanceof ul?function(t,e){var n=t.style,i=n.text;if(null!=i&&(i+=""),i&&!isNaN(n.x)&&!isNaN(n.y)){var r=n.font||a,s=n.x||0,l=function(t,e,n){return"top"===n?t+=e/2:"bottom"===n&&(t-=e/2),t}(n.y||0,Gr(r),n.textBaseline),u={"dominant-baseline":"central","text-anchor":Ii[n.textAlign]||n.textAlign};if(Al(n)){var c="",h=n.fontStyle,d=Cl(n.fontSize);if(!parseFloat(d))return;var p=n.fontFamily||o,f=n.fontWeight;c+="font-size:"+d+";font-family:"+p+";",h&&"normal"!==h&&(c+="font-style:"+h+";"),f&&"normal"!==f&&(c+="font-weight:"+f+";"),u.style=c}else u.style="font: "+r;return i.match(/\s/)&&(u["xml:space"]="preserve"),s&&(u.x=s),l&&(u.y=l),mM(u,t.transform),gM(u,n,t,e),yM(u,t),e.animation&&cM(t,u,e),$S("text",t.id+"",u,void 0,i)}}(t,e):void 0}function TM(t,e,n,i){var r,o=t[n],a={gradientUnits:o.global?"userSpaceOnUse":"objectBoundingBox"};if(Di(o))r="linearGradient",a.x1=o.x,a.y1=o.y,a.x2=o.x2,a.y2=o.y2;else{if(!Ai(o))return void 0;r="radialGradient",a.cx=rt(o.x,.5),a.cy=rt(o.y,.5),a.r=rt(o.r,.5)}for(var s=o.colorStops,l=[],u=0,c=s.length;ul?WM(t,null==n[h+1]?null:n[h+1].elm,n,s,h):HM(t,e,a,l))}(n,i,r):BM(r)?(BM(t.text)&&NM(n,""),WM(n,null,r,0,r.length-1)):BM(i)?HM(n,i,0,i.length-1):BM(t.text)&&NM(n,""):t.text!==e.text&&(BM(i)&&HM(n,i,0,i.length-1),NM(n,e.text)))}var XM=0,ZM=function(){function t(t,e,n){if(this.type="svg",this.refreshHover=jM("refreshHover"),this.configLayer=jM("configLayer"),this.storage=e,this._opts=n=A({},n),this.root=t,this._id="zr"+XM++,this._oldVNode=tM(n.width,n.height),t&&!n.ssr){var i=this._viewport=document.createElement("div");i.style.cssText="position:relative;overflow:hidden";var r=this._svgDom=this._oldVNode.elm=KS("svg");UM(null,this._oldVNode),i.appendChild(r),t.appendChild(i)}this.resize(n.width,n.height)}return t.prototype.getType=function(){return this.type},t.prototype.getViewportRoot=function(){return this._viewport},t.prototype.getViewportRootOffset=function(){var t=this.getViewportRoot();if(t)return{offsetLeft:t.offsetLeft||0,offsetTop:t.offsetTop||0}},t.prototype.getSvgDom=function(){return this._svgDom},t.prototype.refresh=function(){if(this.root){var t=this.renderToVNode({willUpdate:!0});t.attrs.style="position:absolute;left:0;top:0;user-select:none",function(t,e){if(GM(t,e))YM(t,e);else{var n=t.elm,i=OM(n);FM(e),null!==i&&(kM(i,e.elm,RM(n)),HM(i,[t],0,0))}}(this._oldVNode,t),this._oldVNode=t}},t.prototype.renderOneToVNode=function(t){return IM(t,QS(this._id))},t.prototype.renderToVNode=function(t){t=t||{};var e=this.storage.getDisplayList(!0),n=this._width,i=this._height,r=QS(this._id);r.animation=t.animation,r.willUpdate=t.willUpdate,r.compress=t.compress,r.emphasis=t.emphasis,r.ssr=this._opts.ssr;var o=[],a=this._bgVNode=function(t,e,n,i){var r;if(n&&"none"!==n)if(r=$S("rect","bg",{width:t,height:e,x:"0",y:"0"}),ki(n))TM({fill:n},r.attrs,"fill",i);else if(Ci(n))CM({style:{fill:n},dirty:bt,getBoundingRect:function(){return{width:t,height:e}}},r.attrs,"fill",i);else{var o=_i(n),a=o.color,s=o.opacity;r.attrs.fill=a,s<1&&(r.attrs["fill-opacity"]=s)}return r}(n,i,this._backgroundColor,r);a&&o.push(a);var s=t.compress?null:this._mainVNode=$S("g","main",{},[]);this._paintList(e,r,s?s.children:o),s&&o.push(s);var l=E(F(r.defs),(function(t){return r.defs[t]}));if(l.length&&o.push($S("defs","defs",{},l)),t.animation){var u=function(t,e,n){var i=(n=n||{}).newline?"\n":"",r=" {"+i,o=i+"}",a=E(F(t),(function(e){return e+r+E(F(t[e]),(function(n){return n+":"+t[e][n]+";"})).join(i)+o})).join(i),s=E(F(e),(function(t){return"@keyframes "+t+r+E(F(e[t]),(function(n){return n+r+E(F(e[t][n]),(function(i){var r=e[t][n][i];return"d"===i&&(r='path("'+r+'")'),i+":"+r+";"})).join(i)+o})).join(i)+o})).join(i);return a||s?[""].join(i):""}(r.cssNodes,r.cssAnims,{newline:!0});if(u){var c=$S("style","stl",{},[],u);o.push(c)}}return tM(n,i,o,t.useViewBox)},t.prototype.renderToString=function(t){return t=t||{},JS(this.renderToVNode({animation:rt(t.cssAnimation,!0),emphasis:rt(t.cssEmphasis,!0),willUpdate:!1,compress:!0,useViewBox:rt(t.useViewBox,!0)}),{newline:!0})},t.prototype.setBackgroundColor=function(t){this._backgroundColor=t},t.prototype.getSvgRoot=function(){return this._mainVNode&&this._mainVNode.elm},t.prototype._paintList=function(t,e,n){for(var i,r,o=t.length,a=[],s=0,l=0,u=0;u=0&&(!h||!r||h[f]!==r[f]);f--);for(var g=p-1;g>f;g--)i=a[--s-1];for(var y=f+1;y=a)}}for(var c=this.__startIndex;c15)break}n.prevElClipPaths&&u.restore()};if(d)if(0===d.length)s=l.__endIndex;else for(var _=p.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||(e.painter=this)}},t.prototype.eachLayer=function(t,e){for(var n=this._zlevelList,i=0;i0?QM:0),this._needsManuallyCompositing),u.__builtin__||I("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,z(this._layers,(function(t){t.setUnpainted()}))},t.prototype.configLayer=function(t,e){if(e){var n=this._layerConfig;n[t]?C(n[t],e,!0):n[t]=e;for(var i=0;i-1&&(s.style.stroke=s.style.fill,s.style.fill=tf.color.neutral00,s.style.lineWidth=2),e},e.type="series.line",e.dependencies=["grid","polar"],e.defaultOption={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},step:!1,smooth:!1,smoothMonotone:null,symbol:"emptyCircle",symbolSize:6,symbolRotate:null,showSymbol:!0,showAllSymbol:"auto",connectNulls:!1,sampling:"none",animationEasing:"linear",progressive:0,hoverLayerThreshold:1/0,universalTransition:{divideShape:"clone"},triggerLineEvent:!1},e}(Wy);function nI(t,e){var n=t.mapDimensionsAll("defaultedLabel"),i=n.length;if(1===i){var r=Vg(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 rI=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,o){this.removeAll();var a=hm(t,-1,-1,2,2,null,o);a.attr({z2:rt(r,100),culling:!0,scaleX:i[0]/2,scaleY:i[1]/2}),a.drift=oI,this._symbolType=t,this.add(a)},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(){du(this.childAt(0))},e.prototype.downplay=function(){pu(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,e){var n=this.childAt(0);n.draggable=t,n.cursor=!e&&t?"move":n.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=e.getSymbolZ2(t,n),u=o!==this._symbolType,c=r&&r.disableAnimation;if(u){var h=t.getItemVisual(n,"symbolKeepAspect");this._createSymbol(o,t,n,s,l,h)}else{(p=this.childAt(0)).silent=!1;var d={scaleX:s[0]/2,scaleY:s[1]/2};c?p.attr(d):th(p,d,a,n),ah(p)}if(this._updateCommon(t,n,s,i,r),u){var p=this.childAt(0);if(!c){d={scaleX:this._sizeX,scaleY:this._sizeY,style:{opacity:p.style.opacity}};p.scaleX=p.scaleY=0,p.style.opacity=0,eh(p,d,a,n)}}c&&this.childAt(0).stopAnimation("leave")},e.prototype._updateCommon=function(t,e,n,i,r){var o,a,s,l,u,c,h,d,p,f=this.childAt(0),g=t.hostModel;if(i&&(o=i.emphasisItemStyle,a=i.blurItemStyle,s=i.selectItemStyle,l=i.focus,u=i.blurScope,h=i.labelStatesModels,d=i.hoverScale,p=i.cursorStyle,c=i.emphasisDisabled),!i||t.hasItemOption){var y=i&&i.itemModel?i.itemModel:t.getItemModel(e),v=y.getModel("emphasis");o=v.getModel("itemStyle").getItemStyle(),s=y.getModel(["select","itemStyle"]).getItemStyle(),a=y.getModel(["blur","itemStyle"]).getItemStyle(),l=v.get("focus"),u=v.get("blurScope"),c=v.get("disabled"),h=Jh(y),d=v.getShallow("scale"),p=y.getShallow("cursor")}var m=t.getItemVisual(e,"symbolRotate");f.attr("rotation",(m||0)*Math.PI/180||0);var x=pm(t.getItemVisual(e,"symbolOffset"),n);x&&(f.x=x[0],f.y=x[1]),p&&f.attr("cursor",p);var _=t.getItemVisual(e,"style"),b=_.fill;if(f instanceof dl){var w=f.style;f.useStyle(A({image:w.image,x:w.x,y:w.y,width:w.width,height:w.height},_))}else f.__isEmptyBrush?f.useStyle(A({},_)):f.useStyle(_),f.style.decal=null,f.setColor(b,r&&r.symbolInnerColor),f.style.strokeNoScale=!0;var S=t.getItemVisual(e,"liftZ"),M=this._z2;null!=S?null==M&&(this._z2=f.z2,f.z2+=S):null!=M&&(f.z2=M,this._z2=null);var I=r&&r.useNameLabel;$h(f,h,{labelFetcher:g,labelDataIndex:e,defaultText:function(e){return I?t.getName(e):nI(t,e)},inheritColor:b,defaultOpacity:_.opacity}),this._sizeX=n[0]/2,this._sizeY=n[1]/2;var T=f.ensureState("emphasis");T.style=o,f.ensureState("select").style=s,f.ensureState("blur").style=a;var C=null==d||!0===d?Math.max(1.1,3/this._sizeY):isFinite(d)&&d>0?+d:1;T.scaleX=this._sizeX*C,T.scaleY=this._sizeY*C,this.setSymbolScale(1),Tu(this,l,u,c)},e.prototype.setSymbolScale=function(t){this.scaleX=this.scaleY=t},e.prototype.fadeOut=function(t,e,n){var i=this.childAt(0),r=zl(this).dataIndex,o=n&&n.animation;if(this.silent=i.silent=!0,n&&n.fadeLabel){var a=i.getTextContent();a&&ih(a,{style:{opacity:0}},e,{dataIndex:r,removeOpt:o,cb:function(){i.removeTextContent()}})}else i.removeTextContent();ih(i,{style:{opacity:0},scaleX:0,scaleY:0},e,{dataIndex:r,cb:t,removeOpt:o})},e.getSymbolSize=function(t,e){return dm(t.getItemVisual(e,"symbolSize"))},e.getSymbolZ2=function(t,e){return t.getItemVisual(e,"z2")},e}(to);function oI(t,e){this.parent.drift(t,e)}function aI(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 sI(t){return null==t||q(t)||(t={isIgnore:t}),t||{}}function lI(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"),emphasisDisabled:n.get("disabled"),hoverScale:n.get("scale"),labelStatesModels:Jh(e),cursorStyle:e.get("cursor")}}var uI=function(){function t(t){this.group=new to,this._SymbolCtor=t||rI}return t.prototype.updateData=function(t,e){this._progressiveEls=null,e=sI(e);var n=this.group,i=t.hostModel,r=this._data,o=this._SymbolCtor,a=e.disableAnimation,s=lI(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(aI(t,r,i,e)){var a=new o(t,i,s,l);a.setPosition(r),t.setItemGraphicEl(i,a),n.add(a)}})).update((function(c,h){var d=r.getItemGraphicEl(h),p=u(c);if(aI(t,p,c,e)){var f=t.getItemVisual(c,"symbol")||"circle",g=d&&d.getSymbolType&&d.getSymbolType();if(!d||g&&g!==f)n.remove(d),(d=new o(t,c,s,l)).setPosition(p);else{d.updateData(t,c,s,l);var y={x:p[0],y:p[1]};a?d.attr(y):th(d,y,i)}n.add(d),t.setItemGraphicEl(c,d)}else n.remove(d)})).remove((function(t){var e=r.getItemGraphicEl(t);e&&e.fadeOut((function(){n.remove(e)}),i)})).execute(),this._getSymbolPoint=u,this._data=t},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=lI(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)}this._progressiveEls=[],n=sI(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),c="x"===s||"radius"===s?1:0,h=E(t.dimensions,(function(t){return e.mapDimension(t)})),d=!1,p=e.getCalculationInfo("stackResultDimension");return Y_(e,h[0])&&(d=!0,h[0]=p),Y_(e,h[1])&&(d=!0,h[1]=p),{dataDimsForPoint:h,valueStart:o,valueAxisDim:s,baseAxisDim:a,stacked:!!d,valueDim:l,baseDim:u,baseDataOffset:c,stackedOverDimension:e.getCalculationInfo("stackedOverDimension")}}function hI(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 dI=Math.min,pI=Math.max;function fI(t,e){return isNaN(t)||isNaN(e)}function gI(t,e,n,i,r,o,a,s,l){for(var u,c,h,d,p,f,g=n,y=0;y=r||g<0)break;if(fI(v,m)){if(l){g+=o;continue}break}if(g===n)t[o>0?"moveTo":"lineTo"](v,m),h=v,d=m;else{var x=v-u,_=m-c;if(x*x+_*_<.5){g+=o;continue}if(a>0){for(var b=g+o,w=e[2*b],S=e[2*b+1];w===v&&S===m&&y=i||fI(w,S))p=v,f=m;else{T=w-u,C=S-c;var k=v-u,L=w-v,P=m-c,O=S-m,R=void 0,N=void 0;if("x"===s){var z=T>0?1:-1;p=v-z*(R=Math.abs(k))*a,f=m,D=v+z*(N=Math.abs(L))*a,A=m}else if("y"===s){var E=C>0?1:-1;p=v,f=m-E*(R=Math.abs(P))*a,D=v,A=m+E*(N=Math.abs(O))*a}else R=Math.sqrt(k*k+P*P),p=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=dI(D=v+T*a*I,pI(w,v)),A=dI(A,pI(S,m)),D=pI(D,dI(w,v)),f=m-(C=(A=pI(A,dI(S,m)))-m)*R/N,p=dI(p=v-(T=D-v)*R/N,pI(u,v)),f=dI(f,pI(c,m)),D=v+(T=v-(p=pI(p,dI(u,v))))*N/R,A=m+(C=m-(f=pI(f,dI(c,m))))*N/R}t.bezierCurveTo(h,d,p,f,v,m),h=D,d=A}else t.lineTo(v,m)}u=v,c=m,g+=o}return y}var yI=function(){this.smooth=0,this.smoothConstraint=!0},vI=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:tf.color.neutral99,fill:null}},e.prototype.getDefaultShape=function(){return new yI},e.prototype.buildPath=function(t,e){var n=e.points,i=0,r=n.length/2;if(e.connectNulls){for(;r>0&&fI(n[2*r-2],n[2*r-1]);r--);for(;i=0){var y=a?(c-i)*g+i:(u-n)*g+n;return a?[t,y]:[y,t]}n=u,i=c;break;case o.C:u=r[l++],c=r[l++],h=r[l++],d=r[l++],p=r[l++],f=r[l++];var v=a?kn(n,u,h,p,t,s):kn(i,c,d,f,t,s);if(v>0)for(var m=0;m=0){y=a?Dn(i,c,d,f,x):Dn(n,u,h,p,x);return a?[t,y]:[y,t]}}n=p,i=f}}},e}(sl),mI=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e}(yI),xI=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 mI},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&&fI(n[2*o-2],n[2*o-1]);o--);for(;r=0;a--){var s=t.getDimensionInfo(i[a].dimension);if("x"===(r=s&&s.coordDim)||"y"===r){o=i[a];break}}if(o){var l=e.getAxis(r),u=E(o.stops,(function(t){return{coord:l.toGlobalCoord(l.dataToCoord(t.value)),color:t.color}})),c=u.length,h=o.outerColors.slice();c&&u[0].coord>u[c-1].coord&&(u.reverse(),h.reverse());var d=function(t,e){var n,i,r=[],o=t.length;function a(t,e,n){var i=t.coord;return{coord:n,color:ci((n-i)/(e.coord-i),[t.color,e.color])}}for(var s=0;se){i?r.push(a(i,l,e)):n&&r.push(a(n,l,0),a(n,l,e));break}n&&(r.push(a(n,l,0)),n=null),r.push(l),i=l}}return r}(u,"x"===r?n.getWidth():n.getHeight()),p=d.length;if(!p&&c)return u[0].coord<0?h[1]?h[1]:u[c-1].color:h[0]?h[0]:u[0].color;var f=d[0].coord-10,g=d[p-1].coord+10,y=g-f;if(y<.001)return"transparent";z(d,(function(t){t.offset=(t.coord-f)/y})),d.push({offset:p?d[p-1].offset:.5,color:h[1]||"transparent"}),d.unshift({offset:p?d[0].offset:.5,color:h[0]||"transparent"});var v=new Bc(0,0,0,0,d,!0);return v[r]=f,v[r+"2"]=g,v}}}function kI(t,e,n){var i=t.get("showAllSymbol"),r="auto"===i;if(!i||r){var o=n.getAxesByScale("ordinal")[0];if(o&&(!r||!function(t,e){var n=t.getExtent(),i=Math.abs(n[1]-n[0])/t.scale.count();isNaN(i)&&(i=0);for(var r=e.count(),o=Math.max(1,Math.round(r/5)),a=0;ai)return!1;return!0}(o,e))){var a=e.mapDimension(o.dim),s={};return z(o.getViewLabels(),(function(t){var e=o.scale.getRawOrdinalNumber(t.tickValue);s[e]=1})),function(t){return!s.hasOwnProperty(e.get(a,t))}}}}function LI(t,e){return[t[2*e],t[2*e+1]]}function PI(t){if(t.get(["endLabel","show"]))return!0;for(var e=0;e0&&"bolder"===t.get(["emphasis","lineStyle","width"]))&&(d.getState("emphasis").style.lineWidth=+d.style.lineWidth+1);zl(d).seriesIndex=t.seriesIndex,Tu(d,A,L,P);var O=CI(t.get("smooth")),R=t.get("smoothMonotone");if(d.setShape({smooth:O,smoothMonotone:R,connectNulls:b}),p){var N=o.getCalculationInfo("stackedOnSeries"),z=0;p.useStyle(k(s.getAreaStyle(),{fill:T,opacity:.7,lineJoin:"bevel",decal:o.getVisual("style").decal})),N&&(z=CI(N.get("smooth"))),p.setShape({smooth:O,stackedOnSmooth:z,smoothMonotone:R,connectNulls:b}),ku(p,t,"areaStyle"),zl(p).seriesIndex=t.seriesIndex,Tu(p,A,L,P)}var E=this._changePolyState;o.eachItemGraphicEl((function(t){t&&(t.onHoverStateChange=E)})),this._polyline.onHoverStateChange=E,this._data=o,this._coordSys=i,this._stackedOnPoints=x,this._points=l,this._step=I,this._valueOrigin=v,t.get("triggerLineEvent")&&(this.packEventData(t,d),p&&this.packEventData(t,p))},e.prototype.packEventData=function(t,e){zl(e).eventData={componentType:"series",componentSubType:"line",componentIndex:t.componentIndex,seriesIndex:t.seriesIndex,seriesName:t.name,seriesType:"line"}},e.prototype.highlight=function(t,e,n,i){var r=t.getData(),o=aa(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 c=t.get("zlevel")||0,h=t.get("z")||0;(s=new rI(r,o)).x=l,s.y=u,s.setZ(c,h);var d=s.getSymbolPath().getTextContent();d&&(d.zlevel=c,d.z=h,d.z2=this._polyline.z2+1),s.__temp=!0,r.setItemGraphicEl(o,s),s.stopSymbolAnimation(!0),this.group.add(s)}s.highlight()}else tv.prototype.highlight.call(this,t,e,n,i)},e.prototype.downplay=function(t,e,n,i){var r=t.getData(),o=aa(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 tv.prototype.downplay.call(this,t,e,n,i)},e.prototype._changePolyState=function(t){var e=this._polygon;su(this._polyline,t),e&&su(e,t)},e.prototype._newPolyline=function(t){var e=this._polyline;return e&&this._lineGroup.remove(e),e=new vI({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 xI({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");Y(l)&&(l=l(null));var u=s.get("animationDelay")||0,c=Y(u)?u(null):u;t.eachItemGraphicEl((function(t,o){var s=t;if(s){var h=[t.x,t.y],d=void 0,p=void 0,f=void 0;if(n)if(r){var g=n,y=e.pointToCoord(h);i?(d=g.startAngle,p=g.endAngle,f=-y[1]/180*Math.PI):(d=g.r0,p=g.r,f=y[0])}else{var v=n;i?(d=v.x,p=v.x+v.width,f=t.x):(d=v.y+v.height,p=v.y,f=t.y)}var m=p===d?0:(f-d)/(p-d);a&&(m=1-m);var x=Y(u)?u(o):l*m+c,_=s.getSymbolPath(),b=_.getTextContent();s.attr({scaleX:0,scaleY:0}),s.animateTo({scaleX:1,scaleY:1},{duration:200,setToFinal:!0,delay:x}),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(PI(t)){var r=t.getData(),o=this._polyline,a=r.getLayout("points");if(!a)return o.removeTextContent(),void(this._endLabel=null);var s=this._endLabel;s||((s=this._endLabel=new Sl({z2:200})).ignoreClip=!0,o.setTextContent(this._endLabel),o.disableLabelAnimation=!0);var l=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}(a);l>=0&&($h(o,Jh(t,"endLabel"),{inheritColor:n,labelFetcher:t,labelDataIndex:l,defaultText:function(t,e,n){return null!=n?iI(r,n):nI(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"),c=n.hostModel,h=c.get("connectNulls"),d=o.get("precision"),p=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,x=(g?p:0)*(y?-1:1),_=(g?0:-p)*(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&&!h){var T=LI(u,S[0]);s.attr({x:T[0]+x,y:T[1]+_}),r&&(I=c.getRawValue(S[0]))}else{(T=l.getPointOn(m,b))&&s.attr({x:T[0]+x,y:T[1]+_});var C=c.getRawValue(S[0]),D=c.getRawValue(S[1]);r&&(I=ya(n,d,C,D,w.t))}i.lastFrameIndex=S[0]}else{var A=1===t||i.lastFrameIndex>0?S[0]:0;T=LI(u,A);r&&(I=c.getRawValue(A)),s.attr({x:T[0]+x,y:T[1]+_})}if(r){var k=ad(s);"function"==typeof k.setLabelText&&k.setLabelText(I)}}},e.prototype._doUpdateAnimation=function(t,e,n,i,r,o,a){var s=this._polyline,l=this._polygon,u=t.hostModel,c=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=[],c=[],h=[],d=[],p=[],f=[],g=[],y=cI(r,e,a),v=t.getLayout("points")||[],m=e.getLayout("points")||[],x=0;x3e3||l&&TI(d,f)>3e3)return s.stopAnimation(),s.setShape({points:p}),void(l&&(l.stopAnimation(),l.setShape({points:p,stackedOnPoints:f})));s.shape.__points=c.current,s.shape.points=h;var g={shape:{points:p}};c.current!==h&&(g.shape.__points=c.next),s.stopAnimation(),th(s,g,u),l&&(l.setShape({points:h,stackedOnPoints:d}),l.stopAnimation(),th(l,{shape:{stackedOnPoints:f}},u),s.shape.points!==l.shape.points&&(l.shape.points=s.shape.points));for(var y=[],v=c.status,m=0;me&&(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(),c=n.getDevicePixelRatio(),h=Math.abs(u[1]-u[0])*(c||1),d=Math.round(a/h);if(isFinite(d)&&d>1){"lttb"===r?t.setData(i.lttbDownSample(i.mapDimension(l.dim),1/d)):"minmax"===r&&t.setData(i.minmaxDownSample(i.mapDimension(l.dim),1/d));var p=void 0;X(r)?p=zI[r]:Y(r)&&(p=r),p&&t.setData(i.downSample(i.mapDimension(l.dim),1/d,p,EI))}}}}}var VI=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 Z_(null,this,{useEncodeDefaulter:!0})},e.prototype.getMarkerPosition=function(t,e,n){var i=this.coordinateSystem;if(i&&i.clampData){var r=i.clampData(t),o=i.dataToPoint(r);if(n)z(i.getAxes(),(function(t,n){if("category"===t.type&&null!=e){var i=t.getTicksCoords(),a=t.getTickModel().get("alignWithLabel"),s=r[n],l="x1"===e[n]||"y1"===e[n];if(l&&!a&&(s+=1),i.length<2)return;if(2===i.length)return void(o[n]=t.toGlobalCoord(t.getExtent()[l?1:0]));for(var u=void 0,c=void 0,h=1,d=0;ds){c=(p+u)/2;break}1===d&&(h=f-i[0].tickValue)}null==c&&(u?u&&(c=i[i.length-1].coord):c=i[0].coord),o[n]=t.toGlobalCoord(c)}}));else{var a=this.getData(),s=a.getLayout("offset"),l=a.getLayout("size"),u=i.getBaseAxis().isHorizontal()?0:1;o[u]+=s+l/2}return o}return[NaN,NaN]},e.type="series.__base_bar__",e.defaultOption={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,barMinHeight:0,barMinAngle:0,large:!1,largeThreshold:400,progressive:3e3,progressiveChunkMode:"mod",defaultBarGap:"10%"},e}(Wy);Wy.registerClass(VI);var GI=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 Z_(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=Id(VI.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:tf.color.primary,borderWidth:2}},realtimeSort:!1}),e}(VI),FI=function(){this.cx=0,this.cy=0,this.r0=0,this.r=0,this.startAngle=0,this.endAngle=2*Math.PI,this.clockwise=!0},WI=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 FI},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,c=e.clockwise,h=2*Math.PI,d=c?u-lo)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){oh(e,t,zl(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}(tv),qI={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=XI(e.x,t.x),s=ZI(e.x+e.width,r),l=XI(e.y,t.y),u=ZI(e.y+e.height,o),c=sr?s:a,e.y=h&&l>o?u:l,e.width=c?0:s-a,e.height=h?0:u-l,n<0&&(e.x+=e.width,e.width=-e.width),i<0&&(e.y+=e.height,e.height=-e.height),c||h},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=ZI(e.r,t.r),o=XI(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}},KI={cartesian2d:function(t,e,n,i,r,o,a,s,l){var u=new xl({shape:A({},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=!r&&l?WI:xc,c=new u({shape:i,z2:1});c.name="item";var h,d,p=iT(r);if(c.calculateTextPosition=(h=p,d=({isRoundCap:u===WI}||{}).isRoundCap,function(t,e,n){var i=e.position;if(!i||i instanceof Array)return Wr(t,e,n);var r=h(i),o=null!=e.distance?e.distance:5,a=this.shape,s=a.cx,l=a.cy,u=a.r,c=a.r0,p=(u+c)/2,f=a.startAngle,g=a.endAngle,y=(f+g)/2,v=d?Math.abs(u-c)/2:0,m=Math.cos,x=Math.sin,_=s+u*m(f),b=l+u*x(f),w="left",S="top";switch(r){case"startArc":_=s+(c-o)*m(y),b=l+(c-o)*x(y),w="center",S="top";break;case"insideStartArc":_=s+(c+o)*m(y),b=l+(c+o)*x(y),w="center",S="bottom";break;case"startAngle":_=s+p*m(f)+HI(f,o+v,!1),b=l+p*x(f)+UI(f,o+v,!1),w="right",S="middle";break;case"insideStartAngle":_=s+p*m(f)+HI(f,-o+v,!1),b=l+p*x(f)+UI(f,-o+v,!1),w="left",S="middle";break;case"middle":_=s+p*m(y),b=l+p*x(y),w="center",S="middle";break;case"endArc":_=s+(u+o)*m(y),b=l+(u+o)*x(y),w="center",S="bottom";break;case"insideEndArc":_=s+(u-o)*m(y),b=l+(u-o)*x(y),w="center",S="top";break;case"endAngle":_=s+p*m(g)+HI(g,o+v,!0),b=l+p*x(g)+UI(g,o+v,!0),w="left",S="middle";break;case"insideEndAngle":_=s+p*m(g)+HI(g,-o+v,!0),b=l+p*x(g)+UI(g,-o+v,!0),w="right",S="middle";break;default:return Wr(t,e,n)}return(t=t||{}).x=_,t.y=b,t.align=w,t.verticalAlign=S,t}),o){var f=r?"r":"endAngle",g={};c.shape[f]=r?i.r0:i.startAngle,g[f]=i[f],(s?th:eh)(c,{shape:g},o)}return c}};function $I(t,e,n,i,r,o,a,s){var l,u;o?(u={x:i.x,width:i.width},l={y:i.y,height:i.height}):(u={y:i.y,height:i.height},l={x:i.x,width:i.width}),s||(a?th:eh)(n,{shape:l},e,r,null),(a?th:eh)(n,{shape:u},e?t.baseAxis.model:null,r)}function JI(t,e){for(var n=0;n0?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,clockwise:i.clockwise}}};function iT(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 rT(t,e,n,i,r,o,a,s){var l=e.getItemVisual(n,"style");if(s){if(!o.get("roundCap")){var u=t.shape;A(u,YI(i.getModel("itemStyle"),u,!0)),t.setShape(u)}}else{var c=i.get(["itemStyle","borderRadius"])||0;t.setShape("r",c)}t.useStyle(l);var h=i.getShallow("cursor");h&&t.attr("cursor",h);var d=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",p=Jh(i);$h(t,p,{labelFetcher:o,labelDataIndex:n,defaultText:nI(o.getData(),n),inheritColor:l.fill,defaultOpacity:l.opacity,defaultOutsidePosition:d});var f=t.getTextContent();if(s&&f){var g=i.get(["label","position"]);t.textConfig.inside="middle"===g||null,function(t,e,n,i){if(j(i))t.setTextConfig({rotation:i});else if(U(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 c=1.5*Math.PI-r;"middle"===u&&c>Math.PI/2&&c<1.5*Math.PI&&(c-=Math.PI),t.setTextConfig({rotation:c})}}(t,"outside"===g?d:g,iT(a),i.get(["label","rotate"]))}sd(f,p,o.getRawValue(n),(function(t){return iI(e,t)}));var y=i.getModel(["emphasis"]);Tu(t,y.get("focus"),y.get("blurScope"),y.get("disabled")),ku(t,i),function(t){return null!=t.startAngle&&null!=t.endAngle&&t.startAngle===t.endAngle}(r)&&(t.style.fill="none",t.style.stroke="none",z(t.states,(function(t){t.style&&(t.style.fill=t.style.stroke="none")})))}var oT=function(){},aT=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 oT},e.prototype.buildPath=function(t,e){for(var n=e.points,i=this.baseDimIdx,r=1-this.baseDimIdx,o=[],a=[],s=this.barWidth,l=0;l=s[0]&&e<=s[0]+l[0]&&n>=s[1]&&n<=s[1]+l[1])return a[c]}return-1}(this,t.offsetX,t.offsetY);zl(this).dataIndex=e>=0?e:null}),30,!1);function uT(t,e,n){if(SI(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 cT=2*Math.PI,hT=Math.PI/180;function dT(t,e,n){e.eachSeriesByType(t,(function(t){var e=t.getData(),i=e.mapDimension("value"),r=Wp(t,n),o=r.cx,a=r.cy,s=r.r,l=r.r0,u=r.viewRect,c=-t.get("startAngle")*hT,h=t.get("endAngle"),d=t.get("padAngle")*hT;h="auto"===h?c-cT:-h*hT;var p=t.get("minAngle")*hT+d,f=0;e.each(i,(function(t){!isNaN(t)&&f++}));var g=e.getSum(i),y=Math.PI/(g||f)*2,v=t.get("clockwise"),m=t.get("roseType"),x=t.get("stillShowZeroSum"),_=e.getDataExtent(i);_[0]=0;var b=v?1:-1,w=[c,h],S=b*d/2;Gs(w,!v),c=w[0],h=w[1];var M=pT(t);M.startAngle=c,M.endAngle=h,M.clockwise=v,M.cx=o,M.cy=a,M.r=s,M.r0=l;var I=Math.abs(h-c),T=I,C=0,D=c;if(e.setLayout({viewRect:u,r:s}),e.each(i,(function(t,n){var i;if(isNaN(t))e.setItemLayout(n,{angle:NaN,startAngle:NaN,endAngle:NaN,clockwise:v,cx:o,cy:a,r0:l,r:m?NaN:s});else{(i="area"!==m?0===g&&x?y:t*y:I/f)i?c=u=D+b*i/2:(u=D+S,c=r-S),e.setItemLayout(n,{angle:i,startAngle:u,endAngle:c,clockwise:v,cx:o,cy:a,r0:l,r:m?go(t,_,[l,s]):s}),D=r}})),Tn?a:o,c=Math.abs(l.label.y-n);if(c>=u.maxY){var h=l.label.x-e-l.len2*r,d=i+l.len,f=Math.abs(h)t.unconstrainedWidth?null:d:null;i.setStyle("width",p)}mT(o,i)}}}function mT(t,e){_T.rect=t,mS(_T,e,xT)}var xT={minMarginForce:[null,0,null,0],marginDefault:[1,0,1,0]},_T={};function bT(t){return"center"===t.position}function wT(t){var e,n,i=t.getData(),r=[],o=!1,a=(t.get("minShowLabelAngle")||0)*gT,s=i.getLayout("viewRect"),l=i.getLayout("r"),u=s.width,c=s.x,h=s.y,d=s.height;function p(t){t.ignore=!0}i.each((function(t){var s=i.getItemGraphicEl(t),h=s.shape,f=s.getTextContent(),g=s.getTextGuideLine(),y=i.getItemModel(t),v=y.getModel("label"),m=v.get("position")||y.get(["emphasis","label","position"]),x=v.get("distanceToLabelLine"),_=v.get("alignTo"),b=yo(v.get("edgeDistance"),u),w=v.get("bleedMargin");null==w&&(w=Math.min(u,d)>200?10:2);var S=y.getModel("labelLine"),M=S.get("length");M=yo(M,u);var I=S.get("length2");if(I=yo(I,u),Math.abs(h.endAngle-h.startAngle)0?"right":"left":L>0?"left":"right"}var G=Math.PI,F=0,W=v.get("rotate");if(j(W))F=W*(G/180);else if("center"===m)F=0;else if("radial"===W||!0===W){F=L<0?-k+G:-k}else if("tangential"===W&&"outside"!==m&&"outer"!==m){var H=Math.atan2(L,P);H<0&&(H=2*G+H),P>0&&(H=G+H),F=H-G}if(o=!!F,f.x=T,f.y=C,f.rotation=F,f.setStyle({verticalAlign:"middle"}),O){f.setStyle({align:A});var U=f.states.select;U&&(U.x+=f.x,U.y+=f.y)}else{var Y=new He(0,0,0,0);mT(Y,f),r.push({label:f,labelLine:g,position:m,len:M,len2:I,minTurnAngle:S.get("minTurnAngle"),maxSurfaceAngle:S.get("maxSurfaceAngle"),surfaceNormal:new Ae(L,P),linePoints:D,textAlign:A,labelDistance:x,labelAlignTo:_,edgeDistance:b,bleedMargin:w,rect:Y,unconstrainedWidth:Y.width,labelStyleWidth:f.style.width})}s.setTextConfig({inside:O})}})),!o&&t.get("avoidLabelOverlap")&&function(t,e,n,i,r,o,a,s){for(var l=[],u=[],c=Number.MAX_VALUE,h=-Number.MAX_VALUE,d=0;d0){for(var l=o.getItemLayout(0),u=1;isNaN(l&&l.startAngle)&&u=n.r0}},e.type="pie",e}(tv);function IT(t,e,n){e=U(e)&&{coordDimensions:e}||A({encodeDefine:t.getEncode()},e);var i=t.getSource(),r=V_(i,e).dimensions,o=new B_(r,t);return o.initData(i,n),o}var TT,CT=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}(),DT=sa(),AT=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 CT(W(this.getData,this),W(this.getRawData,this)),this._defaultLabelLine(e)},e.prototype.mergeOption=function(){t.prototype.mergeOption.apply(this,arguments)},e.prototype.getInitialData=function(){return IT(this,{coordDimensions:["value"],encodeDefaulter:H(Mf,this)})},e.prototype.getDataParams=function(e){var n=this.getData(),i=DT(n),r=i.seats;if(!r){var o=[];n.each(n.mapDimension("value"),(function(t){o.push(t)})),r=i.seats=So(o,n.hostModel.get("percentPrecision"))}var a=t.prototype.getDataParams.call(this,e);return a.percent=r[e]||0,a.$vars.push("percent"),a},e.prototype._defaultLabelLine=function(t){Ko(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={z:2,legendHoverLink:!0,colorBy:"data",center:["50%","50%"],radius:[0,"50%"],clockwise:!0,startAngle:90,endAngle:"auto",padAngle:0,minAngle:0,minShowLabelAngle:0,selectedOffset:10,percentPrecision:2,stillShowZeroSum:!0,coordinateSystemUsage:"box",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%",distanceToLabelLine:5},labelLine:{show:!0,length:15,length2:30,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}(Wy);TT={fullType:AT.type,getCoord2:function(t){return t.getShallow("center")}},Ap.set(TT.fullType,{getCoord2:void 0}).getCoord2=TT.getCoord2;var kT=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 Z_(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.prototype.getZLevelKey=function(){return this.getData().count()>this.getProgressiveThreshold()?this.id:""},e.type="series.scatter",e.dependencies=["grid","polar","geo","singleAxis","calendar","matrix"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,symbolSize:10,large:!1,largeThreshold:2e3,itemStyle:{opacity:.8},emphasis:{scale:!0},clip:!0,select:{itemStyle:{borderColor:tf.color.primary}},universalTransition:{divideShape:"clone"}},e}(Wy),LT=function(){},PT=function(t){function e(e){var n=t.call(this,e)||this;return n._off=0,n.hoverDataIdx=-1,n}return n(e,t),e.prototype.getDefaultShape=function(){return new LT},e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.buildPath=function(t,e){var n,i=e.points,r=e.size,o=this.symbolProxy,a=o.shape,s=t.getContext?t.getContext():t,l=s&&r[0]<4,u=this.softClipShape;if(l)this._ctx=s;else{for(this._ctx=null,n=this._off;n=0;s--){var l=2*s,u=i[l]-o/2,c=i[l+1]-a/2;if(t>=u&&e>=c&&t<=u+o&&e<=c+a)return s}return-1},e.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect();return t=n[0],e=n[1],i.contain(t,e)?(this.hoverDataIdx=this.findDataIndex(t,e))>=0:(this.hoverDataIdx=-1,!1)},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var e=this.shape,n=e.points,i=e.size,r=i[0],o=i[1],a=1/0,s=1/0,l=-1/0,u=-1/0,c=0;c=0&&(l.dataIndex=n+(t.startIndex||0))}))},t.prototype.remove=function(){this._clear()},t.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},t}(),RT=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)return{update:!0};var r=NI("").reset(t,e,n);r.progress&&r.progress({start:0,end:i.count(),count:i.count()},i),this._symbolDraw.updateLayout(i)},e.prototype.eachRendered=function(t){this._symbolDraw&&this._symbolDraw.eachRendered(t)},e.prototype._getClipShape=function(t){if(t.get("clip",!0)){var e=t.coordinateSystem;return e&&e.getArea&&e.getArea(.1)}},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 OT:new uI,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}(tv),NT={left:0,right:0,top:0,bottom:0},zT=["25%","25%"],ET=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.mergeDefaultAndTheme=function(e,n){var i=Kp(e.outerBounds);t.prototype.mergeDefaultAndTheme.apply(this,arguments),i&&e.outerBounds&&qp(e.outerBounds,i)},e.prototype.mergeOption=function(e,n){t.prototype.mergeOption.apply(this,arguments),this.option.outerBounds&&e.outerBounds&&qp(this.option.outerBounds,e.outerBounds)},e.type="grid",e.dependencies=["xAxis","yAxis"],e.layoutMode="box",e.defaultOption={show:!1,z:0,left:"15%",top:65,right:"10%",bottom:80,containLabel:!1,outerBoundsMode:"auto",outerBounds:NT,outerBoundsContain:"all",outerBoundsClampWidth:zT[0],outerBoundsClampHeight:zT[1],backgroundColor:tf.color.transparent,borderWidth:1,borderColor:tf.color.neutral30},e}(Qp),BT=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getCoordSysModel=function(){return this.getReferringComponents("grid",ha).models[0]},e.type="cartesian2dAxis",e}(Qp);R(BT,nw);var VT={show:!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:tf.color.axisLine,width:1,type:"solid"},symbol:["none","none"],symbolSize:[10,15],breakLine:!0},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,color:tf.color.axisLabel,textMargin:[0,3]},splitLine:{show:!0,showMinLine:!0,showMaxLine:!0,lineStyle:{color:tf.color.axisSplitLine,width:1,type:"solid"}},splitArea:{show:!1,areaStyle:{color:[tf.color.backgroundTint,tf.color.backgroundTransparent]}},breakArea:{show:!0,itemStyle:{color:tf.color.neutral00,borderColor:tf.color.border,borderWidth:1,borderType:[3,3],opacity:.6},zigzagAmplitude:4,zigzagMinSpan:4,zigzagMaxSpan:20,zigzagZ:100,expandOnClick:!0},breakLabelLayout:{moveOverlap:"auto"}},GT=C({boundaryGap:!0,deduplication:null,jitter:0,jitterOverlap:!0,jitterMargin:2,splitLine:{show:!1},axisTick:{alignWithLabel:!1,interval:"auto",show:"auto"},axisLabel:{interval:"auto"}},VT),FT=C({boundaryGap:[0,0],axisLine:{show:"auto"},axisTick:{show:"auto"},splitNumber:5,minorTick:{show:!1,splitNumber:5,length:3,lineStyle:{}},minorSplitLine:{show:!1,lineStyle:{color:tf.color.axisMinorSplitLine,width:1}}},VT),WT={category:GT,value:FT,time:C({splitNumber:6,axisLabel:{showMinLabel:!1,showMaxLabel:!1,rich:{primary:{fontWeight:"bold"}}},splitLine:{show:!1}},FT),log:k({logBase:10},FT)},HT={value:1,category:1,time:1,log:1},UT=null;function YT(){return UT}function XT(t,e,i,r){z(HT,(function(o,a){var s=C(C({},WT[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=jp(this),i=n?Kp(t):{};C(t,e.getTheme().get(a+"Axis")),C(t,this.getDefaultOption()),t.type=ZT(t),n&&qp(t,i,n)},i.prototype.optionUpdated=function(){"category"===this.option.type&&(this.__ordinalMeta=ab.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.prototype.updateAxisBreaks=function(t){var e=YT();return e?e.updateModelAxisBreak(this,t):{breaks:[]}},i.type=e+"Axis."+a,i.defaultOption=s,i}(i);t.registerComponentModel(l)})),t.registerSubTypeDefaulter(e+"Axis",ZT)}function ZT(t){return t.type||(t.data?"category":"value")}var jT=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 E(this._dimList,(function(t){return this._axes[t]}),this)},t.prototype.getAxesByScale=function(t){return t=t.toLowerCase(),V(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}(),qT=["x","y"];function KT(t){return("interval"===t.type||"time"===t.type)&&!t.hasBreaks()}var $T=function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e.type="cartesian2d",e.dimensions=qT,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(KT(t)&&KT(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,c=r[0]-n[0]*l,h=r[1]-i[0]*u,d=this._transform=[l,0,0,u,c,h];this._invTransform=Te([],d)}}},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.containZone=function(t,e){var n=this.dataToPoint(t),i=this.dataToPoint(e),r=this.getArea(),o=new He(n[0],n[1],i[0]-n[0],i[1]-n[1]);return r.intersect(o)},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 Ht(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,n){if(n=n||[],this._invTransform)return Ht(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(t){t=t||0;var e=this.getAxis("x").getGlobalExtent(),n=this.getAxis("y").getGlobalExtent(),i=Math.min(e[0],e[1])-t,r=Math.min(n[0],n[1])-t,o=Math.max(e[0],e[1])-i+t,a=Math.max(n[0],n[1])-r+t;return new He(i,r,o,a)},e}(jT),JT=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}(Ww),QT="expandAxisBreak",tC="collapseAxisBreak",eC="toggleAxisBreak",nC="axisbreakchanged",iC={type:QT,event:nC,update:"update",refineEvent:aC},rC={type:tC,event:nC,update:"update",refineEvent:aC},oC={type:eC,event:nC,update:"update",refineEvent:aC};function aC(t,e,n,i){var r=[];return z(t,(function(t){r=r.concat(t.eventBreaks)})),{eventContent:{breaks:r}}}var sC=Math.PI,lC=[[1,2,1,2],[5,3,5,3],[8,3,8,3]],uC=[[0,1,0,1],[0,3,0,3],[0,3,0,3]],cC=sa(),hC=sa(),dC=function(){function t(t){this.recordMap={},this.resolveAxisNameOverlap=t}return t.prototype.ensureRecord=function(t){var e=t.axis.dim,n=t.componentIndex,i=this.recordMap,r=i[e]||(i[e]=[]);return r[n]||(r[n]={ready:{}})},t}();var pC=[1,0,0,1,0,0],fC=new He(0,0,0,0),gC=function(t,e,n,i,r,o){if(Qb(t.nameLocation)){var a=o.stOccupiedRect;a&&yC(function(t,e,n){return t.transform=Wh(t.transform,n),t.localRect=Fh(t.localRect,e),t.rect=Fh(t.rect,e),n&&t.rect.applyTransform(n),t.axisAligned=Vh(n),t.obb=void 0,(t.label=t.label||{}).ignore=!1,t}({},a,o.transGroup.transform),i,r)}else vC(o.labelInfoList,o.dirVec,i,r)};function yC(t,e,n){var i=new Ae;IS(t,e,i,{direction:Math.atan2(n.y,n.x),bidirectional:!1,touchThreshold:.05})&&_S(e,i)}function vC(t,e,n,i){for(var r=Ae.dot(i,e)>=0,o=0,a=t.length;o0?"top":"bottom",i="center"):Co(o-sC)?(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}(),xC=["axisLine","axisTickLabelEstimate","axisTickLabelDetermine","axisName"],_C={axisLine:function(t,e,n,i,r,o,a){var s=i.get(["axisLine","show"]);if("auto"===s&&(s=!0,null!=t.raw.axisLineAutoShow&&(s=!!t.raw.axisLineAutoShow)),s){var l=i.axis.getExtent(),u=o.transform,c=[l[0],0],h=[l[1],0],d=c[0]>h[0];u&&(Ht(c,c,u),Ht(h,h,u));var p=A({lineCap:"round"},i.getModel(["axisLine","lineStyle"]).getLineStyle()),f={strokeContainThreshold:t.raw.strokeContainThreshold||5,silent:!0,z2:1,style:p};if(i.get(["axisLine","breakLine"])&&i.axis.scale.hasBreaks())YT().buildAxisBreakLine(i,r,o,f);else{var g=new Ac(A({shape:{x1:c[0],y1:c[1],x2:h[0],y2:h[1]}},f));_h(g.shape,g.style.lineWidth),g.anid="line",r.add(g)}var y=i.get(["axisLine","symbol"]);if(null!=y){var v=i.get(["axisLine","symbolSize"]);X(y)&&(y=[y,y]),(X(v)||j(v))&&(v=[v,v]);var m=pm(i.get(["axisLine","symbolOffset"])||0,v),x=v[0],_=v[1];z([{rotate:t.rotation+Math.PI/2,offset:m[0],r:0},{rotate:t.rotation-Math.PI/2,offset:m[1],r:Math.sqrt((c[0]-h[0])*(c[0]-h[0])+(c[1]-h[1])*(c[1]-h[1]))}],(function(e,n){if("none"!==y[n]&&null!=y[n]){var i=hm(y[n],-x/2,-_/2,x,_,p.stroke,!0),o=e.r+e.offset,a=d?h:c;i.attr({rotation:e.rotate,x:a[0]+o*Math.cos(t.rotation),y:a[1]-o*Math.sin(t.rotation),silent:!0,z2:11}),r.add(i)}}))}}},axisTickLabelEstimate:function(t,e,n,i,r,o,a,s){MC(e,r,s)&&bC(t,e,n,i,r,o,a,Iw)},axisTickLabelDetermine:function(t,e,n,i,r,o,a,s){MC(e,r,s)&&bC(t,e,n,i,r,o,a,Tw);var l=function(t,e,n,i){var r=i.axis,o=i.getModel("axisTick"),a=o.get("show");"auto"===a&&(a=!0,null!=t.raw.axisTickAutoShow&&(a=!!t.raw.axisTickAutoShow));if(!a||r.scale.isBlank())return[];for(var s=o.getModel("lineStyle"),l=t.tickDirection*o.get("length"),u=SC(r.getTicksCoords(),n.transform,l,k(s.getLineStyle(),{stroke:i.get(["axisLine","lineStyle","color"])}),"ticks"),c=0;ci[1],l="start"===e&&!s||"start"!==e&&s;Co(a-sC/2)?(o=l?"bottom":"top",r="center"):Co(a-1.5*sC)?(o=l?"top":"bottom",r="center"):(o="middle",r=a<1.5*sC&&a>sC/2?l?"left":"right":l?"right":"left");return{rotation:a,textAlign:r,textVerticalAlign:o}}(t.rotation,c,b||0,f),null!=(_=t.raw.axisNameAvailableWidth)&&(_=Math.abs(_/Math.sin(x.rotation)),!isFinite(_)&&(_=null)));var w=d.getFont(),S=i.get("nameTruncate",!0)||{},M=S.ellipsis,I=it(t.raw.nameTruncateMaxWidth,S.maxWidth,_),T=s.nameMarginLevel||0,C=new Sl({x:y.x,y:y.y,rotation:x.rotation,silent:mC.isLabelSilent(i),style:Qh(d,{text:u,font:w,overflow:"truncate",width:I,ellipsis:M,fill:d.getTextColor()||i.get(["axisLine","lineStyle","color"]),align:d.get("align")||x.textAlign,verticalAlign:d.get("verticalAlign")||x.textVerticalAlign}),z2:1});if(zh({el:C,componentModel:i,itemName:u}),C.__fullText=u,C.anid="name",i.get("triggerEvent")){var D=mC.makeAxisEventDataBase(i);D.targetType="axisName",D.name=u,zl(C).eventData=D}o.add(C),C.updateTransform(),e.nameEl=C;var A=l.nameLayout=vS({label:C,priority:C.z2,defaultAttr:{ignore:C.ignore},marginDefault:Qb(c)?lC[T]:uC[T]});if(l.nameLocation=c,r.add(C),C.decomposeTransform(),t.shouldNameMoveOverlap&&A){var k=n.ensureRecord(i);0,n.resolveAxisNameOverlap(t,n,i,A,v,k)}}}};function bC(t,e,n,i,r,o,a,s){IC(e)||function(t,e,n,i,r,o){var a=r.axis,s=it(t.raw.axisLabelShow,r.get(["axisLabel","show"])),l=new to;n.add(l);var u=Cw(i);if(!s||a.scale.isBlank())return void TC(e,[],l,u);var c=r.getModel("axisLabel"),h=a.getViewLabels(u),d=(it(t.raw.labelRotate,c.get("rotate"))||0)*sC/180,p=mC.innerTextLayout(t.rotation,d,t.labelDirection),f=r.getCategories&&r.getCategories(!0),g=[],y=r.get("triggerEvent"),v=1/0,m=-1/0;z(h,(function(t,e){var n,i="ordinal"===a.scale.type?a.scale.getRawOrdinalNumber(t.tickValue):t.tickValue,s=t.formattedLabel,u=t.rawLabel,d=c;if(f&&f[i]){var x=f[i];q(x)&&x.textStyle&&(d=new wd(x.textStyle,c,r.ecModel))}var _=d.getTextColor()||r.get(["axisLine","lineStyle","color"]),b=d.getShallow("align",!0)||p.textAlign,w=rt(d.getShallow("alignMinLabel",!0),b),S=rt(d.getShallow("alignMaxLabel",!0),b),M=d.getShallow("verticalAlign",!0)||d.getShallow("baseline",!0)||p.textVerticalAlign,I=rt(d.getShallow("verticalAlignMinLabel",!0),M),T=rt(d.getShallow("verticalAlignMaxLabel",!0),M),C=10+((null===(n=t.time)||void 0===n?void 0:n.level)||0);v=Math.min(v,C),m=Math.max(m,C);var D=new Sl({x:0,y:0,rotation:0,silent:mC.isLabelSilent(r),z2:C,style:Qh(d,{text:s,align:0===e?w:e===h.length-1?S:b,verticalAlign:0===e?I:e===h.length-1?T:M,fill:Y(_)?_("category"===a.type?u:"value"===a.type?i+"":i,e):_})});D.anid="label_"+i;var A=cC(D);if(A.break=t.break,A.tickValue=i,A.layoutRotation=p.rotation,zh({el:D,componentModel:r,itemName:s,formatterParamsExtra:{isTruncated:function(){return D.isTruncated},value:u,tickIndex:e}}),y){var k=mC.makeAxisEventDataBase(r);k.targetType="axisLabel",k.value=u,k.tickIndex=e,t.break&&(k.break={start:t.break.parsedBreak.vmin,end:t.break.parsedBreak.vmax}),"category"===a.type&&(k.dataIndex=i),zl(D).eventData=k,t.break&&function(t,e,n,i){n.on("click",(function(n){var r={type:QT,breaks:[{start:i.parsedBreak.breakOption.start,end:i.parsedBreak.breakOption.end}]};r[t.axis.dim+"AxisIndex"]=t.componentIndex,e.dispatchAction(r)}))}(r,o,D,t.break)}g.push(D),l.add(D)}));var x=E(g,(function(t){return{label:t,priority:cC(t).break?t.z2+(m-v+1):t.z2,defaultAttr:{ignore:t.ignore}}}));TC(e,x,l,u)}(t,e,r,s,i,a);var l=e.labelLayoutList;!function(t,e,n,i){var r=e.get(["axisLabel","margin"]);z(n,(function(n,o){var a=vS(n);if(a){var s=a.label,l=cC(s);a.suggestIgnore=s.ignore,s.ignore=!1,kr(CC,DC),CC.x=e.axis.dataToCoord(l.tickValue),CC.y=t.labelOffset+t.labelDirection*r,CC.rotation=l.layoutRotation,i.add(CC),CC.updateTransform(),i.remove(CC),CC.decomposeTransform(),kr(s,CC),s.markRedraw(),gS(a,!0),vS(a)}}))}(t,i,l,o),function(t,e,n){var i=Nd();if(!i)return;var r=i.retrieveAxisBreakPairs(n,(function(t){return t&&cC(t.label).break}),!0),o=t.get(["breakLabelLayout","moveOverlap"],!0);!0!==o&&"auto"!==o||z(r,(function(i){YT().adjustBreakLabelPair(t.axis.inverse,e,[vS(n[i[0]]),vS(n[i[1]])])}))}(i,t.rotation,l);var u=t.optionHideOverlap;!function(t,e,n){if($b(t.axis))return;function i(t,i,r){var o=vS(e[i]),a=vS(e[r]);if(o&&a)if(!1===t||o.suggestIgnore)wC(o.label);else if(a.suggestIgnore)wC(a.label);else{var s=.1;if(!n){var l=[0,0,0,0];o=bS({marginForce:l},o),a=bS({marginForce:l},a)}IS(o,a,null,{touchThreshold:s})&&wC(t?a.label:o.label)}}var r=t.get(["axisLabel","showMinLabel"]),o=t.get(["axisLabel","showMaxLabel"]),a=e.length;i(r,0,1),i(o,a-1,a-2)}(i,l,u),u&&MS(V(l,(function(t){return t&&!t.label.ignore}))),function(t,e,n,i){var r,o=n.axis,a=e.ensureRecord(n),s=[],l=AC(t.axisName)&&Qb(t.nameLocation);z(i,(function(t){var e=vS(t);if(e&&!e.label.ignore){s.push(e);var n=a.transGroup;l&&(n.transform?Te(pC,n.transform):_e(pC),e.transform&&we(pC,pC,e.transform),He.copy(fC,e.localRect),fC.applyTransform(pC),r?r.union(fC):He.copy(r=new He(0,0,0,0),fC))}}));var u=Math.abs(a.dirVec.x)>.1?"x":"y",c=a.transGroup[u];if(s.sort((function(t,e){return Math.abs(t.label[u]-c)-Math.abs(e.label[u]-c)})),l&&r){var h=o.getExtent(),d=Math.min(h[0],h[1]),p=Math.max(h[0],h[1])-d;r.union(new He(d,0,p,1))}a.stOccupiedRect=r,a.labelInfoList=s}(t,n,i,l)}function wC(t){t&&(t.ignore=!0)}function SC(t,e,n,i,r){for(var o=[],a=[],s=[],l=0;lu[0]&&isFinite(f)&&isFinite(u[0]);)p=K_(p),f=u[1]-p*a;else{t.getTicks().length-1>a&&(p=K_(p));var y=p*a;(f=mo((g=Math.ceil(u[1]/p)*p)-y))<0&&u[0]>=0?(f=0,g=mo(y)):g>0&&u[1]<=0&&(g=0,f=-mo(y))}var v=(r[0].value-o[0].value)/s,m=(r[a].value-o[a].value)/s;i.setExtent.call(t,f+p*v,g+p*m),i.setInterval.call(t,p),(v||m)&&i.setNiceExtent.call(t,f+p,g-p)}var OC,RC=[[3,1],[0,2]],NC=function(){function t(t,e,n){this.type="grid",this._coordsMap={},this._coordsList=[],this._axesMap={},this._axesList=[],this.axisPointerEnabled=!0,this.dimensions=qT,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;function i(t){var e,n=F(t),i=n.length;if(i){for(var r=[],o=i-1;o>=0;o--){var a=t[+n[o]],s=a.model,l=a.scale;j_(l)&&s.get("alignTicks")&&null==s.get("interval")?r.push(a):(Xb(l,s),j_(l)&&(e=a))}r.length&&(e||Xb((e=r.pop()).scale,e.model),z(r,(function(t){PC(t.scale,t.model,e.scale)})))}}this._updateScale(t,this.model),i(n.x),i(n.y);var r={};z(n.x,(function(t){EC(n,"y",t,r)})),z(n.y,(function(t){EC(n,"x",t,r)})),this.resize(this.model,e)},t.prototype.resize=function(t,e,n){var i=Xp(t,e),r=this._rect=Hp(t.getBoxLayoutParams(),i.refContainer),o=this._axesMap,a=this._coordsList,s=t.get("containLabel");if(VC(o,r),!n){var l=function(t,e,n,i,r){var o=new dC(HC);return z(n,(function(n){return z(n,(function(n){if(tw(n.model)){var a=!i;n.axisBuilder=function(t,e,n,i,r,o){for(var a=kC(t,n),s=!1,l=!1,u=0;u0&&i>0||n<0&&i<0)}(t)}function VC(t,e){z(t.x,(function(t){return GC(t,e.x,e.width)})),z(t.y,(function(t){return GC(t,e.y,e.height)}))}function GC(t,e,n){var i=[0,n],r=t.inverse?1:0;t.setExtent(i[r],i[1-r]),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)}function FC(t,e,n,i,r,o,a){WC(i,r,Iw,e,!1,a);var s=[0,0,0,0];u(0),u(1),c(i,0,NaN),c(i,1,NaN);var l=null==G(s,(function(t){return t>0}));return Oh(i,s,!0,!0,n),VC(r,i),l;function u(t){z(r[lh[t]],(function(e){if(tw(e.model)){var n=o.ensureRecord(e.model),i=n.labelInfoList;if(i)for(var r=0;r0&&!nt(e)&&e>1e-4&&(t/=e),t}}function WC(t,e,n,i,r,o){var a=n===Tw;z(e,(function(e){return z(e,(function(e){tw(e.model)&&(!function(t,e,n){var i=kC(e,n);t.updateCfg(i)}(e.axisBuilder,t,e.model),e.axisBuilder.build(a?{axisTickLabelDetermine:!0}:{axisTickLabelEstimate:!0},{noPxChange:r}))}))}));var s={x:0,y:0};function l(e){s[lh[1-e]]=t[uh[e]]<=.5*o.refContainer[uh[e]]?0:1-e==1?2:1}l(0),l(1),z(e,(function(t,e){return z(t,(function(t){tw(t.model)&&(("all"===i||a)&&t.axisBuilder.build({axisName:!0},{nameMarginLevel:s[e]}),a&&t.axisBuilder.build({axisLine:!0}))}))}))}var HC=function(t,e,n,i,r,o){var a="x"===n.axis.dim?"y":"x";gC(t,0,0,i,r,o),Qb(t.nameLocation)||z(e.recordMap[a],(function(t){t&&t.labelInfoList&&t.dirVec&&vC(t.labelInfoList,t.dirVec,i,r)}))};function UC(t,e){var n={axesInfo:{},seriesInvolved:!1,coordSysAxesInfo:{},coordSysMap:{}};return function(t,e,n){var i=e.getComponent("tooltip"),r=e.getComponent("axisPointer"),o=r.get("link",!0)||[],a=[];z(n.getCoordinateSystems(),(function(n){if(n.axisPointerEnabled){var s=qC(n.model),l=t.coordSysAxesInfo[s]={};t.coordSysMap[s]=n;var u=n.model.getModel("tooltip",i);if(z(n.getAxes(),H(p,!1,null)),n.getTooltipAxes&&i&&u.get("show")){var c="axis"===u.get("trigger"),h="cross"===u.get(["axisPointer","type"]),d=n.getTooltipAxes(u.get(["axisPointer","axis"]));(c||h)&&z(d.baseAxes,H(p,!h||"cross",c)),h&&z(d.otherAxes,H(p,"cross",!1))}}function p(i,s,c){var h=c.model.getModel("axisPointer",r),d=h.get("show");if(d&&("auto"!==d||i||jC(h))){null==s&&(s=h.get("triggerTooltip")),h=i?function(t,e,n,i,r,o){var a=e.getModel("axisPointer"),s={};z(["type","snap","lineStyle","shadowStyle","label","animation","animationDurationUpdate","animationEasingUpdate","z"],(function(t){s[t]=T(a.get(t))})),s.snap="category"!==t.type&&!!o,"cross"===a.get("type")&&(s.type="line");var l=s.label||(s.label={});if(null==l.show&&(l.show=!1),"cross"===r){var u=a.get(["label","show"]);if(l.show=null==u||u,!o){var c=s.lineStyle=a.get("crossStyle");c&&k(l,c.textStyle)}}return t.model.getModel("axisPointer",new wd(s,n,i))}(c,u,r,e,i,s):h;var p=h.get("snap"),f=h.get("triggerEmphasis"),g=qC(c.model),y=s||p||"category"===c.type,v=t.axesInfo[g]={key:g,axis:c,coordSys:n,axisPointerModel:h,triggerTooltip:s,triggerEmphasis:f,involveSeries:y,snap:p,useHandle:jC(h),seriesModels:[],linkGroup:null};l[g]=v,t.seriesInvolved=t.seriesInvolved||y;var m=function(t,e){for(var n=e.model,i=e.dim,r=0;r=0||t===e}function XC(t){var e=ZC(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=jC(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?s?hD(n,a,u,i):function(t,e,n,i,r,o){var a=uD(t);a.items||(a.items=[]);var s=a.items,l=dD(s,e,n,i,r,o,1),u=dD(s,e,n,i,r,o,-1),c=Math.abs(l-n)r/2||h&&d>h/2-i)return hD(n,r,h,i);return s.push({fixedCoord:e,floatCoord:c,r:i}),c}(t,e,n,i,a,l):n}function hD(t,e,n,i){if(null===n)return t+(Math.random()-.5)*e;var r=n-2*i,o=Math.min(Math.max(0,e),r);return t+(Math.random()-.5)*o}function dD(t,e,n,i,r,o,a){for(var s=n,l=0;lr/2)return Number.MAX_VALUE;if(1===a&&f>s||-1===a&&f0;return a&&s}(t,n);if(i){var r=t.getData();r.each((function(t){var e=n.dim,i=n.orient,o="horizontal"===i&&"category"!==n.type||"vertical"===i&&"category"===n.type,a=r.getItemLayout(t),s=r.getItemVisual(t,"symbolSize"),l=s instanceof Array?(s[1]+s[0])/2:s;if("y"===e||"single"===e&&o){var u=cD(n,a[0],a[1],l/2);r.setItemLayout(t,[a[0],u])}else if("x"===e||"single"===e&&!o){u=cD(n,a[1],a[0],l/2);r.setItemLayout(t,[u,a[1]])}}))}}}))}function fD(t){t.eachSeriesByType("radar",(function(t){var e=t.getData(),n=[],i=t.coordinateSystem;if(i){var r=i.getIndicatorAxes();z(r,(function(t,o){e.each(e.mapDimension(r[o].dim),(function(t,e){n[e]=n[e]||[];var r=i.dataToPoint(t,o);n[e][o]=gD(r)?r:yD(i)}))})),e.each((function(t){var r=G(n[t],(function(t){return gD(t)}))||yD(i);n[t].push(r.slice()),e.setItemLayout(t,n[t])}))}}))}function gD(t){return!isNaN(t[0])&&!isNaN(t[1])}function yD(t){return[t.cx,t.cy]}function vD(t){var e=t.polar;if(e){U(e)||(e=[e]);var n=[];z(e,(function(e,i){e.indicator?(e.type&&!e.shape&&(e.shape=e.type),t.radar=t.radar||[],U(t.radar)||(t.radar=[t.radar]),t.radar.push(e)):n.push(e)})),t.polar=n}z(t.series,(function(t){t&&"radar"===t.type&&t.polarIndex&&(t.radarIndex=t.polarIndex)}))}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.render=function(t,e,n){var i=t.coordinateSystem,r=this.group,o=t.getData(),a=this._data;function s(t,e){var n=t.getItemVisual(e,"symbol")||"circle";if("none"!==n){var i=dm(t.getItemVisual(e,"symbolSize")),r=hm(n,-1,-1,2,2),o=t.getItemVisual(e,"symbolRotate")||0;return r.attr({style:{strokeNoScale:!0},z2:100,scaleX:i[0]/2,scaleY:i[1]/2,rotation:o*Math.PI/180||0}),r}}function l(e,n,i,r,o,a){i.removeAll();for(var l=0;l0&&!h.min?h.min=0:null!=h.min&&h.min<0&&!h.max&&(h.max=0);var d=a;null!=h.color&&(d=k({color:h.color},a));var p=C(T(h),{boundaryGap:t,splitNumber:e,scale:n,axisLine:i,axisTick:r,axisLabel:o,name:h.text,showName:s,nameLocation:"end",nameGap:u,nameTextStyle:d,triggerEvent:c},!1);if(X(l)){var f=p.name;p.name=l.replace("{value}",null!=f?f:"")}else Y(l)&&(p.name=l(p.name,p));var g=new wd(p,null,this.ecModel);return R(g,nw.prototype),g.mainType="radar",g.componentIndex=this.componentIndex,g}),this);this._indicatorModels=h},e.prototype.getIndicatorModels=function(){return this._indicatorModels},e.type="radar",e.defaultOption={z:0,center:["50%","50%"],radius:"50%",startAngle:90,axisName:{show:!0,color:tf.color.axisLabel},boundaryGap:[0,0],splitNumber:5,axisNameGap:15,scale:!1,shape:"polygon",axisLine:C({lineStyle:{color:tf.color.neutral20}},_D.axisLine),axisLabel:bD(_D.axisLabel,!1),axisTick:bD(_D.axisTick,!1),splitLine:bD(_D.splitLine,!0),splitArea:bD(_D.splitArea,!0),indicator:[]},e}(Qp),SD=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,n),this._buildSplitLineAndArea(t)},e.prototype._buildAxes=function(t,e){var n=t.coordinateSystem;z(E(n.getIndicatorAxes(),(function(t){var i=t.model.get("showName")?t.name:"";return new mC(t.model,e,{axisName:i,position:[n.cx,n.cy],rotation:t.angle,labelDirection:-1,tickDirection:-1,nameDirection:1})})),(function(t){t.build(),this.group.add(t.group)}),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"),c=a.get("color"),h=s.get("color"),d=U(c)?c:[c],p=U(h)?h:[h],f=[],g=[];if("circle"===i)for(var y=n[0].getTicksCoords(),v=e.cx,m=e.cy,x=0;x3?1.4:r>1?1.2:1.1,l=i>0?s:1/s;this._checkTriggerMoveZoom(this,"zoom","zoomOnMouseWheel",t,{scale:l,originX:o,originY:a,isAvailableBehavior:null})}if(n){var u=Math.abs(i),c=(i>0?1:-1)*(u>3?.4:u>1?.15:.05);this._checkTriggerMoveZoom(this,"scrollMove","moveOnMouseWheel",t,{scrollDelta:c,originX:o,originY:a,isAvailableBehavior:null})}}}},e.prototype._pinchHandler=function(t){if(!DD(this._zr,"globalPan")&&!PD(t)){var e=t.pinchScale>1?1.1:1/1.1;this._checkTriggerMoveZoom(this,"zoom",null,t,{scale:e,originX:t.pinchX,originY:t.pinchY,isAvailableBehavior:null})}},e.prototype._checkTriggerMoveZoom=function(t,e,n,i,r){t._checkPointer(i,r.originX,r.originY)&&(fe(i.event),i.__ecRoamConsumed=!0,VD(t,e,n,i,r))},e}(qt);function PD(t){return t.__ecRoamConsumed}var OD,RD=sa();function ND(t){var e=RD(t);return e.roam=e.roam||{},e.uniform=e.uniform||{},e}function zD(t,e,n,i){for(var r=ND(t).roam,o=r[e]=r[e]||[],a=0;a=4&&(l={x:parseFloat(h[0]||0),y:parseFloat(h[1]||0),width:parseFloat(h[2]),height:parseFloat(h[3])})}if(l&&null!=a&&null!=s&&(u=fA(l,{x:0,y:0,width:a,height:s}),!e.ignoreViewBox)){var d=i;(i=new to).add(d),d.scaleX=d.scaleY=u.scale,d.x=u.x,d.y=u.y}return e.ignoreRootClip||null==a||null==s||i.setClipPath(new xl({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=OD[s];if(u&&_t(OD,s)){a=u.call(this,t,e);var c=t.getAttribute("name");if(c){var h={name:c,namedFrom:null,svgNodeTagLower:s,el:a};n.push(h),"g"===s&&(l=h)}else i&&n.push({name:i.name,namedFrom:i,svgNodeTagLower:s,el:a});e.add(a)}}var d=tA[s];if(d&&_t(tA,s)){var p=d.call(this,t),f=t.getAttribute("id");f&&(this._defs[f]=p)}}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 ul({style:{text:t.textContent},silent:!0,x:this._textX||0,y:this._textY||0});iA(e,n),oA(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(OD={g:function(t,e){var n=new to;return iA(e,n),oA(t,n,this._defsUsePending,!1,!1),n},rect:function(t,e){var n=new xl;return iA(e,n),oA(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 nc;return iA(e,n),oA(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 Ac;return iA(e,n),oA(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 rc;return iA(e,n),oA(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=rA(i));var r=new Mc({shape:{points:n||[]},silent:!0});return iA(e,r),oA(t,r,this._defsUsePending,!1,!1),r},polyline:function(t,e){var n,i=t.getAttribute("points");i&&(n=rA(i));var r=new Tc({shape:{points:n||[]},silent:!0});return iA(e,r),oA(t,r,this._defsUsePending,!1,!1),r},image:function(t,e){var n=new dl;return iA(e,n),oA(t,n,this._defsUsePending,!1,!1),n.setStyle({image:t.getAttribute("xlink:href")||t.getAttribute("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 to;return iA(e,a),oA(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 to;return iA(e,a),oA(t,a,this._defsUsePending,!1,!0),this._textX+=parseFloat(r),this._textY+=parseFloat(o),a},path:function(t,e){var n=Qu(t.getAttribute("d")||"");return iA(e,n),oA(t,n,this._defsUsePending,!1,!1),n.silent=!0,n}}),t}(),tA={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 Bc(e,n,i,r);return eA(t,o),nA(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 Vc(e,n,i);return eA(t,r),nA(t,r),r}};function eA(t,e){"userSpaceOnUse"===t.getAttribute("gradientUnits")&&(e.global=!0)}function nA(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={};pA(n,o,o);var a=o.stopColor||n.getAttribute("stop-color")||"#000000",s=o.stopOpacity||n.getAttribute("stop-opacity");if(s){var l=oi(a);l&&l[3]&&(l[3]*=$n(s),a=fi(l,"rgba"))}e.colorStops.push({offset:r,color:a})}n=n.nextSibling}}function iA(t,e){t&&t.__inheritedStyle&&(e.__inheritedStyle||(e.__inheritedStyle={}),k(e.__inheritedStyle,t.__inheritedStyle))}function rA(t){for(var e=uA(t),n=[],i=0;i0;o-=2){var a=i[o],s=i[o-1],l=uA(a);switch(r=r||[1,0,0,1,0,0],s){case"translate":Se(r,r,[parseFloat(l[0]),parseFloat(l[1]||"0")]);break;case"scale":Ie(r,r,[parseFloat(l[0]),parseFloat(l[1]||l[0])]);break;case"rotate":Me(r,r,-parseFloat(l[0])*hA,[parseFloat(l[1]||"0"),parseFloat(l[2]||"0")]);break;case"skewX":we(r,[1,0,Math.tan(parseFloat(l[0])*hA),1,0,0],r);break;case"skewY":we(r,[1,Math.tan(parseFloat(l[0])*hA),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),pA(t,a,s),i||function(t,e,n){for(var i=0;i0,y={api:n,geo:l,mapOrGeoModel:t,data:a,isVisualEncodedByVisualMap:g,isGeo:o,transformInfoRaw:d};"geoJSON"===l.resourceType?this._buildGeoJSON(y):"geoSVG"===l.resourceType&&this._buildSVG(y),this._updateController(t,s,e,n),this._updateMapSelectHandler(t,u,n,i)},t.prototype._buildGeoJSON=function(t){var e=this._regionsGroupByName=yt(),n=yt(),i=this._regionsGroup,r=t.transformInfoRaw,o=t.mapOrGeoModel,a=t.data,s=t.geo.projection,l=s&&s.stream;function u(t,e){return e&&(t=e(t)),t&&[t[0]*r.scaleX+r.x,t[1]*r.scaleY+r.y]}function c(t){for(var e=[],n=!l&&s&&s.project,i=0;i=0)&&(d=r);var p=a?{normal:{align:"center",verticalAlign:"middle"}}:null;$h(e,Jh(i),{labelFetcher:d,labelDataIndex:h,defaultText:n},p);var f=e.getTextContent();if(f&&(NA(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 FA(t,e,n,i,r,o){t.data?t.data.setItemGraphicEl(o,e):zl(e).eventData={componentType:"geo",componentIndex:r.componentIndex,geoIndex:r.componentIndex,name:n,region:i&&i.option||{}}}function WA(t,e,n,i,r){t.data||zh({el:e,componentModel:r,itemName:n,itemTooltipOption:i.get("tooltip")})}function HA(t,e,n,i,r){e.highDownSilentOnTouch=!!r.get("selectedMode");var o=i.getModel("emphasis"),a=o.get("focus");return Tu(e,a,o.get("blurScope"),o.get("disabled")),t.isGeo&&function(t,e,n){var i=zl(t);i.componentMainType=e.mainType,i.componentIndex=e.componentIndex,i.componentHighDownName=n}(e,r,n),a}function UA(t,e,n){var i,r=[];function o(){i=[]}function a(){i.length&&(r.push(i),i=[])}var s=e({polygonStart:o,polygonEnd:a,lineStart:o,lineEnd:a,point:function(t,e){isFinite(t)&&isFinite(e)&&i.push([t,e])},sphere:function(){}});return!n&&s.polygonStart(),z(t,(function(t){s.lineStart();for(var e=0;e-1&&(n.style.stroke=n.style.fill,n.style.fill=tf.color.neutral00,n.style.lineWidth=2),n},e.type="series.map",e.dependencies=["geo"],e.layoutMode="box",e.defaultOption={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:tf.color.tertiary},itemStyle:{borderWidth:.5,borderColor:tf.color.border,areaColor:tf.color.background},emphasis:{label:{show:!0,color:tf.color.primary},itemStyle:{areaColor:tf.color.highlight}},select:{label:{show:!0,color:tf.color.primary},itemStyle:{color:tf.color.highlight}},nameProperty:"name"},e}(Wy);function ZA(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)})),z(e,(function(t,e){for(var n,i,r,o=(n=E(t,(function(t){return t.getData()})),i=t[0].get("mapValueCalculation"),r={},z(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,c=0;c1?(p.width=d,p.height=d/m):(p.height=d,p.width=d*m),p.y=h[1]-p.height/2,p.x=h[0]-p.width/2;else{var _=t.getBoxLayoutParams();_.aspect=m,p=Up(t,p=Hp(_,v),m)}this.setViewRect(p.x,p.y,p.width,p.height),this.setCenter(t.get("center")),this.setZoom(t.get("zoom"))}R(tk,KA);var ik=function(){function t(){this.dimensions=QA}return t.prototype.create=function(t,e){var n=[];function i(t){return{nameProperty:t.get("nameProperty"),aspectScale:t.get("aspectScale"),projection:t.get("projection")}}t.eachComponent("geo",(function(r,o){var a=r.get("map"),s=new tk(a+o,a,A({nameMap:r.get("nameMap"),api:e,ecModel:t},i(r)));s.zoomLimit=r.get("scaleLimit"),n.push(s),r.coordinateSystem=s,s.model=r,s.resize=nk,s.resize(r,e)})),t.eachSeries((function(t){Rp({targetModel:t,coordSysType:"geo",coordSysProvider:function(){var e="map"===t.subType?t.getHostGeoModel():t.getReferringComponents("geo",ha).models[0];return e&&e.coordinateSystem},allowNotFound:!0})}));var r={};return t.eachSeriesByType("map",(function(t){if(!t.getHostGeoModel()){var e=t.getMapType();r[e]=r[e]||[],r[e].push(t)}})),z(r,(function(r,o){var a=E(r,(function(t){return t.get("nameMap")})),s=new tk(o,o,A({nameMap:D(a),api:e,ecModel:t},i(r[0])));s.zoomLimit=it.apply(null,E(r,(function(t){return t.get("scaleLimit")}))),n.push(s),s.resize=nk,s.resize(r[0],e),z(r,(function(t){t.coordinateSystem=s,function(t,e){z(e.get("geoCoord"),(function(e,n){t.addGeoCoord(n,e)}))}(s,t)}))})),n},t.prototype.getFilledRegions=function(t,e,n,i){for(var r=(t||[]).slice(),o=yt(),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,c=a.hierNode.modifier,h=s.hierNode.modifier;s=pk(s),o=fk(o),s&&o;){r=pk(r),a=fk(a),r.hierNode.ancestor=t;var d=s.hierNode.prelim+h-o.hierNode.prelim-u+i(s,o);d>0&&(yk(gk(s,t,n),t,d),u+=d,l+=d),h+=s.hierNode.modifier,u+=o.hierNode.modifier,l+=r.hierNode.modifier,c+=a.hierNode.modifier}s&&!pk(r)&&(r.hierNode.thread=s,r.hierNode.modifier+=h-l),o&&!fk(a)&&(a.hierNode.thread=o,a.hierNode.modifier+=u-c,n=t)}return n}(t,r,t.parentNode.hierNode.defaultAncestor||i[0],e)}function ck(t){var e=t.hierNode.prelim+t.parentNode.hierNode.modifier;t.setLayout({x:e},!0),t.hierNode.modifier+=t.parentNode.hierNode.modifier}function hk(t){return arguments.length?t:vk}function dk(t,e){return t-=Math.PI/2,{x:e*Math.cos(t),y:e*Math.sin(t)}}function pk(t){var e=t.children;return e.length&&t.isExpand?e[e.length-1]:t.hierNode.thread}function fk(t){var e=t.children;return e.length&&t.isExpand?e[0]:t.hierNode.thread}function gk(t,e,n){return t.hierNode.ancestor.parentNode===e.parentNode?t.hierNode.ancestor:n}function yk(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 vk(t,e){return t.parentNode===e.parentNode?1:2}var mk=function(){this.parentPoint=[],this.childPoints=[]},xk=function(t){function e(e){return t.call(this,e)||this}return n(e,t),e.prototype.getDefaultStyle=function(){return{stroke:tf.color.neutral99,fill:null}},e.prototype.getDefaultShape=function(){return new mk},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,c=yo(e.forkPosition,1),h=[];h[l]=r[l],h[u]=r[u]+(a[u]-r[u])*c,t.moveTo(r[0],r[1]),t.lineTo(h[0],h[1]),t.moveTo(o[0],o[1]),h[l]=o[l],t.lineTo(h[0],h[1]),h[l]=a[l],t.lineTo(h[0],h[1]),t.lineTo(a[0],a[1]);for(var d=1;dm.x)||(_-=Math.PI);var S=b?"left":"right",M=s.getModel("label"),I=M.get("rotate"),T=I*(Math.PI/180),C=y.getTextContent();C&&(y.setTextConfig({position:M.get("position")||S,rotation:null==I?-_:T,origin:"center"}),C.setStyle("verticalAlign","middle"))}var D=s.get(["emphasis","focus"]),A="relative"===D?vt(a.getAncestorsIndices(),a.getDescendantIndices()):"ancestor"===D?a.getAncestorsIndices():"descendant"===D?a.getDescendantIndices():null;A&&(zl(n).focus=A),function(t,e,n,i,r,o,a,s){var l=e.getModel(),u=t.get("edgeShape"),c=t.get("layout"),h=t.getOrient(),d=t.get(["lineStyle","curveness"]),p=t.get("edgeForkPosition"),f=l.getModel("lineStyle").getLineStyle(),g=i.__edge;if("curve"===u)e.parentNode&&e.parentNode!==n&&(g||(g=i.__edge=new Oc({shape:Tk(c,h,d,r,r)})),th(g,{shape:Tk(c,h,d,o,a)},t));else if("polyline"===u)if("orthogonal"===c){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(X(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 Vk(t){for(var e=[];t;)(t=t.parentNode)&&e.push(t);return e.reverse()}function Gk(t,e){return P(Vk(t),e)>=0}function Fk(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 Wk=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 wd(n,this,this.ecModel),r=Ek.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 Ty("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=Fk(i,this),n.collapsed=!i.isExpand,n},e.type="series.tree",e.layoutMode="box",e.defaultOption={z:2,coordinateSystemUsage:"box",left:"12%",top:"12%",right:"12%",bottom:"12%",layout:"orthogonal",edgeShape:"curve",edgeForkPosition:"50%",roam:!1,roamTrigger:"global",nodeScaleRatio:.4,center:null,zoom:1,orient:"LR",symbol:"emptyCircle",symbolSize:7,expandAndCollapse:!0,initialTreeDepth:2,lineStyle:{color:tf.color.borderTint,width:1.5,curveness:.5},itemStyle:{color:"lightsteelblue",borderWidth:1.5},label:{show:!0},animationEasing:"linear",animationDuration:700,animationDurationUpdate:500},e}(Wy);function Hk(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 Uk(t,e){t.eachSeriesByType("tree",(function(t){!function(t,e){var n=Xp(t,e).refContainer,i=Hp(t.getBoxLayoutParams(),n);t.layoutInfo=i;var r=t.get("layout"),o=0,a=0,s=null;"radial"===r?(o=2*Math.PI,a=Math.min(i.height,i.width)/2,s=hk((function(t,e){return(t.parentNode===e.parentNode?1:2)/t.depth}))):(o=i.width,a=i.height,s=hk());var l=t.getData().tree.root,u=l.children[0];if(u){!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)}}(l),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>d.depth&&(d=t)}));var p=c===h?1:s(c,h)/2,f=p-c.getLayout().x,g=0,y=0,v=0,m=0;if("radial"===r)g=o/(h.getLayout().x+p+f),y=a/(d.depth-1||1),Hk(u,(function(t){v=(t.getLayout().x+f)*g,m=(t.depth-1)*y;var e=dk(v,m);t.setLayout({x:e.x,y:e.y,rawX:v,rawY:m},!0)}));else{var x=t.getOrient();"RL"===x||"LR"===x?(y=a/(h.getLayout().x+p+f),g=o/(d.depth-1||1),Hk(u,(function(t){m=(t.getLayout().x+f)*y,v="LR"===x?(t.depth-1)*g:o-(t.depth-1)*g,t.setLayout({x:v,y:m},!0)}))):"TB"!==x&&"BT"!==x||(g=o/(h.getLayout().x+p+f),y=a/(d.depth-1||1),Hk(u,(function(t){v=(t.getLayout().x+f)*g,m="TB"===x?(t.depth-1)*y:a-(t.depth-1)*y,t.setLayout({x:v,y:m},!0)})))}}}(t,e)}))}function Yk(t){t.eachSeriesByType("tree",(function(t){var e=t.getData();e.tree.eachNode((function(t){var n=t.getModel().getModel("itemStyle").getItemStyle();A(e.ensureUniqueItemVisual(t.dataIndex,"style"),n)}))}))}var Xk=["treemapZoomToNode","treemapRender","treemapMove"];function Zk(t){var e=t.getData().tree,n={};e.eachNode((function(e){for(var i=e;i&&i.depth>1;)i=i.parentNode;var r=Nf(t.ecModel,i.name||i.dataIndex+"",n);e.setVisual("decal",r)}))}var jk=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};qk(n);var i=t.levels||[],r=this.designatedVisualItemStyle={},o=new wd({itemStyle:r},this,e);i=t.levels=function(t,e){var n,i,r=qo(e.get("color")),o=qo(e.get(["aria","decal","decals"]));if(!r)return;t=t||[],z(t,(function(t){var e=new wd(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);var a=E(i||[],(function(t){return new wd(t,o,e)}),this),s=Ek.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 Ty("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=Fk(i,this),n.treePathInfo=n.treeAncestors,n},e.prototype.setLayoutInfo=function(t){this.layoutInfo=this.layoutInfo||{},A(this.layoutInfo,t)},e.prototype.mapIdToIndex=function(t){var e=this._idIndexMap;e||(e=this._idIndexMap=yt(),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(){Zk(this)},e.type="series.treemap",e.layoutMode="box",e.defaultOption={progressive:0,coordinateSystemUsage:"box",left:tf.size.l,top:tf.size.xxxl,right:tf.size.l,bottom:tf.size.xxxl,sort:!0,clipWindow:"origin",squareRatio:.5*(1+Math.sqrt(5)),leafDepth:null,drillDownIcon:"▶",zoomToNodeRatio:.1024,scaleLimit:{max:5,min:.2},roam:!0,roamTrigger:"global",nodeClick:"zoomToNode",animation:!0,animationDurationUpdate:900,animationEasing:"quinticInOut",breadcrumb:{show:!0,height:22,left:"center",bottom:tf.size.m,emptyItemWidth:25,itemStyle:{color:tf.color.backgroundShade,textStyle:{color:tf.color.secondary}},emphasis:{itemStyle:{color:tf.color.background}}},label:{show:!0,distance:0,padding:5,position:"inside",color:tf.color.neutral00,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:tf.color.neutral00,borderColorSaturation:null},emphasis:{upperLabel:{show:!0,position:[0,"50%"],overflow:"truncate",verticalAlign:"middle"}},visualDimension:0,visualMin:null,visualMax:null,color:[],colorAlpha:null,colorSaturation:null,colorMappingBy:"index",visibleMin:10,childrenVisibleMin:null,levels:[]},e}(Wy);function qk(t){var e=0;z(t.children,(function(t){qk(t);var n=t.value;U(n)&&(n=n[0]),e+=n}));var n=t.value;U(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=e),n<0&&(n=0),U(t.value)?t.value[0]=n:t.value=n}var Kk=function(){function t(t){this.group=new to,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=r.getModel("emphasis"),l=a.getModel("textStyle"),u=s.getModel(["itemStyle","textStyle"]),c=Xp(t,e).refContainer,h={left:r.get("left"),right:r.get("right"),top:r.get("top"),bottom:r.get("bottom")},d={emptyItemWidth:r.get("emptyItemWidth"),totalWidth:0,renderList:[]},p=Hp(h,c);this._prepare(n,d,l),this._renderContent(t,d,p,a,s,l,u,i),Zp(o,h,c)}},t.prototype._prepare=function(t,e,n){for(var i=t;i;i=i.parentNode){var r=ia(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,o,a,s){for(var l=0,u=e.emptyItemWidth,c=t.get(["breadcrumb","height"]),h=e.totalWidth,d=e.renderList,p=r.getModel("itemStyle").getItemStyle(),f=d.length-1;f>=0;f--){var g=d[f],y=g.node,v=g.width,m=g.text;h>n.width&&(h-=v-u,v=u,m=null);var x=new Mc({shape:{points:$k(l,0,v,c,f===d.length-1,0===f)},style:k(i.getItemStyle(),{lineJoin:"bevel"}),textContent:new Sl({style:Qh(o,{text:m})}),textConfig:{position:"inside"},z2:1e5,onclick:H(s,y)});x.disableLabelAnimation=!0,x.getTextContent().ensureState("emphasis").style=Qh(a,{text:m}),x.ensureState("emphasis").style=p,Tu(x,r.get("focus"),r.get("blurScope"),r.get("disabled")),this.group.add(x),Jk(x,t,y),l+=v+8}},t.prototype.remove=function(){this.group.removeAll()},t}();function $k(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 Jk(t,e,n){zl(t).eventData={componentType:"series",componentSubType:"treemap",componentIndex:e.componentIndex,seriesIndex:e.seriesIndex,seriesName:e.name,seriesType:"treemap",selfType:"breadcrumb",nodeData:{dataIndex:n&&n.dataIndex,name:n&&n.name},treePathInfo:n&&Fk(n,e)}}var Qk=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,i=t.scale;if("animating"!==this._state){var r=this.seriesModel.getData().tree.root;if(!r)return;var o=r.getLayout();if(!o)return;var a,s=new He(o.x,o.y,o.width,o.height),l=this._controllerHost;a=l.zoomLimit;var u=l.zoom=l.zoom||1;if(u*=i,a){var c=a.min||0,h=a.max||1/0;u=Math.max(Math.min(h,u),c)}var d=u/l.zoom;l.zoom=u;var p=this.seriesModel.layoutInfo,f=[1,0,0,1,0,0];Se(f,f,[-(e-=p.x),-(n-=p.y)]),Ie(f,f,[d,d]),Se(f,f,[e,n]),s.applyTransform(f),this.api.dispatchAction({type:"treemapRender",from:this.uid,seriesId:this.seriesModel.id,rootRect:{x:s.x,y:s.y,width:s.width,height:s.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&&Sp(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 Kk(this.group))).render(t,e,n.node,(function(e){"animating"!==i._state&&(Gk(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}(tv);var lL=z,uL=q,cL=-1,hL=function(){function t(e){var n=e.mappingMethod,i=e.type,r=this.option=T(e);this.type=i,this.mappingMethod=n,this._normalizeData=bL[n];var o=t.visualHandlers[i];this.applyVisual=o.applyVisual,this.getColorMapper=o.getColorMapper,this._normalizedToVisual=o._normalizedToVisual[n],"piecewise"===n?(dL(r),function(t){var e=t.pieceList;t.hasSpecialVisual=!1,z(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(lL(e,(function(t,e){n[t]=e})),!U(i)){var r=[];q(i)?lL(i,(function(t,e){var i=n[e];r[null!=i?i:cL]=t})):r[-1]=i,i=_L(t,r)}for(var o=e.length-1;o>=0;o--)null==i[o]&&(delete n[e[o]],e.pop())}(r):dL(r,!0):(lt("linear"!==n||r.dataExtent),dL(r))}return t.prototype.mapValueToVisual=function(t){var e=this._normalizeData(t);return this._normalizedToVisual(e,t)},t.prototype.getNormalizer=function(){return W(this._normalizeData,this)},t.listVisualTypes=function(){return F(t.visualHandlers)},t.isValidType=function(e){return t.visualHandlers.hasOwnProperty(e)},t.eachVisual=function(t,e,n){q(t)?z(t,e,n):e.call(n,t)},t.mapVisual=function(e,n,i){var r,o=U(e)?[]:q(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&&lL(t.visualHandlers,(function(t,r){e.hasOwnProperty(r)&&(i[r]=e[r],n=!0)})),n?i:null},t.prepareVisualTypes=function(t){if(U(t))t=t.slice();else{if(!uL(t))return[];var e=[];lL(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 c=e.get("colorMappingBy"),h={type:a.name,dataExtent:u,visual:a.range};"color"!==h.type||"index"!==c&&"id"!==c?h.mappingMethod="linear":(h.mappingMethod="category",h.loop=!0);var d=new hL(h);return SL(d).drColorMappingBy=c,d}(0,r,o,0,u,p);z(p,(function(t,e){if(t.depth>=n.length||t===n[t.depth]){var o=function(t,e,n,i,r,o){var a=A({},e);if(r){var s=r.type,l="color"===s&&SL(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);IL(t,o,n,i)}}))}else s=TL(u),c.fill=s}}function TL(t){var e=CL(t,"color");if(e){var n=CL(t,"colorAlpha"),i=CL(t,"colorSaturation");return i&&(e=di(e,null,null,i)),n&&(e=pi(e,n)),e}}function CL(t,e){var n=t[e];if(null!=n&&"none"!==n)return n}function DL(t,e){var n=t.get(e);return U(n)&&n.length?{name:e,range:n}:null}var AL=Math.max,kL=Math.min,LL=it,PL=z,OL=["itemStyle","borderWidth"],RL=["itemStyle","gapWidth"],NL=["upperLabel","show"],zL=["upperLabel","height"],EL={seriesType:"treemap",reset:function(t,e,n,i){var r=t.option,o=Xp(t,n).refContainer,a=Hp(t.getBoxLayoutParams(),o),s=r.size||[],l=yo(LL(a.width,s[0]),o.width),u=yo(LL(a.height,s[1]),o.height),c=i&&i.type,h=Bk(i,["treemapZoomToNode","treemapRootToNode"],t),d="treemapRender"===c||"treemapMove"===c?i.rootRect:null,p=t.getViewRoot(),f=Vk(p);if("treemapMove"!==c){var g="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 c=0,h=o.children,d=0,p=h.length;dIo&&(u=Io),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?AL(u*i/l,l/(u*r)):1/0}function GL(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]],c=e?t.area/e:0;(r||c>n[l[a]])&&(c=n[l[a]]);for(var h=0,d=t.length;hi&&(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 _=v[0]<0?-1:1;if("start"!==i.__position&&"end"!==i.__position){var b=-Math.atan2(v[1],v[0]);u[0].8?"left":c[0]<-.8?"right":"center",d=c[1]>.8?"top":c[1]<-.8?"bottom":"middle";break;case"start":i.x=-c[0]*f+l[0],i.y=-c[1]*g+l[1],h=c[0]>.8?"right":c[0]<-.8?"left":"center",d=c[1]>.8?"bottom":c[1]<-.8?"top":"middle";break;case"insideStartTop":case"insideStart":case"insideStartBottom":i.x=f*_+l[0],i.y=l[1]+w,h=v[0]<0?"right":"left",i.originX=-f*_,i.originY=-w;break;case"insideMiddleTop":case"insideMiddle":case"insideMiddleBottom":case"middle":i.x=x[0],i.y=x[1]+w,h="center",i.originY=-w;break;case"insideEndTop":case"insideEnd":case"insideEndBottom":i.x=-f*_+u[0],i.y=u[1]+w,h=v[0]>=0?"right":"left",i.originX=f*_,i.originY=-w}i.scaleX=i.scaleY=r,i.setStyle({verticalAlign:i.__verticalAlign||d,align:i.__align||h})}}}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}(to),IP=function(){function t(t){this.group=new to,this._LineCtor=t||MP}return t.prototype.updateData=function(t){var e=this;this._progressiveEls=null;var n=this,i=n.group,r=n._lineData;n._lineData=t,r||i.removeAll();var o=TP(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=TP(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)}this._progressiveEls=[];for(var i=t.start;i=0?i+=u:i-=u:f>=0?i-=u:i+=u}return i}function zP(t,e){var n=[],i=Bn,r=[[],[],[]],o=[[],[]],a=[];e/=2,t.eachEdge((function(t,s){var l=t.getLayout(),u=t.getVisual("fromSymbol"),c=t.getVisual("toSymbol");l.__original||(l.__original=[Ct(l[0]),Ct(l[1])],l[2]&&l.__original.push(Ct(l[2])));var h=l.__original;if(null!=l[2]){if(Tt(r[0],h[0]),Tt(r[1],h[2]),Tt(r[2],h[1]),u&&"none"!==u){var d=rP(t.node1),p=NP(r,h[0],d*e);i(r[0][0],r[1][0],r[2][0],p,n),r[0][0]=n[3],r[1][0]=n[4],i(r[0][1],r[1][1],r[2][1],p,n),r[0][1]=n[3],r[1][1]=n[4]}if(c&&"none"!==c){d=rP(t.node2),p=NP(r,h[1],d*e);i(r[0][0],r[1][0],r[2][0],p,n),r[1][0]=n[1],r[2][0]=n[2],i(r[0][1],r[1][1],r[2][1],p,n),r[1][1]=n[1],r[2][1]=n[2]}Tt(l[0],r[0]),Tt(l[1],r[2]),Tt(l[2],r[1])}else{if(Tt(o[0],h[0]),Tt(o[1],h[1]),Lt(a,o[1],o[0]),Et(a,a),u&&"none"!==u){d=rP(t.node1);kt(o[0],o[0],a,d*e)}if(c&&"none"!==c){d=rP(t.node2);kt(o[1],o[1],a,-d*e)}Tt(l[0],o[0]),Tt(l[1],o[1])}}))}var EP=sa();function BP(t,e){t&&(EP(t).bridge=e)}function VP(t){return"view"===t.type}var GP=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 uI,i=new IP,r=this.group,o=new to;this._controller=new LD(e.getZr()),this._controllerHost={target:o},o.add(n.group),o.add(i.group),r.add(o),this._symbolDraw=n,this._lineDraw=i,this._mainGroup=o,this._firstRender=!0},e.prototype.render=function(t,e,n){var i=this,r=t.coordinateSystem,o=!1;this._model=t,this._api=n,this._active=!0;var a=this._getThumbnailInfo();a&&a.bridge.reset(n);var s=this._symbolDraw,l=this._lineDraw;if(VP(r)){var u={x:r.x,y:r.y,scaleX:r.scaleX,scaleY:r.scaleY};this._firstRender?this._mainGroup.attr(u):th(this._mainGroup,u,t)}zP(t.getGraph(),iP(t));var c=t.getData();s.updateData(c);var h=t.getEdgeData();l.updateData(h),this._updateNodeAndLinkScale(),this._updateController(null,t,n),clearTimeout(this._layoutTimeout);var d=t.forceLayout,p=t.get(["force","layoutAnimation"]);d&&(o=!0,this._startForceLayoutIteration(d,n,p));var f=t.get("layout");c.graph.eachNode((function(e){var r=e.dataIndex,o=e.getGraphicEl(),a=e.getModel();if(o){o.off("drag").off("dragend");var s=a.get("draggable");s&&o.on("drag",(function(a){switch(f){case"force":d.warmUp(),!i._layouting&&i._startForceLayoutIteration(d,n,p),d.setFixed(r),c.setItemLayout(r,[o.x,o.y]);break;case"circular":c.setItemLayout(r,[o.x,o.y]),e.setLayout({fixed:!0},!0),sP(t,"symbolSize",e,[a.offsetX,a.offsetY]),i.updateLayout(t);break;default:c.setItemLayout(r,[o.x,o.y]),eP(t.getGraph(),t),i.updateLayout(t)}})).on("dragend",(function(){d&&d.setUnfixed(r)})),o.setDraggable(s,!!a.get("cursor")),"adjacency"===a.get(["emphasis","focus"])&&(zl(o).focus=e.getAdjacentDataIndices())}})),c.graph.eachEdge((function(t){var e=t.getGraphicEl(),n=t.getModel().get(["emphasis","focus"]);e&&"adjacency"===n&&(zl(e).focus={edge:[t.dataIndex],node:[t.node1.dataIndex,t.node2.dataIndex]})}));var g="circular"===t.get("layout")&&t.get(["circular","rotateLabel"]),y=c.getLayout("cx"),v=c.getLayout("cy");c.graph.eachNode((function(t){uP(t,g,y,v)})),this._firstRender=!1,o||this._renderThumbnail(t,n,this._symbolDraw,this._lineDraw)},e.prototype.dispose=function(){this.remove(),this._controller&&this._controller.dispose(),this._controllerHost=null},e.prototype._startForceLayoutIteration=function(t,e,n){var i=this,r=!1;!function o(){t.step((function(t){i.updateLayout(i._model),!t&&r||(r=!0,i._renderThumbnail(i._model,e,i._symbolDraw,i._lineDraw)),(i._layouting=!t)&&(n?i._layoutTimeout=setTimeout(o,16):o())}))}()},e.prototype._updateController=function(t,e,n){var i=this._controller,r=this._controllerHost,o=e.coordinateSystem;VP(o)?(i.enable(e.get("roam"),{api:n,zInfo:{component:e},triggerInfo:{roamTrigger:e.get("roamTrigger"),isInSelf:function(t,e,n){return o.containPoint([e,n])},isInClip:function(e,n,i){return!t||t.contain(n,i)}}}),r.zoomLimit=e.get("scaleLimit"),r.zoom=o.getZoom(),i.off("pan").off("zoom").on("pan",(function(t){n.dispatchAction({seriesId:e.id,type:"graphRoam",dx:t.dx,dy:t.dy})})).on("zoom",(function(t){n.dispatchAction({seriesId:e.id,type:"graphRoam",zoom:t.scale,originX:t.originX,originY:t.originY})}))):i.disable()},e.prototype.updateViewOnPan=function(t,e,n){this._active&&(FD(this._controllerHost,n.dx,n.dy),this._updateThumbnailWindow())},e.prototype.updateViewOnZoom=function(t,e,n){this._active&&(WD(this._controllerHost,n.zoom,n.originX,n.originY),this._updateNodeAndLinkScale(),zP(t.getGraph(),iP(t)),this._lineDraw.updateLayout(),e.updateLabelLayout(),this._updateThumbnailWindow())},e.prototype._updateNodeAndLinkScale=function(){var t=this._model,e=t.getData(),n=iP(t);e.eachItemGraphicEl((function(t,e){t&&t.setSymbolScale(n)}))},e.prototype.updateLayout=function(t){this._active&&(zP(t.getGraph(),iP(t)),this._symbolDraw.updateLayout(),this._lineDraw.updateLayout())},e.prototype.remove=function(){this._active=!1,clearTimeout(this._layoutTimeout),this._layouting=!1,this._layoutTimeout=null,this._symbolDraw&&this._symbolDraw.remove(),this._lineDraw&&this._lineDraw.remove(),this._controller&&this._controller.disable()},e.prototype._getThumbnailInfo=function(){var t=this._model,e=t.coordinateSystem;if("view"===e.type){var n=function(t){if(t)return EP(t).bridge}(t);if(n)return{bridge:n,coordSys:e}}},e.prototype._updateThumbnailWindow=function(){var t=this._getThumbnailInfo();t&&t.bridge.updateWindow(t.coordSys.transform,this._api)},e.prototype._renderThumbnail=function(t,e,n,i){var r=this._getThumbnailInfo();if(r){var o=new to,a=n.group.children(),s=i.group.children(),l=new to,u=new to;o.add(u),o.add(l);for(var c=0;c=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 HP||(e=this._nodesMap[FP(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&&!t.hasKey(p)&&(t.set(p,!0),o.push(d.node1))}for(s=0;s=0&&!t.hasKey(m)&&(t.set(m,!0),a.push(v.node2))}}}return{edge:t.keys(),node:e.keys()}},t}(),UP=function(){function t(t,e,n){this.dataIndex=-1,this.node1=t,this.node2=e,this.dataIndex=null==n?-1:n}return t.prototype.getModel=function(t){if(!(this.dataIndex<0))return this.hostGraph.edgeData.getItemModel(this.dataIndex).getModel(t)},t.prototype.getAdjacentDataIndices=function(){return{edge:[this.dataIndex],node:[this.node1.dataIndex,this.node2.dataIndex]}},t.prototype.getTrajectoryDataIndices=function(){var t=yt(),e=yt();t.set(this.dataIndex,!0);for(var n=[this.node1],i=[this.node2],r=0;r=0&&!t.hasKey(u)&&(t.set(u,!0),n.push(l.node1))}for(r=0;r=0&&!t.hasKey(d)&&(t.set(d,!0),i.push(h.node2))}return{edge:t.keys(),node:e.keys()}},t}();function YP(t,e){return{getValue:function(n){var i=this[t][e];return i.getStore().get(i.getDimensionIndex(n||"value"),this.dataIndex)},setVisual:function(n,i){this.dataIndex>=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 XP(t,e,n,i,r){for(var o=new WP(i),a=0;a "+d)),u++)}var p,f=n.get("coordinateSystem");if("cartesian2d"===f||"polar"===f||"matrix"===f)p=Z_(t,n);else{var g=Tp.get(f),y=g&&g.dimensions||[];P(y,"value")<0&&y.concat(["value"]);var v=V_(t,{coordDimensions:y,encodeDefine:n.getEncode()}).dimensions;(p=new B_(v,n)).initData(t)}var m=new B_(["value"],n);return m.initData(l,s),r&&r(p,m),Dk({mainData:p,struct:o,structAttr:"graph",datas:{node:p,edge:m},datasAttr:{node:"data",edge:"edgeData"}}),o.update(),o}R(HP,YP("hostGraph","data")),R(UP,YP("hostGraph","edgeData"));var ZP=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 CT(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),Ko(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){jL(n=this)&&(n.__curvenessList=[],n.__edgeMap={},qL(n));var a=XP(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=wd.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 z(a.edges,(function(t){!function(t,e,n,i){if(jL(n)){var r=KL(t,e,n),o=n.__edgeMap,a=o[$L(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),Ty("nameValue",{name:l.join(" > "),value:r.value,noValue:null==r.value})}return By({series:this,dataIndex:t,multipleSeries:e})},e.prototype._updateCategoriesData=function(){var t=E(this.option.categories||[],(function(t){return null!=t.value?t:A({value:0},t)})),e=new B_(["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={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:tf.color.neutral50,width:1,opacity:.5},emphasis:{scale:!0,label:{show:!0}},select:{itemStyle:{borderColor:tf.color.primary}}},e}(Wy);var jP=function(t){function e(e,n,i){var r=t.call(this)||this;zl(r).dataType="node",r.z2=2;var o=new Sl;return r.setTextContent(o),r.updateData(e,n,i,!0),r}return n(e,t),e.prototype.updateData=function(t,e,n,i){var r=this,o=t.graph.getNodeByIndex(e),a=t.hostModel,s=o.getModel(),l=s.getModel("emphasis"),u=t.getItemLayout(e),c=A(YI(s.getModel("itemStyle"),u,!0),u),h=this;if(isNaN(c.startAngle))h.setShape(c);else{i?h.setShape(c):th(h,{shape:c},a,e);var d=A(YI(s.getModel("itemStyle"),u,!0),u);r.setShape(d),r.useStyle(t.getItemVisual(e,"style")),ku(r,s),this._updateLabel(a,s,o),t.setItemGraphicEl(e,h),ku(h,s,"itemStyle");var p=l.get("focus");Tu(this,"adjacency"===p?o.getAdjacentDataIndices():p,l.get("blurScope"),l.get("disabled"))}},e.prototype._updateLabel=function(t,e,n){var i=this.getTextContent(),r=n.getLayout(),o=(r.startAngle+r.endAngle)/2,a=Math.cos(o),s=Math.sin(o),l=e.getModel("label");i.ignore=!l.get("show");var u=Jh(e),c=n.getVisual("style");$h(i,u,{labelFetcher:{getFormattedLabel:function(n,i,r,o,a,s){return t.getFormattedLabel(n,i,"node",o,ot(a,u.normal&&u.normal.get("formatter"),e.get("name")),s)}},labelDataIndex:n.dataIndex,defaultText:n.dataIndex+"",inheritColor:c.fill,defaultOpacity:c.opacity,defaultOutsidePosition:"startArc"});var h,d=l.get("position")||"outside",p=l.get("distance")||0;h="outside"===d?r.r+p:(r.r+r.r0)/2,this.textConfig={inside:"outside"!==d};var f="outside"!==d?l.get("align")||"center":a>0?"left":"right",g="outside"!==d?l.get("verticalAlign")||"middle":s>0?"top":"bottom";i.attr({x:a*h+r.cx,y:s*h+r.cy,rotation:0,style:{align:f,verticalAlign:g}})},e}(xc),qP=function(t){function e(e,n,i,r){var o=t.call(this)||this;return zl(o).dataType="edge",o.updateData(e,n,i,r,!0),o}return n(e,t),e.prototype.buildPath=function(t,e){t.moveTo(e.s1[0],e.s1[1]);var n=.7,i=e.clockwise;t.arc(e.cx,e.cy,e.r,e.sStartAngle,e.sEndAngle,!i),t.bezierCurveTo((e.cx-e.s2[0])*n+e.s2[0],(e.cy-e.s2[1])*n+e.s2[1],(e.cx-e.t1[0])*n+e.t1[0],(e.cy-e.t1[1])*n+e.t1[1],e.t1[0],e.t1[1]),t.arc(e.cx,e.cy,e.r,e.tStartAngle,e.tEndAngle,!i),t.bezierCurveTo((e.cx-e.t2[0])*n+e.t2[0],(e.cy-e.t2[1])*n+e.t2[1],(e.cx-e.s1[0])*n+e.s1[0],(e.cy-e.s1[1])*n+e.s1[1],e.s1[0],e.s1[1]),t.closePath()},e.prototype.updateData=function(t,e,n,i,r){var o=t.hostModel,a=e.graph.getEdgeByIndex(n),s=a.getLayout(),l=a.node1.getModel(),u=e.getItemModel(a.dataIndex),c=u.getModel("lineStyle"),h=u.getModel("emphasis"),d=h.get("focus"),p=A(YI(l.getModel("itemStyle"),s,!0),s),f=this;isNaN(p.sStartAngle)||isNaN(p.tStartAngle)?f.setShape(p):(r?(f.setShape(p),KP(f,a,t,c)):(ah(f),KP(f,a,t,c),th(f,{shape:p},o,n)),Tu(this,"adjacency"===d?a.getAdjacentDataIndices():d,h.get("blurScope"),h.get("disabled")),ku(f,u,"lineStyle"),e.setItemGraphicEl(a.dataIndex,f))},e}(sl);function KP(t,e,n,i){var r=e.node1,o=e.node2,a=t.style;switch(t.setStyle(i.getLineStyle()),i.get("color")){case"source":a.fill=n.getItemVisual(r.dataIndex,"style").fill,a.decal=r.getVisual("style").decal;break;case"target":a.fill=n.getItemVisual(o.dataIndex,"style").fill,a.decal=o.getVisual("style").decal;break;case"gradient":var s=n.getItemVisual(r.dataIndex,"style").fill,l=n.getItemVisual(o.dataIndex,"style").fill;if(X(s)&&X(l)){var u=t.shape,c=(u.s1[0]+u.s2[0])/2,h=(u.s1[1]+u.s2[1])/2,d=(u.t1[0]+u.t2[0])/2,p=(u.t1[1]+u.t2[1])/2;a.fill=new Bc(c,h,d,p,[{offset:0,color:s},{offset:1,color:l}],!0)}}}var $P=Math.PI/180,JP=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){},e.prototype.render=function(t,e,n){var i=t.getData(),r=this._data,o=this.group,a=-t.get("startAngle")*$P;if(i.diff(r).add((function(t){if(i.getItemLayout(t)){var e=new jP(i,t,a);zl(e).dataIndex=t,o.add(e)}})).update((function(e,n){var s=r.getItemGraphicEl(n);i.getItemLayout(e)?(s?s.updateData(i,e,a):s=new jP(i,e,a),o.add(s)):s&&oh(s,t,n)})).remove((function(e){var n=r.getItemGraphicEl(e);n&&oh(n,t,e)})).execute(),!r){var s=t.get("center");this.group.scaleX=.01,this.group.scaleY=.01,this.group.originX=yo(s[0],n.getWidth()),this.group.originY=yo(s[1],n.getHeight()),eh(this.group,{scaleX:1,scaleY:1},t)}this._data=i,this.renderEdges(t,a)},e.prototype.renderEdges=function(t,e){var n=t.getData(),i=t.getEdgeData(),r=this._edgeData,o=this.group;i.diff(r).add((function(t){var r=new qP(n,i,t,e);zl(r).dataIndex=t,o.add(r)})).update((function(t,a){var s=r.getItemGraphicEl(a);s.updateData(n,i,t,e),o.add(s)})).remove((function(e){var n=r.getItemGraphicEl(e);n&&oh(n,t,e)})).execute(),this._edgeData=i},e.prototype.dispose=function(){},e.type="chord",e}(tv),QP=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.fillDataTextStyle(e.edges||e.links),this.legendVisualProvider=new CT(W(this.getData,this),W(this.getRawData,this))},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),this.fillDataTextStyle(e.edges||e.links)},e.prototype.getInitialData=function(t,e){var n=t.edges||t.links||[],i=t.data||t.nodes||[];if(i&&n)return XP(i,n,this,!0,(function(t,e){var n=wd.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}))})).data},e.prototype.getGraph=function(){return this.getData().graph},e.prototype.getEdgeData=function(){return this.getGraph().edgeData},e.prototype.formatTooltip=function(t,e,n){var i=this.getDataParams(t,n);if("edge"===n){var r=this.getData(),o=r.graph.getEdgeByIndex(t),a=r.getName(o.node1.dataIndex),s=r.getName(o.node2.dataIndex),l=[];return null!=a&&l.push(a),null!=s&&l.push(s),Ty("nameValue",{name:l.join(" > "),value:i.value,noValue:null==i.value})}return Ty("nameValue",{name:i.name,value:i.value,noValue:null==i.value})},e.prototype.getDataParams=function(e,n){var i=t.prototype.getDataParams.call(this,e,n);if("node"===n){var r=this.getData(),o=this.getGraph().getNodeByIndex(e);if(null==i.name&&(i.name=r.getName(e)),null==i.value){var a=o.getLayout().value;i.value=a}}return i},e.type="series.chord",e.defaultOption={z:2,coordinateSystem:"none",legendHoverLink:!0,colorBy:"data",left:0,top:0,right:0,bottom:0,width:null,height:null,center:["50%","50%"],radius:["70%","80%"],clockwise:!0,startAngle:90,endAngle:"auto",minAngle:0,padAngle:3,itemStyle:{borderRadius:[0,0,5,5]},lineStyle:{width:0,color:"source",opacity:.2},label:{show:!0,position:"outside",distance:5},emphasis:{focus:"adjacency",lineStyle:{opacity:.5}}},e}(Wy),tO=Math.PI/180;function eO(t,e){t.eachSeriesByType("chord",(function(t){!function(t,e){var n=t.getData(),i=n.graph,r=t.getEdgeData();if(!r.count())return;var o=Wp(t,e),a=o.cx,s=o.cy,l=o.r,u=o.r0,c=Math.max((t.get("padAngle")||0)*tO,0),h=Math.max((t.get("minAngle")||0)*tO,0),d=-t.get("startAngle")*tO,p=d+2*Math.PI,f=t.get("clockwise"),g=f?1:-1,y=[d,p];Gs(y,!f);var v=y[0],m=y[1]-v,x=0===n.getSum("value")&&0===r.getSum("value"),_=[],b=0;i.eachEdge((function(t){var e=x?1:t.getValue("value");x&&(e>0||h)&&(b+=2);var n=t.node1.dataIndex,i=t.node2.dataIndex;_[n]=(_[n]||0)+e,_[i]=(_[i]||0)+e}));var w=0;if(i.eachNode((function(t){var e=t.getValue("value");isNaN(e)||(_[t.dataIndex]=Math.max(e,_[t.dataIndex]||0)),!x&&(_[t.dataIndex]>0||h)&&b++,w+=_[t.dataIndex]||0})),0===b||0===w)return;c*b>=Math.abs(m)&&(c=Math.max(0,(Math.abs(m)-h*b)/b));(c+h)*b>=Math.abs(m)&&(h=(Math.abs(m)-c*b)/b);var S=(m-c*b*g)/w,M=0,I=0,T=0;i.eachNode((function(t){var e=_[t.dataIndex]||0,n=S*(w?e:1)*g;Math.abs(n)I){var D=M/I;i.eachNode((function(t){var e=t.getLayout().angle;Math.abs(e)>=h?t.setLayout({angle:e*D,ratio:D},!0):t.setLayout({angle:h,ratio:0===h?1:e/h},!0)}))}else i.eachNode((function(t){if(!C){var e=t.getLayout().angle;e-Math.min(e/T,1)*Mh&&h>0){var n=C?1:Math.min(e/T,1),i=e-h,r=Math.min(i,Math.min(A,M*n));A-=r,t.setLayout({angle:e-r,ratio:(e-r)/e},!0)}else h>0&&t.setLayout({angle:h,ratio:0===e?1:h/e},!0)}}));var k=v,L=[];i.eachNode((function(t){var e=Math.max(t.getLayout().angle,h);t.setLayout({cx:a,cy:s,r0:u,r:l,startAngle:k,endAngle:k+e*g,clockwise:f},!0),L[t.dataIndex]=k,k+=(e+c)*g})),i.eachEdge((function(t){var e=x?1:t.getValue("value"),n=S*(w?e:1)*g,i=t.node1.dataIndex,r=L[i]||0,o=r+Math.abs((t.node1.getLayout().ratio||1)*n)*g,l=[a+u*Math.cos(r),s+u*Math.sin(r)],c=[a+u*Math.cos(o),s+u*Math.sin(o)],h=t.node2.dataIndex,d=L[h]||0,p=d+Math.abs((t.node2.getLayout().ratio||1)*n)*g,y=[a+u*Math.cos(d),s+u*Math.sin(d)],v=[a+u*Math.cos(p),s+u*Math.sin(p)];t.setLayout({s1:l,s2:c,sStartAngle:r,sEndAngle:o,t1:y,t2:v,tStartAngle:d,tEndAngle:p,cx:a,cy:s,r:u,value:e,clockwise:f}),L[i]=o,L[h]=p}))}(t,e)}))}var nO=function(){this.angle=0,this.width=10,this.r=10,this.x=0,this.y=0},iO=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 nO},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}(sl);function rO(t,e){var n=null==t?"":t+"";return e&&(X(e)?n=e.replace("{value}",n):Y(e)&&(n=e(t))),n}var oO=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:yo(n[0],e.getWidth()),cy:yo(n[1],e.getHeight()),r:yo(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){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"),c=u.get("roundCap")?WI:xc,h=u.get("show"),d=u.getModel("lineStyle"),p=d.get("width"),f=[s,l];Gs(f,!a);for(var g=(l=f[1])-(s=f[0]),y=s,v=[],m=0;h&&m=t&&(0===e?0:i[e-1][0])Math.PI/2&&(B+=Math.PI):"tangential"===E?B=-M-Math.PI/2:j(E)&&(B=E*Math.PI/180),0===B?h.add(new Sl({style:Qh(x,{text:O,x:N,y:z,verticalAlign:c<-.8?"top":c>.8?"bottom":"middle",align:u<-.4?"left":u>.4?"right":"center"},{inheritColor:R}),silent:!0})):h.add(new Sl({style:Qh(x,{text:O,x:N,y:z,verticalAlign:"middle",align:"center"},{inheritColor:R}),silent:!0,originX:N,originY:z,rotation:B}))}if(m.get("show")&&k!==_){P=(P=m.get("distance"))?P+l:l;for(var V=0;V<=b;V++){u=Math.cos(M),c=Math.sin(M);var G=new Ac({shape:{x1:u*(f-P)+d,y1:c*(f-P)+p,x2:u*(f-S-P)+d,y2:c*(f-S-P)+p},silent:!0,style:D});"auto"===D.stroke&&G.setStyle({stroke:i((k+V/b)/_)}),h.add(G),M+=T}M-=T}else M+=I}},e.prototype._renderPointer=function(t,e,n,i,r,o,a,s,l){var u=this.group,c=this._data,h=this._progressEls,d=[],p=t.get(["pointer","show"]),f=t.getModel("progress"),g=f.get("show"),y=t.getData(),v=y.mapDimension("value"),m=+t.get("min"),x=+t.get("max"),_=[m,x],b=[o,a];function w(e,n){var i,o=y.getItemModel(e).getModel("pointer"),a=yo(o.get("width"),r.r),s=yo(o.get("length"),r.r),l=t.get(["pointer","icon"]),u=o.get("offsetCenter"),c=yo(u[0],r.r),h=yo(u[1],r.r),d=o.get("keepAspect");return(i=l?hm(l,c-a/2,h-s,a,s,null,d):new iO({shape:{angle:-Math.PI/2,width:a,r:s,x:c,y:h}})).rotation=-(n+Math.PI/2),i.x=r.cx,i.y=r.cy,i}function S(t,e){var n=f.get("roundCap")?WI:xc,i=f.get("overlap"),a=i?f.get("width"):l/y.count(),u=i?r.r-a:r.r-(t+1)*a,c=i?r.r:r.r-t*a,h=new n({shape:{startAngle:o,endAngle:e,cx:r.cx,cy:r.cy,clockwise:s,r0:u,r:c}});return i&&(h.z2=go(y.get(v,t),[m,x],[100,0],!0)),h}(g||p)&&(y.diff(c).add((function(e){var n=y.get(v,e);if(p){var i=w(e,o);eh(i,{rotation:-((isNaN(+n)?b[0]:go(n,_,b,!0))+Math.PI/2)},t),u.add(i),y.setItemGraphicEl(e,i)}if(g){var r=S(e,o),a=f.get("clip");eh(r,{shape:{endAngle:go(n,_,b,a)}},t),u.add(r),El(t.seriesIndex,y.dataType,e,r),d[e]=r}})).update((function(e,n){var i=y.get(v,e);if(p){var r=c.getItemGraphicEl(n),a=r?r.rotation:o,s=w(e,a);s.rotation=a,th(s,{rotation:-((isNaN(+i)?b[0]:go(i,_,b,!0))+Math.PI/2)},t),u.add(s),y.setItemGraphicEl(e,s)}if(g){var l=h[n],m=S(e,l?l.shape.endAngle:o),x=f.get("clip");th(m,{shape:{endAngle:go(i,_,b,x)}},t),u.add(m),El(t.seriesIndex,y.dataType,e,m),d[e]=m}})).execute(),y.each((function(t){var e=y.getItemModel(t),n=e.getModel("emphasis"),r=n.get("focus"),o=n.get("blurScope"),a=n.get("disabled");if(p){var s=y.getItemGraphicEl(t),l=y.getItemVisual(t,"style"),u=l.fill;if(s instanceof dl){var c=s.style;s.useStyle(A({image:c.image,x:c.x,y:c.y,width:c.width,height:c.height},l))}else s.useStyle(l),"pointer"!==s.type&&s.setColor(u);s.setStyle(e.getModel(["pointer","itemStyle"]).getItemStyle()),"auto"===s.style.fill&&s.setStyle("fill",i(go(y.get(v,t),_,[0,1],!0))),s.z2EmphasisLift=0,ku(s,e),Tu(s,r,o,a)}if(g){var h=d[t];h.useStyle(y.getItemVisual(t,"style")),h.setStyle(e.getModel(["progress","itemStyle"]).getItemStyle()),h.z2EmphasisLift=0,ku(h,e),Tu(h,r,o,a)}})),this._progressEls=d)},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=hm(r,e.cx-i/2+yo(o[0],e.r),e.cy-i/2+yo(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"),c=new to,h=[],d=[],p=t.isAnimationEnabled(),f=t.get(["pointer","showAbove"]);a.diff(this._data).add((function(t){h[t]=new Sl({silent:!0}),d[t]=new Sl({silent:!0})})).update((function(t,e){h[t]=o._titleEls[e],d[t]=o._detailEls[e]})).execute(),a.each((function(e){var n=a.getItemModel(e),o=a.get(s,e),g=new to,y=i(go(o,[l,u],[0,1],!0)),v=n.getModel("title");if(v.get("show")){var m=v.get("offsetCenter"),x=r.cx+yo(m[0],r.r),_=r.cy+yo(m[1],r.r);(D=h[e]).attr({z2:f?0:2,style:Qh(v,{x:x,y:_,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+yo(w[0],r.r),M=r.cy+yo(w[1],r.r),I=yo(b.get("width"),r.r),T=yo(b.get("height"),r.r),C=t.get(["progress","show"])?a.getItemVisual(e,"style").fill:y,D=d[e],A=b.get("formatter");D.attr({z2:f?0:2,style:Qh(b,{x:S,y:M,text:rO(o,A),width:isNaN(I)?null:I,height:isNaN(T)?null:T,align:"center",verticalAlign:"middle"},{inheritColor:C})}),sd(D,{normal:b},o,(function(t){return rO(t,A)})),p&&ld(D,e,a,t,{getFormattedLabel:function(t,e,n,i,r,a){return rO(a?a.interpolatedValue:o,A)}}),g.add(D)}c.add(g)})),this.group.add(c),this._titleEls=h,this._detailEls=d},e.type="gauge",e}(tv),aO=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 IT(this,["value"])},e.type="series.gauge",e.defaultOption={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,tf.color.neutral10]],width:10}},progress:{show:!1,overlap:!0,width:10,roundCap:!1,clip:!0},splitLine:{show:!0,length:10,distance:10,lineStyle:{color:tf.color.axisTick,width:3,type:"solid"}},axisTick:{show:!0,splitNumber:5,length:6,distance:10,lineStyle:{color:tf.color.axisTickMinor,width:1,type:"solid"}},axisLabel:{show:!0,distance:15,color:tf.color.axisLabel,fontSize:12,rotate:0},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:tf.color.neutral00,borderWidth:0,borderColor:tf.color.theme[0]}},title:{show:!0,offsetCenter:[0,"20%"],color:tf.color.secondary,fontSize:16,valueAnimation:!1},detail:{show:!0,backgroundColor:tf.color.transparent,borderWidth:0,borderColor:tf.color.neutral40,width:100,height:null,padding:[5,10],offsetCenter:[0,"40%"],color:tf.color.primary,fontSize:30,fontWeight:"bold",lineHeight:30,valueAnimation:!1}},e}(Wy);var sO=["itemStyle","opacity"],lO=function(t){function e(e,n){var i=t.call(this)||this,r=i,o=new Tc,a=new Sl;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(sO);l=null==l?1:l,n||ah(i),i.useStyle(t.getItemVisual(e,"style")),i.style.lineJoin="round",n?(i.setShape({points:a.points}),i.style.opacity=0,eh(i,{style:{opacity:l}},r,e)):th(i,{style:{opacity:l},shape:{points:a.points}},r,e),ku(i,o),this._updateLabel(t,e),Tu(this,s.get("focus"),s.get("blurScope"),s.get("disabled"))},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,Jh(a),{labelFetcher:t.hostModel,labelDataIndex:e,defaultOpacity:l.opacity,defaultText:t.getName(e)},{normal:{align:s.textAlign,verticalAlign:s.verticalAlign}});var c="inherit"===a.getModel("label").get("color")?u:null;n.setTextConfig({local:!0,inside:!!s.inside,insideStroke:c,outsideFill:c});var h=s.linePoints;i.setShape({points:h}),n.textGuideLineConfig={anchor:h?new Ae(h[0][0],h[0][1]):null},th(r,{style:{x:s.x,y:s.y}},o,e),r.attr({rotation:s.rotation,originX:s.x,originY:s.y,z2:10}),dS(n,pS(a),{stroke:u})},e}(Mc),uO=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 lO(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){oh(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}(tv),cO=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 CT(W(this.getData,this),W(this.getRawData,this)),this._defaultLabelLine(e)},e.prototype.getInitialData=function(t,e){return IT(this,{coordDimensions:["value"],encodeDefaulter:H(Mf,this)})},e.prototype._defaultLabelLine=function(t){Ko(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={coordinateSystemUsage:"box",z:2,legendHoverLink:!0,colorBy:"data",left:80,top:60,right:80,bottom:65,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:tf.color.neutral00,borderWidth:1},emphasis:{label:{show:!0}},select:{itemStyle:{borderColor:tf.color.primary}}},e}(Wy);function hO(t,e){t.eachSeriesByType("funnel",(function(t){var n=t.getData(),i=n.mapDimension("value"),r=t.get("sort"),o=Xp(t,e),a=Hp(t.getBoxLayoutParams(),o.refContainer),s=t.get("orient"),l=a.width,u=a.height,c=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&&MO(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 MO(t,e){var n=t._model;return n.get("axisExpandable")&&n.get("axisExpandTriggerOn")===e}var IO=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&&C(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){z(["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=[];z(V(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={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}(Qp),TO=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}(Ww);function CO(t,e,n,i,r,o){t=t||0;var a=n[1]-n[0];if(null!=r&&(r=AO(r,[0,a])),null!=o&&(o=Math.max(o,null!=r?r:0)),"all"===i){var s=Math.abs(e[1]-e[0]);s=AO(s,[0,a]),r=o=AO(s,[r,o]),i=0}e[0]=AO(e[0],n),e[1]=AO(e[1],n);var l=DO(e,i);e[i]+=t;var u,c=r||0,h=n.slice();return l.sign<0?h[0]+=c:h[1]-=c,e[i]=AO(e[i],h),u=DO(e,i),null!=r&&(u.sign!==l.sign||u.spano&&(e[1-i]=e[i]+u.sign*o),e}function DO(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 AO(t,e){return Math.min(null!=e[1]?e[1]:1/0,Math.max(null!=e[0]?e[0]:-1/0,t))}var kO=z,LO=Math.min,PO=Math.max,OO=Math.floor,RO=Math.ceil,NO=mo,zO=Math.PI,EO=function(){function t(t,e,n){this.type="parallel",this._axesMap=yt(),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;kO(i,(function(t,n){var i=r[n],o=e.getComponent("parallelAxis",i),a=this._axesMap.set(t,new TO(t,Zb(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();kO(this.dimensions,(function(t){var e=this._axesMap.get(t);e.scale.unionExtentFromData(i,i.mapDimension(t)),Xb(e.scale,e.model)}),this)}}),this)},t.prototype.resize=function(t,e){var n=Xp(t,e).refContainer;this._rect=Hp(t.getBoxLayoutParams(),n),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,c=BO(e.get("axisExpandWidth"),l),h=BO(e.get("axisExpandCount")||0,[0,u]),d=e.get("axisExpandable")&&u>3&&u>h&&h>1&&c>0&&s>0,p=e.get("axisExpandWindow");p?(t=BO(p[1]-p[0],l),p[1]=p[0]+t):(t=BO(c*(h-1),l),(p=[c*(e.get("axisExpandCenter")||OO(u/2))-t/2])[1]=p[0]+t);var f=(s-t)/(u-h);f<3&&(f=0);var g=[OO(NO(p[0]/c,1))+1,RO(NO(p[1]/c,1))-1],y=f/c*p[0];return{layout:o,pixelDimIndex:a,layoutBase:n[i[a]],layoutLength:s,axisBase:n[i[1-a]],axisLength:n[r[1-a]],axisExpandable:d,axisExpandWidth:c,axisCollapseWidth:f,axisExpandWindow:p,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])})),kO(n,(function(e,n){var o=(i.axisExpandable?GO:VO)(n,i),a={horizontal:{x:o.position,y:i.axisLength},vertical:{x:0,y:o.position}},s={horizontal:zO/2,vertical:0},l=[a[r].x+t.x,a[r].y+t.y],u=s[r],c=[1,0,0,1,0,0];Me(c,c,u),Se(c,c,l),this._axesLayout[e]={position:l,rotation:u,transform:c,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=[];z(o,(function(e){a.push(t.mapDimension(e)),s.push(r.get(e).model)}));for(var l=this.hasAxisBrushed(),u=n;ur*(1-c[0])?(l="jump",a=s-r*(1-c[2])):(a=s-r*c[1])>=0&&(a=s-r*(1-c[1]))<=0&&(a=0),(a*=e.axisExpandWidth/u)?CO(a,i,o,"all"):l="none";else{var d=i[1]-i[0];(i=[PO(0,o[1]*s/d-d/2)])[1]=LO(o[1],i[0]+d),i[0]=i[1]-d}return{axisExpandWindow:i,behavior:l}},t}();function BO(t,e){return LO(PO(t,e[0]),e[1])}function VO(t,e){var n=e.layoutLength/(e.axisCount-1);return{position:n*t,axisNameAvailableWidth:n,axisLabelShow:!0}}function GO(t,e){var n,i,r=e.layoutLength,o=e.axisExpandWidth,a=e.axisCount,s=e.axisCollapseWidth,l=e.winInnerIndices,u=s,c=!1;return t=0;n--)xo(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&&sR(t);var l=T(s);l.brushType=MR(l.brushType,a),l.panelId=a===HO?null:a.panelId,o=t._creatingCover=QO(t,l),t._covers.push(o)}if(o){var u=CR[MR(t._brushType,a)];o.__brushOption.range=u.getCreatingRange(_R(t,o,t._track)),i&&(tR(t,o),u.updateCommon(t,o)),eR(t,o),r={isEnd:i}}}else i&&"single"===s.brushMode&&s.removeOnClick&&oR(t,e,n)&&sR(t)&&(r={isEnd:i,removeOnClick:!0});return r}function MR(t,e){return"auto"===t?e.defaultBrushType:t}var IR={mousedown:function(t){if(this._dragging)TR(this,t);else if(!t.target||!t.target.draggable){bR(t);var e=this.group.transformCoordToLocal(t.offsetX,t.offsetY);this._creatingCover=null,(this._creatingPanel=oR(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=oR(t,e,n);if(!t._dragging)for(var a=0;a=0&&(o[r[a].depth]=new wd(r[a],this,e));var s=XP(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}))}));return s.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.setCenter=function(t){this.option.center=t},e.prototype.setZoom=function(t){this.option.zoom=t},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 Ty("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 Ty("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.layoutMode="box",e.defaultOption={z:2,coordinateSystemUsage:"box",left:"5%",top:"5%",right:"20%",bottom:"5%",orient:"horizontal",nodeWidth:20,nodeGap:8,draggable:!0,layoutIterations:32,roam:!1,roamTrigger:"global",center:null,zoom:1,label:{show:!0,position:"right",fontSize:12},edgeLabel:{show:!1,fontSize:12},levels:[],nodeAlign:"justify",lineStyle:{color:tf.color.neutral50,opacity:.2,curveness:.5},emphasis:{label:{show:!0},lineStyle:{opacity:.5}},select:{itemStyle:{borderColor:tf.color.primary}},animationEasing:"linear",animationDuration:1e3},e}(Wy);function WR(t,e){t.eachSeriesByType("sankey",(function(t){var n=t.get("nodeWidth"),i=t.get("nodeGap"),r=Xp(t,e).refContainer,o=Hp(t.getBoxLayoutParams(),r);t.layoutInfo=o;var a=o.width,s=o.height,l=t.getGraph(),u=l.nodes,c=l.edges;!function(t){z(t,(function(t){var e=JR(t.outEdges,$R),n=JR(t.inEdges,$R),i=t.getValue()||0,r=Math.max(e,n,i);t.setLayout({value:r},!0)}))}(u),function(t,e,n,i,r,o,a,s,l){(function(t,e,n,i,r,o,a){for(var s=[],l=[],u=[],c=[],h=0,d=0;d=0;v&&y.depth>p&&(p=y.depth),g.setLayout({depth:v?y.depth:h},!0),"vertical"===o?g.setLayout({dy:n},!0):g.setLayout({dx:n},!0);for(var m=0;mh-1?p:h-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--)YR(s,l*=.99,a),UR(s,r,n,i,a),QR(s,l,a),UR(s,r,n,i,a)}(t,e,o,r,i,a,s),function(t,e){var n="vertical"===e?"x":"y";z(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]}))})),z(t,(function(t){var e=0,n=0;z(t.outEdges,(function(t){t.setLayout({sy:e},!0),e+=t.getLayout().dy})),z(t.inEdges,(function(t){t.setLayout({ty:n},!0),n+=t.getLayout().dy}))}))}(t,s)}(u,c,n,i,a,s,0!==V(u,(function(t){return 0===t.getLayout().value})).length?0:t.get("layoutIterations"),t.get("orient"),t.get("nodeAlign"))}))}function HR(t){var e=t.hostGraph.data.getRawDataItem(t.dataIndex);return null!=e.depth&&e.depth>=0}function UR(t,e,n,i,r){var o="vertical"===r?"x":"y";z(t,(function(t){var a,s,l;t.sort((function(t,e){return t.getLayout()[o]-e.getLayout()[o]}));for(var u=0,c=t.length,h="vertical"===r?"dx":"dy",d=0;d0&&(a=s.getLayout()[o]+l,"vertical"===r?s.setLayout({x:a},!0):s.setLayout({y:a},!0)),u=s.getLayout()[o]+s.getLayout()[h]+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(d=c-2;d>=0;--d)(l=(s=t[d]).getLayout()[o]+s.getLayout()[h]+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 YR(t,e,n){z(t.slice().reverse(),(function(t){z(t,(function(t){if(t.outEdges.length){var i=JR(t.outEdges,XR,n)/JR(t.outEdges,$R);if(isNaN(i)){var r=t.outEdges.length;i=r?JR(t.outEdges,ZR,n)/r:0}if("vertical"===n){var o=t.getLayout().x+(i-KR(t,n))*e;t.setLayout({x:o},!0)}else{var a=t.getLayout().y+(i-KR(t,n))*e;t.setLayout({y:a},!0)}}}))}))}function XR(t,e){return KR(t.node2,e)*t.getValue()}function ZR(t,e){return KR(t.node2,e)}function jR(t,e){return KR(t.node1,e)*t.getValue()}function qR(t,e){return KR(t.node1,e)}function KR(t,e){return"vertical"===e?t.getLayout().x+t.getLayout().dx/2:t.getLayout().y+t.getLayout().dy/2}function $R(t){return t.getValue()}function JR(t,e,n){for(var i=0,r=t.length,o=-1;++oo&&(o=e)})),z(n,(function(e){var n=new hL({type:"color",mappingMethod:"linear",dataExtent:[r,o],visual:t.get("color")}).mapValueToVisual(e.getLayout().value),i=e.getModel().get(["itemStyle","color"]);null!=i?(e.setVisual("color",i),e.setVisual("style",{fill:i})):(e.setVisual("color",n),e.setVisual("style",{fill:n}))}))}i.length&&z(i,(function(t){var e=t.getModel().get("lineStyle");t.setVisual("style",e)}))}))}var eN=function(){function t(){}return t.prototype._hasEncodeRule=function(t){var e=this.getEncode();return e&&null!=e.get(t)},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=!this._hasEncodeRule("x")):"category"===s?(t.layout="vertical",n=o.getOrdinalMeta(),i=!this._hasEncodeRule("y")):t.layout=t.layout||"horizontal";var l=["x","y"],u="horizontal"===t.layout?0:1,c=this._baseAxisDim=l[u],h=l[1-u],d=[r,o],p=d[u].get("type"),f=d[1-u].get("type"),g=t.data;if(g&&i){var y=[];z(g,(function(t,e){var n;U(t)?(n=t.slice(),t.unshift(e)):U(t.value)?((n=A({},t)).value=n.value.slice(),t.value.unshift(e)):n=t,y.push(n)})),t.data=y}var v=this.defaultValueDimensions,m=[{name:c,type:v_(p),ordinalMeta:n,otherDims:{tooltip:!1,itemName:0},dimsDef:["base"]},{name:h,type:v_(f),dimsDef:v.slice()}];return IT(this,{coordDimensions:m,dimensionsCount:v.length+1,encodeDefaulter:H(Sf,m,this)})},t.prototype.getBaseAxis=function(){var t=this._baseAxisDim;return this.ecModel.getComponent(t+"Axis",this.get(t+"AxisIndex")).axis},t}(),nN=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={z:2,coordinateSystem:"cartesian2d",legendHoverLink:!0,layout:null,boxWidth:[7,50],itemStyle:{color:tf.color.neutral00,borderWidth:1},emphasis:{scale:!0,itemStyle:{borderWidth:2,shadowBlur:5,shadowOffsetX:1,shadowOffsetY:1,shadowColor:tf.color.shadow}},animationDuration:800},e}(Wy);R(nN,eN,!0);var iN=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=aN(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?(ah(n),sN(s,n,i,t)):n=aN(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}(tv),rN=function(){},oN=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 rN},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 _=[v,x];i.push(_)}}}return{boxData:n,outliers:i}}(e.getRawData(),t.config);return[{dimensions:["ItemName","Low","Q1","Q2","Q3","High"],data:i.boxData},{data:i.outliers}]}};var dN=["itemStyle","borderColor"],pN=["itemStyle","borderColor0"],fN=["itemStyle","borderColorDoji"],gN=["itemStyle","color"],yN=["itemStyle","color0"];function vN(t,e){return e.get(t>0?gN:yN)}function mN(t,e){return e.get(0===t?fN:t>0?dN:pN)}var xN={seriesType:"candlestick",plan:$y(),performRawSeries:!0,reset:function(t,e){if(!e.isSeriesFiltered(t))return!t.pipelineContext.large&&{progress:function(t,e){for(var n;null!=(n=t.next());){var i=e.getItemModel(n),r=e.getItemLayout(n).sign,o=i.getItemStyle();o.fill=vN(r,i),o.stroke=mN(r,i)||o.fill,A(e.ensureUniqueItemVisual(n,"style"),o)}}}}},_N=["color","borderColor"],bN=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._progressiveEls=null,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._progressiveEls=[],this._isLargeDraw?this._incrementalRenderLarge(t,e):this._incrementalRenderNormal(t,e)},e.prototype.eachRendered=function(t){Bh(this._progressiveEls||this.group,t)},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&&IN(s,a))return;var l=MN(a,n,!0);eh(l,{shape:{points:a.ends}},t,n),TN(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 c=e.getItemLayout(a);o&&IN(s,c)?i.remove(u):(u?(th(u,{shape:{points:c.ends}},t,a),ah(u)):u=MN(c),TN(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(),kN(t,this.group);var e=t.get("clip",!0)?wI(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=MN(i.getItemLayout(n));TN(o,i,n,r),o.incremental=!0,this.group.add(o),this._progressiveEls.push(o)}},e.prototype._incrementalRenderLarge=function(t,e){kN(e,this.group,this._progressiveEls,!0)},e.prototype.remove=function(t){this._clear()},e.prototype._clear=function(){this.group.removeAll(),this._data=null},e.type="candlestick",e}(tv),wN=function(){},SN=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 wN},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}(sl);function MN(t,e,n){var i=t.ends;return new SN({shape:{points:n?CN(i,t):i},z2:100})}function IN(t,e){for(var n=!0,i=0;ip?x[1]:m[1],ends:w,brushRect:T(f,g,h)})}function M(t,n){var i=[];return i[0]=n,i[1]=t,isNaN(n)||isNaN(t)?[NaN,NaN]:e.dataToPoint(i)}function I(t,e,n){var r=e.slice(),o=e.slice();r[0]=bh(r[0]+i/2,1,!1),o[0]=bh(o[0]-i/2,1,!0),n?t.push(r,o):t.push(o,r)}function T(t,e,n){var r=M(t,n),o=M(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 C(t){return t[0]=bh(t[0],1),t}}}}};function NN(t,e,n,i,r,o){return n>i?-1:n0?t.get(r,e-1)<=i?1:-1:1}function zN(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 EN=function(t){function e(e,n){var i=t.call(this)||this,r=new rI(e,n),o=new to;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&&(o=this._getLineLength(i)/l*1e3),o!==this._period||a!==this._loop||s!==this._roundTrip){i.stopAnimation();var c=void 0;c=Y(u)?u(n):u,i.__t>0&&(c=-o*i.__t),this._animateSymbol(i,o,c,a,s)}this._period=o,this._loop=a,this._roundTrip=s}},e.prototype._animateSymbol=function(t,e,n,i,r){if(e>0){t.__t=0;var o=this,a=t.animate("",i).when(r?2*e:e,{__t:r?2:1}).delay(n).during((function(){o._updateSymbolPosition(t)}));i||a.done((function(){o.remove(t)})),a.start()}},e.prototype._getLineLength=function(t){return Vt(t.__p1,t.__cp1)+Vt(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<1?t.__t:2-t.__t,o=[t.x,t.y],a=o.slice(),s=Nn,l=zn;o[0]=s(e[0],i[0],n[0],r),o[1]=s(e[1],i[1],n[1],r);var u=t.__t<1?l(e[0],i[0],n[0],r):l(n[0],i[0],e[0],1-r),c=t.__t<1?l(e[1],i[1],n[1],r):l(n[1],i[1],e[1],1-r);t.rotation=-Math.atan2(c,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 c=t.__t<1?u[0]-l[0]:l[0]-u[0],h=t.__t<1?u[1]-l[1]:l[1]-u[1];t.rotation=-Math.atan2(h,c)-Math.PI/2,this._lastFrame=o,this._lastFramePercent=e,t.ignore=!1}},e}(GN),HN=function(){this.polyline=!1,this.curveness=0,this.segs=[]},UN=function(t){function e(e){var n=t.call(this,e)||this;return n._off=0,n.hoverDataIdx=-1,n}return n(e,t),e.prototype.reset=function(){this.notClear=!1,this._off=0},e.prototype.getDefaultStyle=function(){return{stroke:tf.color.neutral99,fill:null}},e.prototype.getDefaultShape=function(){return new HN},e.prototype.buildPath=function(t,e){var n,i=e.segs,r=e.curveness;if(e.polyline)for(n=this._off;n0){t.moveTo(i[n++],i[n++]);for(var a=1;a0){var h=(s+u)/2-(l-c)*r,d=(l+c)/2-(u-s)*r;t.quadraticCurveTo(h,d,u,c)}else t.lineTo(u,c)}this.incremental&&(this._off=n,this.notClear=!0)},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++],c=i[s++],h=1;h0){if(Us(u,c,(u+d)/2-(c-p)*r,(c+p)/2-(d-u)*r,d,p,o,t,e))return a}else if(Ws(u,c,d,p,o,t,e))return a;a++}return-1},e.prototype.contain=function(t,e){var n=this.transformCoordToLocal(t,e),i=this.getBoundingRect();return t=n[0],e=n[1],i.contain(t,e)?(this.hoverDataIdx=this.findDataIndex(t,e))>=0:(this.hoverDataIdx=-1,!1)},e.prototype.getBoundingRect=function(){var t=this._rect;if(!t){for(var e=this.shape.segs,n=1/0,i=1/0,r=-1/0,o=-1/0,a=0;a0&&(o.dataIndex=n+t.__startIndex)}))},t.prototype._clear=function(){this._newAdded=[],this.group.removeAll()},t}(),XN={seriesType:"lines",plan:$y(),reset:function(t){var e=t.coordinateSystem;if(e){var 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,c=r.start;c0&&(l||s.configLayer(o,{motionBlur:!0,lastFrameAlpha:Math.max(Math.min(a/10+.9,1),0)})),r.updateData(i);var u=t.get("clip",!0)&&wI(t.coordinateSystem,!1,t);u?this.group.setClipPath(u):this.group.removeClipPath(),this._lastZlevel=o,this._finished=!0},e.prototype.incrementalPrepareRender=function(t,e,n){var i=t.getData();this._updateLineDraw(i,t).incrementalPrepareUpdate(i),this._clearLayer(n),this._finished=!1},e.prototype.incrementalRender=function(t,e,n){this._lineDraw.incrementalUpdate(t,e.getData()),this._finished=t.end===e.getData().count()},e.prototype.eachRendered=function(t){this._lineDraw&&this._lineDraw.eachRendered(t)},e.prototype.updateTransform=function(t,e,n){var i=t.getData(),r=t.pipelineContext;if(!this._finished||r.large||r.progressiveRender)return{update:!0};var o=XN.reset(t,e,n);o.progress&&o.progress({start:0,end:i.count(),count:i.count()},i),this._lineDraw.updateLayout(),this._clearLayer(n)},e.prototype._updateLineDraw=function(t,e){var n=this._lineDraw,i=this._showEffect(e),r=!!e.get("polyline"),o=e.pipelineContext.large;return n&&i===this._hasEffet&&r===this._isPolyline&&o===this._isLargeDraw||(n&&n.remove(),n=this._lineDraw=o?new YN:new IP(r?i?WN:FN:i?GN:MP),this._hasEffet=i,this._isPolyline=r,this._isLargeDraw=o),this.group.add(n.group),n},e.prototype._showEffect=function(t){return!!t.get(["effect","show"])},e.prototype._clearLayer=function(t){var e=t.getZr();"svg"===e.painter.getType()||null==this._lastZlevel||e.painter.getLayer(this._lastZlevel).clear(!0)},e.prototype.remove=function(t,e){this._lineDraw&&this._lineDraw.remove(),this._lineDraw=null,this._clearLayer(e)},e.prototype.dispose=function(t,e){this.remove(t,e)},e.type="lines",e}(tv),jN="undefined"==typeof Uint32Array?Array:Uint32Array,qN="undefined"==typeof Float64Array?Array:Float64Array;function KN(t){var e=t.data;e&&e[0]&&e[0][0]&&e[0][0].coord&&(t.data=E(e,(function(t){var e={coords:[t[0].coord,t[1].coord]};return t[0].name&&(e.fromName=t[0].name),t[1].name&&(e.toName=t[1].name),D([e,t[0],t[1]])})))}var $N=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.visualStyleAccessPath="lineStyle",n.visualDrawType="stroke",n}return n(e,t),e.prototype.init=function(e){e.data=e.data||[],KN(e);var n=this._processFlatCoordsArray(e.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(e.data=new Float32Array(n.count)),t.prototype.init.apply(this,arguments)},e.prototype.mergeOption=function(e){if(KN(e),e.data){var n=this._processFlatCoordsArray(e.data);this._flatCoords=n.flatCoords,this._flatCoordsOffset=n.flatCoordsOffset,n.flatCoords&&(e.data=new Float32Array(n.count))}t.prototype.mergeOption.apply(this,arguments)},e.prototype.appendData=function(t){var e=this._processFlatCoordsArray(t.data);e.flatCoords&&(this._flatCoords?(this._flatCoords=vt(this._flatCoords,e.flatCoords),this._flatCoordsOffset=vt(this._flatCoordsOffset,e.flatCoordsOffset)):(this._flatCoords=e.flatCoords,this._flatCoordsOffset=e.flatCoordsOffset),t.data=new Float32Array(e.count)),this.getRawData().appendData(t.data)},e.prototype._getCoordsFromItemModel=function(t){var e=this.getData().getItemModel(t),n=e.option instanceof Array?e.option:e.getShallow("coords");return n},e.prototype.getLineCoordsCount=function(t){return this._flatCoordsOffset?this._flatCoordsOffset[2*t+1]:this._getCoordsFromItemModel(t).length},e.prototype.getLineCoords=function(t,e){if(this._flatCoordsOffset){for(var n=this._flatCoordsOffset[2*t],i=this._flatCoordsOffset[2*t+1],r=0;r ")})},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.prototype.getZLevelKey=function(){var t=this.getModel("effect"),e=t.get("trailLength");return this.getData().count()>this.getProgressiveThreshold()?this.id:t.get("show")&&e>0?e+"":""},e.type="series.lines",e.dependencies=["grid","polar","geo","calendar"],e.defaultOption={coordinateSystem:"geo",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}(Wy);function JN(t){return t instanceof Array||(t=[t,t]),t}var QN={seriesType:"lines",reset:function(t){var e=JN(t.get("symbol")),n=JN(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=JN(n.getShallow("symbol",!0)),r=JN(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 tz=function(){function t(){this.blurSize=30,this.pointSize=20,this.maxOpacity=1,this.minOpacity=0,this._gradientPixels={inRange:null,outOfRange:null};var t=c.createCanvas();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,c=this.canvas,h=c.getContext("2d"),d=t.length;c.width=e,c.height=n;for(var p=0;p0){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 _+=4}return h.putImageData(m,0,0),c},t.prototype._getBrush=function(){var t=this._brushCanvas||(this._brushCanvas=c.createCanvas()),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=tf.color.neutral99,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 ez(t){var e=t.dimensions;return"lng"===e[0]&&"lat"===e[1]}var nz=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._progressiveEls=null,this.group.removeAll();var r=t.coordinateSystem;"cartesian2d"===r.type||"calendar"===r.type||"matrix"===r.type?this._renderOnGridLike(t,n,0,t.getData().count()):ez(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&&(ez(r)?this.render(e,n,i):(this._progressiveEls=[],this._renderOnGridLike(e,i,t.start,t.end,!0)))},e.prototype.eachRendered=function(t){Bh(this._progressiveEls||this.group,t)},e.prototype._renderOnGridLike=function(t,e,n,i,r){var o,a,s,l,u=t.coordinateSystem,c=SI(u,"cartesian2d"),h=SI(u,"matrix");if(c){var d=u.getAxis("x"),p=u.getAxis("y");0,o=d.getBandWidth()+.5,a=p.getBandWidth()+.5,s=d.scale.getExtent(),l=p.scale.getExtent()}for(var f=this.group,g=t.getData(),y=t.getModel(["emphasis","itemStyle"]).getItemStyle(),v=t.getModel(["blur","itemStyle"]).getItemStyle(),m=t.getModel(["select","itemStyle"]).getItemStyle(),x=t.get(["itemStyle","borderRadius"]),_=Jh(t),b=t.getModel("emphasis"),w=b.get("focus"),S=b.get("blurScope"),M=b.get("disabled"),I=c||h?[g.mapDimension("x"),g.mapDimension("y"),g.mapDimension("value")]:[g.mapDimension("time"),g.mapDimension("value")],T=n;Ts[1]||kl[1])continue;var L=u.dataToPoint([A,k]);C=new xl({shape:{x:L[0]-o/2,y:L[1]-a/2,width:o,height:a},style:D})}else if(h){if(nt((P=u.dataToLayout([g.get(I[0],T),g.get(I[1],T)]).rect).x))continue;C=new xl({z2:1,shape:P,style:D})}else{if(isNaN(g.get(I[1],T)))continue;var P,O=u.dataToLayout([g.get(I[0],T)]);if(nt((P=O.contentRect||O.rect).x)||nt(P.y))continue;C=new xl({z2:1,shape:P,style:D})}if(g.hasItemOption){var R=g.getItemModel(T),N=R.getModel("emphasis");y=N.getModel("itemStyle").getItemStyle(),v=R.getModel(["blur","itemStyle"]).getItemStyle(),m=R.getModel(["select","itemStyle"]).getItemStyle(),x=R.get(["itemStyle","borderRadius"]),w=N.get("focus"),S=N.get("blurScope"),M=N.get("disabled"),_=Jh(R)}C.shape.r=x;var z=t.getRawValue(T),E="-";z&&null!=z[2]&&(E=z[2]+""),$h(C,_,{labelFetcher:t,labelDataIndex:T,defaultOpacity:D.opacity,defaultText:E}),C.ensureState("emphasis").style=y,C.ensureState("blur").style=v,C.ensureState("select").style=m,Tu(C,w,S,M),C.incremental=r,r&&(C.states.emphasis.hoverLayer=!0),f.add(C),g.setItemGraphicEl(T,C),this._progressiveEls&&this._progressiveEls.push(C)}},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 tz;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 c=Math.max(l.x,0),h=Math.max(l.y,0),d=Math.min(l.width+l.x,i.getWidth()),p=Math.min(l.height+l.y,i.getHeight()),f=d-c,g=p-h,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]-=c,r[1]-=h,r.push(i),r})),m=n.getExtent(),x="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=E(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&&i=0?1:-1:o>0?1:-1}(n,o,r,i,h),function(t,e,n,i,r,o,a,s,l,u){var c,h=l.valueDim,d=l.categoryDim,p=Math.abs(n[d.wh]),f=t.getItemVisual(e,"symbolSize");c=U(f)?f.slice():null==f?["100%","100%"]:[f,f];c[d.index]=yo(c[d.index],p),c[h.index]=yo(c[h.index],i?p:Math.abs(o)),u.symbolSize=c;var g=u.symbolScale=[c[0]/s,c[1]/s];g[h.index]*=(l.isHorizontal?-1:1)*a}(t,e,r,o,0,h.boundingLength,h.pxSign,u,i,h),function(t,e,n,i,r){var o=t.get(rz)||0;o&&(az.attr({scaleX:e[0],scaleY:e[1],rotation:n}),az.updateTransform(),o/=az.getLineScale(),o*=e[i.valueDim.index]);r.valueLineWidth=o||0}(n,h.symbolScale,l,i,h);var d=h.symbolSize,p=pm(n.get("symbolOffset"),d);return function(t,e,n,i,r,o,a,s,l,u,c,h){var d=c.categoryDim,p=c.valueDim,f=h.pxSign,g=Math.max(e[p.index]+s,0),y=g;if(i){var v=Math.abs(l),m=it(t.get("symbolMargin"),"15%")+"",x=!1;m.lastIndexOf("!")===m.length-1&&(x=!0,m=m.slice(0,m.length-1));var _=yo(m,e[p.index]),b=Math.max(g+2*_,0),w=x?0:2*_,S=zo(i),M=S?i:Mz((v+w)/b);b=g+2*(_=(v-M*g)/2/(x?M:Math.max(M-1,1))),w=x?0:2*_,S||"fixed"===i||(M=u?Mz((Math.abs(u)+w)/b):0),y=M*b-w,h.repeatTimes=M,h.symbolMargin=_}var I=f*(y/2),T=h.pathPosition=[];T[d.index]=n[d.wh]/2,T[p.index]="start"===a?I:"end"===a?l-I:l/2,o&&(T[0]+=o[0],T[1]+=o[1]);var C=h.bundlePosition=[];C[d.index]=n[d.xy],C[p.index]=n[p.xy];var D=h.barRectShape=A({},n);D[p.wh]=f*Math.max(Math.abs(n[p.wh]),Math.abs(T[p.index]+I)),D[d.wh]=n[d.wh];var k=h.clipShape={};k[d.xy]=-n[d.xy],k[d.wh]=c.ecSize[d.wh],k[p.xy]=0,k[p.wh]=n[p.wh]}(n,d,r,o,0,p,s,h.valueLineWidth,h.boundingLength,h.repeatCutLength,i,h),h}function uz(t,e){return t.toGlobalCoord(t.dataToCoord(t.scale.parse(e)))}function cz(t){var e=t.symbolPatternSize,n=hm(t.symbolType,-e/2,-e/2,e,e);return n.attr({culling:!0}),"image"!==n.type&&n.setStyle({strokeNoScale:!0}),n}function hz(t,e,n,i){var r=t.__pictorialBundle,o=n.symbolSize,a=n.valueLineWidth,s=n.pathPosition,l=e.valueDim,u=n.repeatTimes||0,c=0,h=o[e.valueDim.index]+a+2*n.symbolMargin;for(bz(t,(function(t){t.__pictorialAnimationIndex=c,t.__pictorialRepeatTimes=u,c0:i<0)&&(r=u-1-t),e[l.index]=h*(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 dz(t,e,n,i){var r=t.__pictorialBundle,o=t.__pictorialMainPath;o?wz(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=cz(n),r.add(o),wz(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 pz(t,e,n){var i=A({},e.barRectShape),r=t.__pictorialBarRect;r?wz(r,null,{shape:i},e,n):((r=t.__pictorialBarRect=new xl({z2:2,shape:i,silent:!0,style:{stroke:"transparent",fill:"transparent",lineWidth:0}})).disableMorphing=!0,t.add(r))}function fz(t,e,n,i){if(n.symbolClip){var r=t.__pictorialClipPath,o=A({},n.clipShape),a=e.valueDim,s=n.animationModel,l=n.dataIndex;if(r)th(r,{shape:o},s,l);else{o[a.wh]=0,r=new xl({shape:o}),t.__pictorialBundle.setClipPath(r),t.__pictorialClipPath=r;var u={};u[a.wh]=n.clipShape[a.wh],Zh[i?"updateProps":"initProps"](r,{shape:u},s,l)}}}function gz(t,e){var n=t.getItemModel(e);return n.getAnimationDelayParams=yz,n.isAnimationEnabled=vz,n}function yz(t){return{index:t.__pictorialAnimationIndex,count:t.__pictorialRepeatTimes}}function vz(){return this.parentModel.isAnimationEnabled()&&!!this.getShallow("animation")}function mz(t,e,n,i){var r=new to,o=new to;return r.add(o),r.__pictorialBundle=o,o.x=n.bundlePosition[0],o.y=n.bundlePosition[1],n.symbolRepeat?hz(r,e,n):dz(r,0,n),pz(r,n,i),fz(r,e,n,i),r.__pictorialShapeStr=_z(t,n),r.__pictorialSymbolMeta=n,r}function xz(t,e,n,i){var r=i.__pictorialBarRect;r&&r.removeTextContent();var o=[];bz(i,(function(t){o.push(t)})),i.__pictorialMainPath&&o.push(i.__pictorialMainPath),i.__pictorialClipPath&&(n=null),z(o,(function(t){ih(t,{scaleX:0,scaleY:0},n,e,(function(){i.parent&&i.parent.remove(i)}))})),t.setItemGraphicEl(e,null)}function _z(t,e){return[t.getItemVisual(e.dataIndex,"symbol")||"none",!!e.symbolRepeat,!!e.symbolClip].join(":")}function bz(t,e,n){z(t.__pictorialBundle.children(),(function(i){i!==t.__pictorialBarRect&&e.call(n,i)}))}function wz(t,e,n,i,r,o){e&&t.attr(e),i.symbolClip&&!r?n&&t.attr(n):n&&Zh[r?"updateProps":"initProps"](t,n,i.animationModel,i.dataIndex,o)}function Sz(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"),c=o.get("focus"),h=o.get("blurScope"),d=o.get("scale");bz(t,(function(t){if(t instanceof dl){var e=t.style;t.useStyle(A({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,d&&(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 p=e.valueDim.posDesc[+(n.boundingLength>0)],f=t.__pictorialBarRect;f.ignoreClip=!0,$h(f,Jh(r),{labelFetcher:e.seriesModel,labelDataIndex:i,defaultText:nI(e.seriesModel.getData(),i),inheritColor:n.style.fill,defaultOpacity:n.style.opacity,defaultOutsidePosition:p}),Tu(t,c,h,o.get("disabled"))}function Mz(t){var e=Math.round(t);return Math.abs(t-e)<1e-4?e:Math.ceil(t)}var Iz=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=Id(VI.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%",clip:!1,progressive:0,emphasis:{scale:!1},select:{itemStyle:{borderColor:tf.color.primary}}}),e}(VI);var Tz=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 c(t){return t.name}o.x=0,o.y=l.y+u[0];var h=new f_(this._layersSeries||[],a,c,c),d=[];function p(e,n,s){var l=r._layers;if("remove"!==e){for(var u,c,h=[],p=[],f=a[n].indices,g=0;go&&(o=s),i.push(s)}for(var u=0;uo&&(o=h)}return{y0:r,max:o}}(l),c=u.y0,h=n/u.max,d=o.length,p=o[0].indices.length,f=0;fI&&!Co(C-I)&&C0?(r.virtualPiece?r.virtualPiece.updateData(!1,i,t,e,n):(r.virtualPiece=new kz(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=c},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)Sp(a,o.get("target",!0)||"_blank")}n=!0}}))}))},e.prototype._rootToNode=function(t){t!==this.seriesModel.getViewRoot()&&this.api.dispatchAction({type:Lz,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}(tv),Rz=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};Nz(n);var i=this._levelModels=E(t.levels||[],(function(t){return new wd(t,this,e)}),this),r=Ek.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=Fk(i,this),n},e.prototype.getLevelModel=function(t){return this._levelModels&&this._levelModels[t.depth]},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(){Zk(this)},e.type="series.sunburst",e.defaultOption={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}(Wy);function Nz(t){var e=0;z(t.children,(function(t){Nz(t);var n=t.value;U(n)&&(n=n[0]),e+=n}));var n=t.value;U(n)&&(n=n[0]),(null==n||isNaN(n))&&(n=e),n<0&&(n=0),U(t.value)?t.value[0]=n:t.value=n}var zz=Math.PI/180;function Ez(t,e,n){e.eachSeriesByType(t,(function(t){var e=t.get("center"),i=t.get("radius");U(i)||(i=[0,i]),U(e)||(e=[e,e]);var r=n.getWidth(),o=n.getHeight(),a=Math.min(r,o),s=yo(e[0],r),l=yo(e[1],o),u=yo(i[0],a/2),c=yo(i[1],a/2),h=-t.get("startAngle")*zz,d=t.get("minAngle")*zz,p=t.getData().tree.root,f=t.getViewRoot(),g=f.depth,y=t.get("sort");null!=y&&Bz(f,y);var v=0;z(f.children,(function(t){!isNaN(t.getValue())&&v++}));var m=f.getValue(),x=Math.PI/(m||v)*2,_=f.depth>0,b=f.height-(_?-1:1),w=(c-u)/(b||1),S=t.get("clockwise"),M=t.get("stillShowZeroSum"),I=S?1:-1,T=function(e,n){if(e){var i=n;if(e!==p){var r=e.getValue(),o=0===m&&M?x:r*x;o1;)r=r.parentNode;var o=n.getColorFromPalette(r.name||r.dataIndex+"",e);return t.depth>1&&X(o)&&(o=si(o,(t.depth-1)/(i-1)*.5)),o}(r,t,i.root.height)),A(n.ensureUniqueItemVisual(r.dataIndex,"style"),o)}))}))}var Gz={color:"fill",borderColor:"stroke"},Fz={symbol:1,symbolSize:1,symbolKeepAspect:1,legendIcon:1,visualMeta:1,liftZ:1,decal:1},Wz=sa(),Hz=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 Z_(null,this)},e.prototype.getDataParams=function(e,n,i){var r=t.prototype.getDataParams.call(this,e,n);return i&&(r.info=Wz(i).info),r},e.type="series.custom",e.dependencies=["grid","polar","geo","singleAxis","calendar","matrix"],e.defaultOption={coordinateSystem:"cartesian2d",z:2,legendHoverLink:!0,clip:!1},e}(Wy);function Uz(t,e){return e=e||[0,0],E(["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 Yz(t,e){return e=e||[0,0],E([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 Xz(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 Zz(t,e){return e=e||[0,0],E(["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 jz(t,e,n,i){return t&&(t.legacy||!1!==t.legacy&&!n&&!i&&"tspan"!==e&&("text"===e||_t(t,"text")))}function qz(t,e,n){var i,r,o,a=t;if("text"===e)o=a;else{o={},_t(a,"text")&&(o.text=a.text),_t(a,"rich")&&(o.rich=a.rich),_t(a,"textFill")&&(o.fill=a.textFill),_t(a,"textStroke")&&(o.stroke=a.textStroke),_t(a,"fontFamily")&&(o.fontFamily=a.fontFamily),_t(a,"fontSize")&&(o.fontSize=a.fontSize),_t(a,"fontStyle")&&(o.fontStyle=a.fontStyle),_t(a,"fontWeight")&&(o.fontWeight=a.fontWeight),r={type:"text",style:o,silent:!0},i={};var s=_t(a,"textPosition");n?i.position=s?a.textPosition:"inside":s&&(i.position=a.textPosition),_t(a,"textPosition")&&(i.position=a.textPosition),_t(a,"textOffset")&&(i.offset=a.textOffset),_t(a,"textRotation")&&(i.rotation=a.textRotation),_t(a,"textDistance")&&(i.distance=a.textDistance)}return Kz(o,t),z(o.rich,(function(t){Kz(t,t)})),{textConfig:i,textContent:r}}function Kz(t,e){e&&(e.font=e.textFont||e.font,_t(e,"textStrokeWidth")&&(t.lineWidth=e.textStrokeWidth),_t(e,"textAlign")&&(t.align=e.textAlign),_t(e,"textVerticalAlign")&&(t.verticalAlign=e.textVerticalAlign),_t(e,"textLineHeight")&&(t.lineHeight=e.textLineHeight),_t(e,"textWidth")&&(t.width=e.textWidth),_t(e,"textHeight")&&(t.height=e.textHeight),_t(e,"textBackgroundColor")&&(t.backgroundColor=e.textBackgroundColor),_t(e,"textPadding")&&(t.padding=e.textPadding),_t(e,"textBorderColor")&&(t.borderColor=e.textBorderColor),_t(e,"textBorderWidth")&&(t.borderWidth=e.textBorderWidth),_t(e,"textBorderRadius")&&(t.borderRadius=e.textBorderRadius),_t(e,"textBoxShadowColor")&&(t.shadowColor=e.textBoxShadowColor),_t(e,"textBoxShadowBlur")&&(t.shadowBlur=e.textBoxShadowBlur),_t(e,"textBoxShadowOffsetX")&&(t.shadowOffsetX=e.textBoxShadowOffsetX),_t(e,"textBoxShadowOffsetY")&&(t.shadowOffsetY=e.textBoxShadowOffsetY))}function $z(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||tf.color.neutral99;Jz(i,e);var a=null==i.textFill;return r?a&&(i.textFill=n.insideFill||tf.color.neutral00,!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||tf.color.neutral00),!i.textStroke&&n.outsideStroke&&(i.textStroke=n.outsideStroke)),i.text=e.text,i.rich=e.rich,z(e.rich,(function(t){Jz(t,t)})),i}function Jz(t,e){e&&(_t(e,"fill")&&(t.textFill=e.fill),_t(e,"stroke")&&(t.textStroke=e.fill),_t(e,"lineWidth")&&(t.textStrokeWidth=e.lineWidth),_t(e,"font")&&(t.font=e.font),_t(e,"fontStyle")&&(t.fontStyle=e.fontStyle),_t(e,"fontWeight")&&(t.fontWeight=e.fontWeight),_t(e,"fontSize")&&(t.fontSize=e.fontSize),_t(e,"fontFamily")&&(t.fontFamily=e.fontFamily),_t(e,"align")&&(t.textAlign=e.align),_t(e,"verticalAlign")&&(t.textVerticalAlign=e.verticalAlign),_t(e,"lineHeight")&&(t.textLineHeight=e.lineHeight),_t(e,"width")&&(t.textWidth=e.width),_t(e,"height")&&(t.textHeight=e.height),_t(e,"backgroundColor")&&(t.textBackgroundColor=e.backgroundColor),_t(e,"padding")&&(t.textPadding=e.padding),_t(e,"borderColor")&&(t.textBorderColor=e.borderColor),_t(e,"borderWidth")&&(t.textBorderWidth=e.borderWidth),_t(e,"borderRadius")&&(t.textBorderRadius=e.borderRadius),_t(e,"shadowColor")&&(t.textBoxShadowColor=e.shadowColor),_t(e,"shadowBlur")&&(t.textBoxShadowBlur=e.shadowBlur),_t(e,"shadowOffsetX")&&(t.textBoxShadowOffsetX=e.shadowOffsetX),_t(e,"shadowOffsetY")&&(t.textBoxShadowOffsetY=e.shadowOffsetY),_t(e,"textShadowColor")&&(t.textShadowColor=e.textShadowColor),_t(e,"textShadowBlur")&&(t.textShadowBlur=e.textShadowBlur),_t(e,"textShadowOffsetX")&&(t.textShadowOffsetX=e.textShadowOffsetX),_t(e,"textShadowOffsetY")&&(t.textShadowOffsetY=e.textShadowOffsetY))}var Qz={position:["x","y"],scale:["scaleX","scaleY"],origin:["originX","originY"]},tE=F(Qz),eE=(B(Ar,(function(t,e){return t[e]=1,t}),{}),Ar.join(", "),["","style","shape","extra"]),nE=sa();function iE(t,e,n,i,r){var o=t+"Animation",a=Jc(t,i,r)||{},s=nE(e).userDuring;return a.duration>0&&(a.during=s?W(cE,{el:e,userDuring:s}):null,a.setToFinal=!0,a.scope=t),A(a,n[o]),a}function rE(t,e,n,i){var r=(i=i||{}).dataIndex,o=i.isInit,a=i.clearStyle,s=n.isAnimationEnabled(),l=nE(t),u=e.style;l.userDuring=e.during;var c={},h={};if(function(t,e,n){for(var i=0;i=0)){var h=t.getAnimationStyleProps(),d=h?h.style:null;if(d){!r&&(r=i.style={});var p=F(n);for(u=0;u0&&t.animateFrom(g,y)}else!function(t,e,n,i,r){if(r){var o=iE("update",t,e,i,n);o.duration>0&&t.animateFrom(r,o)}}(t,e,r||0,n,c);oE(t,e),u?t.dirty():t.markRedraw()}function oE(t,e){for(var n=nE(t).leaveToProps,i=0;i=0){!o&&(o=i[t]={});var d=F(a);for(c=0;ci[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:W(Zz,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)},layout:function(e,n){return t.dataToLayout(e,n)}}}},matrix:function(t){var e=t.getRect();return{coordSys:{type:"matrix",x:e.x,y:e.y,width:e.width,height:e.height},api:{coord:function(e,n){return t.dataToPoint(e,n)},layout:function(e,n){return t.dataToLayout(e,n)}}}}};function DE(t){return t instanceof sl}function AE(t){return t instanceof os}var kE=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){this._progressiveEls=null;var r=this._data,o=t.getData(),a=this.group,s=NE(t,o,e,n);r||a.removeAll(),o.diff(r).add((function(e){EE(n,null,e,s(e,i),t,a,o)})).remove((function(e){var n=r.getItemGraphicEl(e);n&&aE(n,Wz(n).option,t)})).update((function(e,l){var u=r.getItemGraphicEl(l);EE(n,u,e,s(e,i),t,a,o)})).execute();var l=t.get("clip",!0)?wI(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=NE(e,o,n,i),s=this._progressiveEls=[];function l(t){t.isGroup||(t.incremental=!0,t.ensureState("emphasis").hoverLayer=!0)}for(var u=t.start;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=l);var r=x(i,mE).getItemStyle(),o=_(i,mE),a=Qh(o,null,null,!0,!0);a.text=o.getShallow("show")?ot(t.getFormattedLabel(i,mE),t.getFormattedLabel(i,xE),nI(e,i)):null;var s=td(o,null,!0);return w(n,r),r=$z(r,a,s),n&&b(r,n),r.legacy=!0,r},visual:function(t,n){if(null==n&&(n=l),_t(Gz,t)){var i=e.getItemVisual(n,"style");return i?i[Gz[t]]:null}if(_t(Fz,t))return e.getItemVisual(n,t)},barLayout:function(t){if("cartesian2d"===a.type){return function(t){var e=[],n=t.axis,i="axis0";if("category"===n.type){for(var r=n.getBandWidth(),o=0;o=h;f--){var g=e.childAt(f);HE(e,g,r)}}(t,h,n,i,r),a>=0?o.replaceAt(h,a):o.add(h),h}function VE(t,e,n){var i,r=Wz(t),o=e.type,a=e.shape,s=e.style;return n.isUniversalTransitionEnabled()||null!=o&&o!==r.customGraphicType||"path"===o&&((i=a)&&(_t(i,"pathData")||_t(i,"d")))&&ZE(a)!==r.customPathData||"image"===o&&_t(s,"image")&&s.image!==r.customImagePath}function GE(t,e,n){var i=e?FE(t,e):t,r=e?WE(t,i,mE):t.style,o=t.type,a=i?i.textConfig:null,s=t.textContent,l=s?e?FE(s,e):s:null;if(r&&(n.isLegacy||jz(r,o,!!a,!!l))){n.isLegacy=!0;var u=qz(r,o,!e);!a&&u.textConfig&&(a=u.textConfig),!l&&u.textContent&&(l=u.textContent)}if(!e&&l){var c=l;!c.type&&(c.type="text")}var h=e?n[e]:n.normal;h.cfg=a,h.conOpt=l}function FE(t,e){return e?t?t[e]:null:t}function WE(t,e,n){var i=e&&e.style;return null==i&&n===mE&&t&&(i=t.styleEmphasis),i}function HE(t,e,n){e&&aE(e,Wz(t).option,n)}function UE(t,e){var n=t&&t.name;return null!=n?n:"e\0\0"+e}function YE(t,e){var n=this.context,i=null!=t?n.newChildren[t]:null,r=null!=e?n.oldChildren[e]:null;BE(n.api,r,n.dataIndex,i,n.seriesModel,n.group)}function XE(t){var e=this.context,n=e.oldChildren[t];n&&aE(n,Wz(n).option,e.seriesModel)}function ZE(t){return t&&(t.pathData||t.d)}var jE=sa(),qE=T,KE=W,$E=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 c=this._moveAnimation=this.determineAnimation(t,e);if(a){var h=H(JE,e,c);this.updatePointerEl(a,l,h),this.updateLabelEl(a,l,h,e)}else a=this._group=new to,this.createPointerEl(a,l,t,e),this.createLabelEl(a,l,t,e),n.getZr().add(a);nB(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=ZC(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=jE(t).pointerEl=new Zh[r.type](qE(e.pointer));t.add(o)}},t.prototype.createLabelEl=function(t,e,n,i){if(e.label){var r=jE(t).labelEl=new Sl(qE(e.label));t.add(r),tB(r,i)}},t.prototype.updatePointerEl=function(t,e,n){var i=jE(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=jE(t).labelEl;r&&(r.setStyle(e.label.style),n(r,{x:e.label.x,y:e.label.y}),tB(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=Ah(o.get("icon"),{cursor:"move",draggable:!0,onmousemove:function(t){fe(t.event)},onmousedown:KE(this._onHandleDragMove,this,0,0),drift:KE(this._onHandleDragMove,this),ondragend:KE(this._onHandleDragEnd,this)}),i.add(r)),nB(r,n,!1),r.setStyle(o.getItemStyle(null,["color","borderColor","borderWidth","opacity","shadowColor","shadowBlur","shadowOffsetX","shadowOffsetY"]));var s=o.get("size");U(s)||(s=[s,s]),r.scaleX=s[0]/2,r.scaleY=s[1]/2,cv(this,"_doDispatchAxisPointer",o.get("throttle")||0,"fixRate"),this._moveHandleToValue(t,e)}},t.prototype._moveHandleToValue=function(t,e){JE(this._axisPointerModel,!e&&this._moveAnimation,this._handle,eB(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(eB(n),[t,e],this._axisModel,this._axisPointerModel);this._payloadInfo=i,n.stopAnimation(),n.attr(eB(i)),jE(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),hv(this,"_doDispatchAxisPointer")},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 JE(t,e,n,i){QE(jE(n).lastProp,i)||(jE(n).lastProp=i,e?th(n,i,t):(n.stopAnimation(),n.attr(i)))}function QE(t,e){if(q(t)&&q(e)){var n=!0;return z(e,(function(e,i){n=n&&QE(t[i],e)})),!!n}return t===e}function tB(t,e){t[e.get(["label","show"])?"show":"hide"]()}function eB(t){return{x:t.x||0,y:t.y||0,rotation:t.rotation||0}}function nB(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 iB(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 rB(t,e,n,i,r){var o=oB(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=yp(a.get("padding")||0),l=a.getFont(),u=Er(o,l),c=r.position,h=u.width+s[1]+s[3],d=u.height+s[0]+s[2],p=r.align;"right"===p&&(c[0]-=h),"center"===p&&(c[0]-=h/2);var f=r.verticalAlign;"bottom"===f&&(c[1]-=d),"middle"===f&&(c[1]-=d/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)}(c,h,d,i);var g=a.get("backgroundColor");g&&"auto"!==g||(g=e.get(["axisLine","lineStyle","color"])),t.label={x:c[0],y:c[1],style:Qh(a,{text:o,font:l,fill:a.getTextColor(),padding:s,backgroundColor:g}),z2:10}}function oB(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:qb(e,{value:t}),axisDimension:e.dim,axisIndex:e.index,seriesData:[]};z(i,(function(t){var e=n.getSeriesByIndex(t.seriesIndex),i=t.dataIndexInside,r=e&&e.getDataParams(i);r&&s.seriesData.push(r)})),X(a)?o=a.replace("{value}",o):Y(a)&&(o=a(s))}return o}function aB(t,e,n){var i=[1,0,0,1,0,0];return Me(i,i,n.rotation),Se(i,i,n.position),Sh([t.dataToCoord(e),(n.labelOffset||0)+(n.labelDirection||1)*(n.labelMargin||0)],i)}function sB(t,e,n,i,r,o){var a=mC.innerTextLayout(n.rotation,0,n.labelDirection);n.labelMargin=r.get(["label","margin"]),rB(e,i,r,o,{position:aB(i.axis,t,n),align:a.textAlign,verticalAlign:a.textVerticalAlign})}function lB(t,e,n){return{x1:t[n=n||0],y1:t[1-n],x2:e[n],y2:e[1-n]}}function uB(t,e,n){return{x:t[n=n||0],y:t[1-n],width:e[n],height:e[1-n]}}function cB(t,e,n,i,r,o){return{cx:t,cy:e,r0:n,r:i,startAngle:r,endAngle:o,clockwise:!0}}var hB=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=dB(a,o).getOtherAxis(o).getGlobalExtent(),u=o.toGlobalCoord(o.dataToCoord(e,!0));if(s&&"none"!==s){var c=iB(i),h=pB[s](o,u,l);h.style=c,t.graphicKey=h.type,t.pointer=h}sB(e,t,kC(a.getRect(),n),n,i,r)},e.prototype.getHandleTransform=function(t,e,n){var i=kC(e.axis.grid.getRect(),e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=aB(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=dB(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 c=(s[1]+s[0])/2,h=[c,c];h[l]=u[l];return{x:u[0],y:u[1],rotation:t.rotation,cursorPoint:h,tooltipOption:[{verticalAlign:"middle"},{align:"center"}][l]}},e}($E);function dB(t,e){var n={};return n[e.dim+"AxisIndex"]=e.index,t.getCartesian(n)}var pB={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:lB([e,n[0]],[e,n[1]],fB(t))}},shadow:function(t,e,n){var i=Math.max(1,t.getBandWidth()),r=n[1]-n[0];return{type:"Rect",shape:uB([e-i/2,n[0]],[i,r],fB(t))}}};function fB(t){return"x"===t.dim?0:1}var gB=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",z:50,type:"line",snap:!1,triggerTooltip:!0,triggerEmphasis:!0,value:null,status:null,link:[],animation:null,animationDurationUpdate:200,lineStyle:{color:tf.color.border,width:1,type:"dashed"},shadowStyle:{color:tf.color.shadowTint},label:{show:!0,formatter:null,precision:"auto",margin:3,color:tf.color.neutral00,padding:[5,7,5,7],backgroundColor:tf.color.accent60,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:tf.color.accent40,throttle:40}},e}(Qp),yB=sa(),vB=z;function mB(t,e,n){if(!r.node){var i=e.getZr();yB(i).records||(yB(i).records={}),function(t,e){if(yB(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);vB(yB(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)}))}yB(t).initialized=!0,n("click",H(_B,"click")),n("mousemove",H(_B,"mousemove")),n("globalout",xB)}(i,e),(yB(i).records[t]||(yB(i).records[t]={})).handler=n}}function xB(t,e,n){t.handler("leave",null,n)}function _B(t,e,n,i){e.handler(t,n,i)}function bB(t,e){if(!r.node){var n=e.getZr();(yB(n).records||{})[t]&&(yB(n).records[t]=null)}}var wB=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";mB("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){bB("axisPointer",e)},e.prototype.dispose=function(t,e){bB("axisPointer",e)},e.type="axisPointer",e}(Ky);function SB(t,e){var n,i=[],r=t.seriesIndex;if(null==r||!(n=e.getSeriesByIndex(r)))return{point:[]};var o=n.getData(),a=aa(o,t);if(null==a||a<0||U(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(),c=l.getOtherAxis(u).dim,h=u.dim,d="x"===c||"radius"===c?1:0,p=o.mapDimension(h),f=[];f[d]=o.get(p,a),f[1-d]=o.get(o.getCalculationInfo("stackResultDimension"),a),i=l.dataToPoint(f)||[]}else i=l.dataToPoint(o.getValues(E(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 MB=sa();function IB(t,e,n){var i=t.currTrigger,r=[t.x,t.y],o=t,a=t.dispatchAction||W(n.dispatchAction,n),s=e.getComponent("axisPointer").coordSysAxesInfo;if(s){kB(r)&&(r=SB({seriesIndex:o.seriesIndex,dataIndex:o.dataIndex},e).point);var l=kB(r),u=o.axesInfo,c=s.axesInfo,h="leave"===i||kB(r),d={},p={},f={list:[],map:{}},g={showPointer:H(CB,p),showTooltip:H(DB,f)};z(s.coordSysMap,(function(t,e){var n=l||t.containPoint(r);z(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(!h&&n&&(!u||o)){var a=o&&o.value;null!=a||l||(a=i.pointToData(r)),null!=a&&TB(t,a,g,!1,d)}}))}));var y={};return z(c,(function(t,e){var n=t.linkGroup;n&&!p[e]&&z(n.axesInfo,(function(e,i){var r=p[i];if(e!==t&&r){var o=r.value;n.mapper&&(o=t.axis.scale.parse(n.mapper(o,AB(e),AB(t)))),y[t.key]=o}}))})),z(y,(function(t,e){TB(c[e],t,g,!0,d)})),function(t,e,n){var i=n.axesInfo=[];z(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})}))}(p,c,d),function(t,e,n,i){if(kB(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=MB(i)[r]||{},a=MB(i)[r]={};z(t,(function(t,e){var n=t.axisPointerModel.option;"show"===n.status&&t.triggerEmphasis&&z(n.seriesDataIndices,(function(t){var e=t.seriesIndex+" | "+t.dataIndex;a[e]=t}))}));var s=[],l=[];z(o,(function(t,e){!a[e]&&l.push(t)})),z(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})}(c,0,n),d}}function TB(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 z(e.seriesModels,(function(e,l){var u,c,h=e.getData().mapDimensionsAll(i);if(e.getAxisTooltipData){var d=e.getAxisTooltipData(h,t,n);c=d.dataIndices,u=d.nestestValue}else{if(!(c=e.indicesOfNearest(i,h[0],t,"category"===n.type?.5:null)).length)return;u=e.getData().get(h[0],c[0])}if(null!=u&&isFinite(u)){var p=t-u,f=Math.abs(p);f<=a&&((f=0&&s<0)&&(a=f,s=p,r=u,o.length=0),z(c,(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&&A(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 CB(t,e,n,i){t[e.key]={value:n,payloadBatch:i}}function DB(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=qC(l),c=t.map[u];c||(c=t.map[u]={coordSysId:l.id,coordSysIndex:l.componentIndex,coordSysType:l.type,coordSysMainType:l.mainType,dataByAxis:[]},t.list.push(c)),c.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 AB(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 kB(t){return!t||null==t[0]||isNaN(t[0])||null==t[1]||isNaN(t[1])}function LB(t){$C.registerAxisPointerClass("CartesianAxisPointer",hB),t.registerComponentModel(gB),t.registerComponentView(wB),t.registerPreprocessor((function(t){if(t){(!t.axisPointer||0===t.axisPointer.length)&&(t.axisPointer={});var e=t.axisPointer.link;e&&!U(e)&&(t.axisPointer.link=[e])}})),t.registerProcessor(t.PRIORITY.PROCESSOR.STATISTIC,(function(t,e){t.getComponent("axisPointer").coordSysAxesInfo=UC(t,e)})),t.registerAction({type:"updateAxisPointer",event:"updateAxisPointer",update:":updateAxisPointer"},IB)}var PB=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 c=iB(i),h=OB[u](o,a,l,s);h.style=c,t.graphicKey=h.type,t.pointer=h}var d=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,c,h=i.getRadiusAxis().getExtent();if("radius"===o.dim){var d=[1,0,0,1,0,0];Me(d,d,s),Se(d,d,[i.cx,i.cy]),l=Sh([a,-r],d);var p=e.getModel("axisLabel").get("rotate")||0,f=mC.innerTextLayout(s,p*Math.PI/180,-1);u=f.textAlign,c=f.textVerticalAlign}else{var g=h[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",c=Math.abs(l[1]-v)/g<.3?"middle":l[1]>v?"top":"bottom"}return{position:l,align:u,verticalAlign:c}}(e,n,0,a,i.get(["label","margin"]));rB(t,n,i,r,d)},e}($E);var OB={line:function(t,e,n,i){return"angle"===t.dim?{type:"Line",shape:lB(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:cB(e.cx,e.cy,i[0],i[1],(-n-r/2)*o,(r/2-n)*o)}:{type:"Sector",shape:cB(e.cx,e.cy,n-r/2,n+r/2,0,2*Math.PI)}}},RB=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={z:0,center:["50%","50%"],radius:"80%"},e}(Qp),NB=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.getCoordSysModel=function(){return this.getReferringComponents("polar",ha).models[0]},e.type="polarAxis",e}(Qp);R(NB,nw);var zB=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}(NB),EB=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}(NB),BB=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}(Ww);BB.prototype.dataToRadius=Ww.prototype.dataToCoord,BB.prototype.radiusToData=Ww.prototype.coordToData;var VB=sa(),GB=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=Er(null==o?"":o+"",e.getFont(),"center","top"),u=Math.max(l.height,7)/s;isNaN(u)&&(u=1/0);var c=Math.max(0,Math.floor(u)),h=VB(t.model),d=h.lastAutoInterval,p=h.lastTickCount;return null!=d&&null!=p&&Math.abs(d-c)<=1&&Math.abs(p-r)<=1&&d>c?c=d:(h.lastTickCount=r,h.lastAutoInterval=c),c},e}(Ww);GB.prototype.dataToAngle=Ww.prototype.dataToCoord,GB.prototype.angleToData=Ww.prototype.coordToData;var FB=["radius","angle"],WB=function(){function t(t){this.dimensions=FB,this.type="polar",this.cx=0,this.cy=0,this._radiusAxis=new BB,this._angleAxis=new GB,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,n){return this.coordToPoint([this._radiusAxis.dataToRadius(t[0],e),this._angleAxis.dataToAngle(t[1],e)],n)},t.prototype.pointToData=function(t,e,n){n=n||[];var i=this.pointToCoord(t);return n[0]=this._radiusAxis.radiusToData(i[0],e),n[1]=this._angleAxis.angleToData(i[1],e),n},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,e){e=e||[];var n=t[0],i=t[1]/180*Math.PI;return e[0]=Math.cos(i)*n+this.cx,e[1]=-Math.sin(i)*n+this.cy,e},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,r=1e-4;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,o=n*n+i*i,a=this.r,s=this.r0;return a!==s&&o-r<=a*a&&o+r>=s*s},x:this.cx-e[1],y:this.cy-e[1],width:2*e[1],height:2*e[1]}},t.prototype.convertToPixel=function(t,e,n){return HB(e)===this?this.dataToPoint(n):null},t.prototype.convertFromPixel=function(t,e,n){return HB(e)===this?this.pointToData(n):null},t}();function HB(t){var e=t.seriesModel,n=t.polarModel;return n&&n.coordinateSystem||e&&e.coordinateSystem}function UB(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();z(Jb(e,"radius"),(function(t){r.scale.unionExtentFromData(e,t)})),z(Jb(e,"angle"),(function(t){i.scale.unionExtentFromData(e,t)}))}})),Xb(i.scale,i.model),Xb(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 YB(t,e){var n;if(t.type=e.get("type"),t.scale=Zb(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 i=e.get("startAngle"),r=null!==(n=e.get("endAngle"))&&void 0!==n?n:i+(t.inverse?-360:360);t.setExtent(i,r)}e.axis=t,t.model=e}var XB={dimensions:FB,create:function(t,e){var n=[];return t.eachComponent("polar",(function(t,i){var r=new WB(i+"");r.update=UB;var o=r.getRadiusAxis(),a=r.getAngleAxis(),s=t.findAxisModel("radiusAxis"),l=t.findAxisModel("angleAxis");YB(o,s),YB(a,l),function(t,e,n){var i=e.get("center"),r=Xp(e,n).refContainer;t.cx=yo(i[0],r.width)+r.x,t.cy=yo(i[1],r.height)+r.y;var o=t.getRadiusAxis(),a=Math.min(r.width,r.height)/2,s=e.get("radius");null==s?s=[0,"100%"]:U(s)||(s=[0,s]);var l=[yo(s[0],a),yo(s[1],a)];o.inverse?o.setExtent(l[1],l[0]):o.setExtent(l[0],l[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",ha).models[0];0,t.coordinateSystem=e.coordinateSystem}})),n}},ZB=["axisLine","axisLabel","axisTick","minorTick","splitLine","minorSplitLine","splitArea"];function jB(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 qB(t){return t.getRadiusAxis().inverse?0:1}function KB(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 $B=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({breakTicks:"none"}),a=n.getMinorTicksCoords(),s=E(n.getViewLabels(),(function(t){t=T(t);var e=n.scale,i="ordinal"===e.type?e.getRawOrdinalNumber(t.tickValue):t.tickValue;return t.coord=n.dataToCoord(i),t}));KB(s),KB(o),z(ZB,(function(e){!t.get([e,"show"])||n.scale.isBlank()&&"axisLine"!==e||JB[e](this.group,t,i,o,a,r,s)}),this)}},e.type="angleAxis",e}($C),JB={axisLine:function(t,e,n,i,r,o){var a,s=e.getModel(["axisLine","lineStyle"]),l=n.getAngleAxis(),u=Math.PI/180,c=l.getExtent(),h=qB(n),d=h?0:1,p=360===Math.abs(c[1]-c[0])?"Circle":"Arc";(a=0===o[d]?new Zh[p]({shape:{cx:n.cx,cy:n.cy,r:o[h],startAngle:-c[0]*u,endAngle:-c[1]*u,clockwise:l.inverse},style:s.getLineStyle(),z2:1,silent:!0}):new bc({shape:{cx:n.cx,cy:n.cy,r:o[h],r0:o[d]},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[qB(n)],u=E(i,(function(t){return new Ac({shape:jB(n,[l,l+s],t.coord)})}));t.add(mh(u,{style:k(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[qB(n)],c=[],h=0;hf?"left":"right",v=Math.abs(p[1]-g)/d<.3?"middle":p[1]>g?"top":"bottom";if(s&&s[h]){var m=s[h];q(m)&&m.textStyle&&(a=new wd(m.textStyle,l,l.ecModel))}var x=new Sl({silent:mC.isLabelSilent(e),style:Qh(a,{x:p[0],y:p[1],fill:a.getTextColor()||e.get(["axisLine","lineStyle","color"]),text:i.formattedLabel,align:y,verticalAlign:v})});if(t.add(x),zh({el:x,componentModel:e,itemName:i.formattedLabel,formatterParamsExtra:{isTruncated:function(){return x.isTruncated},value:i.rawLabel,tickIndex:r}}),c){var _=mC.makeAxisEventDataBase(e);_.targetType="axisLabel",_.value=i.rawLabel,zl(x).eventData=_}}),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=[],c=0;c=0?"p":"n",C=b;m&&(i[s][I]||(i[s][I]={p:b,n:b}),C=i[s][I][T]);var D=void 0,A=void 0,k=void 0,L=void 0;if("radius"===h.dim){var P=h.dataToCoord(M)-b,O=o.dataToCoord(I);Math.abs(P)=L})}}}))}var oV={startAngle:90,clockwise:!0,splitNumber:12,axisLabel:{rotate:0}},aV={splitNumber:5},sV=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="polar",e}(Ky);function lV(t,e){e=e||{};var n=t.coordinateSystem,i=t.axis,r={},o=i.position,a=i.orient,s=n.getRect(),l=[s.x,s.x+s.width,s.y,s.y+s.height],u={horizontal:{top:l[2],bottom:l[3]},vertical:{left:l[0],right:l[1]}};r.position=["vertical"===a?u.vertical[o]:l[0],"horizontal"===a?u.horizontal[o]:l[3]];r.rotation=Math.PI/2*{horizontal:0,vertical:1}[a];r.labelDirection=r.tickDirection=r.nameDirection={top:-1,bottom:1,right:1,left:-1}[o],t.get(["axisTick","inside"])&&(r.tickDirection=-r.tickDirection),it(e.labelInside,t.get(["axisLabel","inside"]))&&(r.labelDirection=-r.labelDirection);var c=t.get(["axisLabel","rotate"]);return r.labelRotate="top"===o?-c:c,r.z2=1,r}var uV=["splitArea","splitLine","breakArea"],cV=function(t){function e(){var n=null!==t&&t.apply(this,arguments)||this;return n.type=e.type,n.axisPointerClass="SingleAxisPointer",n}return n(e,t),e.prototype.render=function(e,n,i,r){var o=this.group;o.removeAll();var a=this._axisGroup;this._axisGroup=new to;var s=lV(e),l=new mC(e,i,s);l.build(),o.add(this._axisGroup),o.add(l.group),z(uV,(function(t){e.get([t,"show"])&&hV[t](this,this.group,this._axisGroup,e,i)}),this),Th(a,this._axisGroup,e),t.prototype.render.call(this,e,n,i,r)},e.prototype.remove=function(){tD(this)},e.type="singleAxis",e}($C),hV={splitLine:function(t,e,n,i,r){var o=i.axis;if(!o.scale.isBlank()){var a=i.getModel("splitLine"),s=a.getModel("lineStyle"),l=s.get("color");l=l instanceof Array?l:[l];for(var u=s.get("width"),c=i.coordinateSystem.getRect(),h=o.isHorizontal(),d=[],p=0,f=o.getTicksCoords({tickModel:a,breakTicks:"none",pruneByBreak:"preserve_extent_bound"}),g=[],y=[],v=0;v=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,e,n){n=n||[];var i=this.getAxis();return n[0]=i.coordToData(i.toLocalCoord(t["horizontal"===i.orient?0:1])),n},t.prototype.dataToPoint=function(t,e,n){var i=this.getAxis(),r=this.getRect();n=n||[];var o="horizontal"===i.orient?0:1;return t instanceof Array&&(t=t[0]),n[o]=i.toGlobalCoord(i.dataToCoord(+t)),n[1-o]=0===o?r.y+r.height/2:r.x+r.width/2,n},t.prototype.convertToPixel=function(t,e,n){return yV(e)===this?this.dataToPoint(n):null},t.prototype.convertFromPixel=function(t,e,n){return yV(e)===this?this.pointToData(n):null},t}();function yV(t){var e=t.seriesModel,n=t.singleAxisModel;return n&&n.coordinateSystem||e&&e.coordinateSystem}var vV={create:function(t,e){var n=[];return t.eachComponent("singleAxis",(function(i,r){var o=new gV(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",ha).models[0];t.coordinateSystem=e&&e.coordinateSystem}})),n},dimensions:fV},mV=["x","y"],xV=["width","height"],_V=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=SV(a,1-wV(o)),l=a.dataToPoint(e)[0],u=i.get("type");if(u&&"none"!==u){var c=iB(i),h=bV[u](o,l,s);h.style=c,t.graphicKey=h.type,t.pointer=h}sB(e,t,lV(n),n,i,r)},e.prototype.getHandleTransform=function(t,e,n){var i=lV(e,{labelInside:!1});i.labelMargin=n.get(["handle","margin"]);var r=aB(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=wV(r),s=SV(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=SV(o,1-a),c=(u[1]+u[0])/2,h=[c,c];return h[a]=l[a],{x:l[0],y:l[1],rotation:t.rotation,cursorPoint:h,tooltipOption:{verticalAlign:"middle"}}},e}($E),bV={line:function(t,e,n){return{type:"Line",subPixelOptimize:!0,shape:lB([e,n[0]],[e,n[1]],wV(t))}},shadow:function(t,e,n){var i=t.getBandWidth(),r=n[1]-n[0];return{type:"Rect",shape:uB([e-i/2,n[0]],[i,r],wV(t))}}};function wV(t){return t.isHorizontal()?0:1}function SV(t,e){var n=t.getRect();return[n[mV[e]],n[mV[e]]+n[xV[e]]]}var MV=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}(Ky);var IV=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=Kp(e);t.prototype.init.apply(this,arguments),TV(e,r)},e.prototype.mergeOption=function(e){t.prototype.mergeOption.apply(this,arguments),TV(this.option,e)},e.prototype.getCellSize=function(){return this.option.cellSize},e.type="calendar",e.layoutMode="box",e.defaultOption={z:2,left:80,top:60,cellSize:20,orient:"horizontal",splitLine:{show:!0,lineStyle:{color:tf.color.axisLine,width:1,type:"solid"}},itemStyle:{color:tf.color.neutral00,borderWidth:1,borderColor:tf.color.neutral10},dayLabel:{show:!0,firstDay:0,position:"start",margin:tf.size.s,color:tf.color.secondary},monthLabel:{show:!0,position:"start",margin:tf.size.s,align:"center",formatter:null,color:tf.color.secondary},yearLabel:{show:!0,position:null,margin:tf.size.xl,formatter:null,color:tf.color.quaternary,fontFamily:"sans-serif",fontWeight:"bolder",fontSize:20}},e}(Qp);function TV(t,e){var n,i=t.cellSize;1===(n=U(i)?i:t.cellSize=[i,i]).length&&(n[1]=n[0]);var r=E([0,1],(function(t){return function(t,e){return null!=t[Bp[e][0]]||null!=t[Bp[e][1]]&&null!=t[Bp[e][2]]}(e,t)&&(n[t]="auto"),null!=n[t]&&"auto"!==n[t]}));qp(t,e,{type:"box",ignoreSize:r})}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.render=function(t,e,n){var i=this.group;i.removeAll();var r=t.coordinateSystem,o=r.getRangeInfo(),a=r.getOrient(),s=e.getLocaleModel();this._renderDayRect(t,o,i),this._renderLines(t,o,a,i),this._renderYearText(t,o,a,i),this._renderMonthText(t,s,a,i),this._renderWeekText(t,s,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.dataToCalendarLayout([s],!1).tl,u=new xl({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,c=0;u.time<=e.end.time;c++){d(u.formatedDate),0===c&&(u=o.getDateInfo(e.start.y+"-"+e.start.m));var h=u.date;h.setMonth(h.getMonth()+1),u=o.getDateInfo(h)}function d(e){r._firstDayOfMonth.push(o.getDateInfo(e)),r._firstDayPoints.push(o.dataToCalendarLayout([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)}d(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 Tc({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.dataToCalendarLayout([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 X(t)&&t?(n=t,z(e,(function(t,e){n=n.replace("{"+e+"}",i?oe(t):t)})),n):Y(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,c="horizontal"===n?0:1,h={top:[l,s[c][1]],bottom:[l,s[1-c][1]],left:[s[1-c][0],u],right:[s[c][0],u]},d=e.start.y;+e.end.y>+e.start.y&&(d=d+"-"+e.end.y);var p=r.get("formatter"),f={start:e.start.y,end:e.end.y,nameMap:d},g=this._formatterLabel(p,f),y=new Sl({z2:30,style:Qh(r,{text:g}),silent:r.get("silent")});y.attr(this._yearTextPositionControl(y,h[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,i){var r=t.getModel("monthLabel");if(r.get("show")){var o=r.get("nameMap"),a=r.get("margin"),s=r.get("position"),l=r.get("align"),u=[this._tlpoints,this._blpoints];o&&!X(o)||(o&&(e=Od(o)||e),o=e.get(["time","monthAbbr"])||[]);var c="start"===s?0:1,h="horizontal"===n?0:1;a="start"===s?-a:a;for(var d="center"===l,p=r.get("silent"),f=0;f=r.start.time&&i.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/DV)-Math.floor(n[0].time/DV)+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),c=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:c,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.eachComponent((function(t,e){Rp({targetModel:e,coordSysType:"calendar",coordSysProvider:Np})})),i},t.dimensions=["time","value"],t}();function kV(t){var e=t.calendarModel,n=t.seriesModel;return e?e.coordinateSystem:n?n.coordinateSystem:null}var LV=1,PV=2,OV=3,RV={none:0,all:1,body:2,corner:3};function NV(t,e,n){var i=e[lh[n]].getCell(t);return!i&&j(t)&&t<0&&(i=e[lh[1-n]].getUnitLayoutInfo(n,Math.round(t))),i}function zV(t){var e=t||[];return e[0]=e[0]||[],e[1]=e[1]||[],e[0][0]=e[0][1]=e[1][0]=e[1][1]=NaN,e}function EV(t,e,n,i,r){BV(t[0],e,r,n,i,0),BV(t[1],e,r,n,i,1)}function BV(t,e,n,i,r,o){t[0]=1/0,t[1]=-1/0;var a=i[o],s=U(a)?a:[a],l=s.length,u=!!n;if(l>=1?(VV(t,e,s,u,r,o,0),l>1&&VV(t,e,s,u,r,o,l-1)):t[0]=t[1]=NaN,u){var c=-r[lh[1-o]].getLocatorCount(o),h=r[lh[o]].getLocatorCount(o)-1;n===RV.body?c=po(0,c):n===RV.corner&&(h=ho(-1,h)),h=e[0]&&t[0]<=e[1]}function YV(t,e){t.id.set(e[0][0],e[1][0]),t.span.set(e[0][1]-t.id.x+1,e[1][1]-t.id.y+1)}function XV(t,e,n,i){var r=NV(e[i][0],n,i),o=NV(e[i][1],n,i);t[lh[i]]=t[uh[i]]=NaN,r&&o&&(t[lh[i]]=r.xy,t[uh[i]]=o.xy+o.wh-r.xy)}function ZV(t,e,n,i){return t[lh[e]]=n,t[lh[1-e]]=i,t}var jV=function(){function t(t,e){this._cells=[],this._levels=[],this.dim=t,this.dimIdx="x"===t?0:1,this._model=e,this._uniqueValueGen=function(t){var e=t.toUpperCase(),n=new RegExp("^"+e+"([0-9]+)$"),i=0;function r(t){var e;null!=t&&(e=t.match(n))&&(i=po(i,+e[1]+1))}function o(){return""+e+i++}function a(t,e){for(var n=yt(),i=0;i=1,x=n[lh[i]],_=o.getLocatorCount(i)-1,b=new va;for(a.resetLayoutIterator(b,i);b.next();)w(b.item);for(o.resetLayoutIterator(b,i);b.next();)w(b.item);function w(t){nt(t.wh)&&(t.wh=v),t.xy=x,t.id[lh[i]]!==_||m||(t.wh=n[lh[i]]+n[uh[i]]-t.xy),x+=t.wh}}function _G(t,e){for(var n=e[lh[t]].resetCellIterator();n.next();){var i=n.item;wG(i.rect,t,i.id,i.span,e),wG(i.rect,1-t,i.id,i.span,e),i.type===OV&&(i.xy=i.rect[lh[t]],i.wh=i.rect[uh[t]])}}function bG(t,e){t.travelExistingCells((function(t){var n=t.span;if(n){var i=t.spanRect,r=t.id;wG(i,0,r,n,e),wG(i,1,r,n,e)}}))}function wG(t,e,n,i,r){t[uh[e]]=0;var o=n[lh[e]]<0?r[lh[1-e]]:r[lh[e]],a=o.getUnitLayoutInfo(e,n[lh[e]]);if(t[lh[e]]=a.xy,t[uh[e]]=a.wh,i[lh[e]]>1){var s=o.getUnitLayoutInfo(e,n[lh[e]]+i[lh[e]]-1);t[uh[e]]=s.xy+s.wh-a.xy}}function SG(t,e){return Math.max(Math.min(t,rt(e,1/0)),0)}function MG(t){var e=t.matrixModel,n=t.seriesModel;return e?e.coordinateSystem:n?n.coordinateSystem:null}var IG={inBody:1,inCorner:2,outside:3},TG={x:null,y:null,point:[]};function CG(t,e,n,i,r){var o=n[lh[e]],a=n[lh[1-e]],s=o.getUnitLayoutInfo(e,o.getLocatorCount(e)-1),l=o.getUnitLayoutInfo(e,0),u=a.getUnitLayoutInfo(e,-a.getLocatorCount(e)),c=a.shouldShow()?a.getUnitLayoutInfo(e,-1):null,h=t.point[e]=i[e];if(l||c)if(r!==RV.body)if(r!==RV.corner){var d=l?l.xy:c?c.xy+c.wh:NaN,p=u?u.xy:d,f=s?s.xy+s.wh:d;if(hf){if(!r)return void(t[lh[e]]=IG.outside);h=f}t.point[e]=h,t[lh[e]]=d<=h&&h<=f?IG.inBody:p<=h&&h<=d?IG.inCorner:IG.outside}else c?(t[lh[e]]=IG.inCorner,h=ho(c.xy+c.wh,po(u.xy,h)),t.point[e]=h):t[lh[e]]=IG.outside;else l?(t[lh[e]]=IG.inBody,h=ho(s.xy+s.wh,po(l.xy,h)),t.point[e]=h):t[lh[e]]=IG.outside;else t[lh[e]]=IG.outside}function DG(t,e,n,i){var r=1-n;if(t[lh[n]]!==IG.outside)for(i[lh[n]].resetCellIterator(mG);mG.next();){var o=mG.item;if(kG(t.point[n],o.rect,n)&&kG(t.point[r],o.rect,r))return e[n]=o.ordinal,void(e[r]=o.id[lh[r]])}}function AG(t,e,n,i){var r,o;if(t[lh[n]]!==IG.outside)for((t[lh[n]]===IG.inCorner?i[lh[1-n]]:i[lh[n]]).resetLayoutIterator(vG,n);vG.next();)if(r=t.point[n],(o=vG.item).xy<=r&&r<=o.xy+o.wh)return void(e[n]=vG.item.id[lh[n]])}function kG(t,e,n){return e[lh[n]]<=t&&t<=e[lh[n]]+e[uh[n]]}function LG(t,e){var n;return z(e,(function(e){null!=t[e]&&"auto"!==t[e]&&(n=!0)})),n}var PG=["transition","enterFrom","leaveTo"],OG=PG.concat(["enterAnimation","updateAnimation","leaveAnimation"]);function RG(t,e,n){if(n&&(!t[n]&&e[n]&&(t[n]={}),t=t[n],e=e[n]),t&&e)for(var i=n?PG:OG,r=0;r=0;l--){var d,p,f;if(f=null!=(p=ia((d=n[l]).id,null))?r.get(p):null){var g=f.parent,y=(h=EG(g),{}),v=Zp(f,d,g===i?{width:o,height:a}:{width:h.width,height:h.height},null,{hv:d.hv,boundingMode:d.bounding},y);if(!EG(f).isNew&&v){for(var m=d.transition,x={},_=0;_=0)?x[b]=w:f[b]=w}th(f,x,t,0)}else f.attr(y)}}},e.prototype._clear=function(){var t=this,e=this._elMap;e.each((function(n){FG(n,EG(n).option,e,t._lastGraphicModel)})),this._elMap=yt()},e.prototype.dispose=function(){this._clear()},e.type="graphic",e}(Ky);function VG(t){var e=_t(zG,t)?zG[t]:fh(t);var n=new e({});return EG(n).type=t,n}function GG(t,e,n,i){var r=VG(n);return e.add(r),i.set(t,r),EG(r).id=t,EG(r).isNew=!0,r}function FG(t,e,n,i){t&&t.parent&&("group"===t.type&&t.traverse((function(t){FG(t,e,n,i)})),aE(t,e,i),n.removeKey(EG(t).id))}function WG(t,e,n,i){t.isGroup||z([["cursor",os.prototype.cursor],["zlevel",i||0],["z",n||0],["z2",0]],(function(n){var i=n[0];_t(e,i)?t[i]=rt(e[i],n[1]):null==t[i]&&(t[i]=n[1])})),z(F(e),(function(n){if(0===n.indexOf("on")){var i=e[n];t[n]=Y(i)?i:null}})),_t(e,"draggable")&&(t.draggable=e.draggable),null!=e.name&&(t.name=e.name),null!=e.id&&(t.id=e.id)}var HG=["x","y","radius","angle","single"],UG=["cartesian2d","polar","singleAxis"];function YG(t){return t+"Axis"}function XG(t,e){var n,i=yt(),r=[],o=yt();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 ZG(t){var e=t.ecModel,n={infoList:[],infoMap:yt()};return t.eachTargetAxis((function(t,i){var r=e.getComponent(YG(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 jG=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}(),qG=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=KG(t);this.settledOption=i,this.mergeDefaultAndTheme(t,n),this._doInit(i)},e.prototype.mergeOption=function(t){var e=KG(t);C(this.option,t,!0),C(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;z([["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=yt();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 z(HG,(function(n){var i=this.getReferringComponents(YG(n),da);if(i.specified){e=!0;var r=new jG;z(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 jG;if(o.add(r.componentIndex),t.set(n,o),i=!1,"x"===n||"y"===n){var a=r.getReferringComponents("grid",ha).models[0];a&&z(e,(function(t){r.componentIndex!==t.componentIndex&&a===t.getReferringComponents("grid",ha).models[0]&&o.add(t.componentIndex)}))}}}i&&z(HG,(function(e){if(i){var r=n.findComponents({mainType:YG(e),filter:function(t){return"category"===t.get("type",!0)}});if(r[0]){var o=new jG;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");z([["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(YG(e),n))}),this),t},e.prototype.eachTargetAxis=function(t,e){this._targetAxisInfoMap.each((function(n,i){z(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(YG(t),e)},e.prototype.setRawRange=function(t){var e=this.option,n=this.settledOption;z([["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;z(["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=YG(this._dimName),i=e.getReferringComponents(n,ha).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 T(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=[];tF(["start","end"],(function(l,u){var c=t[l],h=t[l+"Value"];"percent"===r[u]?(null==c&&(c=o[u]),h=i.parse(go(c,o,n))):(e=!0,c=go(h=null==h?n[u]:i.parse(h),n,o)),s[u]=null==h||isNaN(h)?n[u]:h,a[u]=null==c||isNaN(c)?o[u]:c})),eF(s),eF(a);var l=this._minMaxSpan;function u(t,e,n,r,o){var a=o?"Span":"ValueSpan";CO(0,t,n,"all",l["min"+a],l["max"+a]);for(var s=0;s<2;s++)e[s]=go(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];tF(n,(function(t){!function(t,e,n){e&&z(Jb(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=Hb(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&&tF(i,(function(t){var e=t.getData(),i=e.mapDimensionsAll(n);if(i.length){if("weakFilter"===r){var a=e.getStore(),s=E(i,(function(t){return e.getDimensionIndex(t)}),e);e.filterSelf((function(t){for(var e,n,r,l=0;lo[1];if(c&&!h&&!d)return!0;c&&(r=!0),h&&(e=!0),d&&(n=!0)}return r&&e&&n}))}else tF(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)}}));tF(i,(function(t){e.setApproximateExtent(o,t)}))}}))}},t.prototype._updateMinMaxSpan=function(){var t=this._minMaxSpan={},e=this._dataZoomModel,n=this._dataExtent;tF(["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=go(n[0]+o,n,[0,100],!0):null!=r&&(o=go(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=wo(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 iF={getTargetSeries:function(t){function e(e){t.eachComponent("dataZoom",(function(n){n.eachTargetAxis((function(i,r){var o=t.getComponent(YG(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 nF(e,i,o,t),n.push(r.__dzAxisProxy))}));var i=yt();return z(n,(function(t){z(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 rF=!1;function oF(t){rF||(rF=!0,t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,iF),function(t){t.registerAction("dataZoom",(function(t,e){z(XG(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 aF(t){t.registerComponentModel($G),t.registerComponentView(QG),oF(t)}var sF=function(){},lF={};function uF(t,e){lF[t]=e}function cF(t){return lF[t]}var hF=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;z(this.option.feature,(function(t,n){var i=cF(n);i&&(i.getDefaultOption&&(i.defaultOption=i.getDefaultOption(e)),C(t,i.defaultOption))}))},e.type="toolbox",e.layoutMode={type:"box",ignoreSize:!0},e.defaultOption={show:!0,z:6,orient:"horizontal",left:"right",top:"top",backgroundColor:"transparent",borderColor:tf.color.border,borderRadius:0,borderWidth:0,padding:tf.size.m,itemSize:15,itemGap:tf.size.s,showTitle:!0,iconStyle:{borderColor:tf.color.accent50,color:"none"},emphasis:{iconStyle:{borderColor:tf.color.accent50}},tooltip:{show:!1,position:"bottom"}},e}(Qp);function dF(t,e){var n=yp(e.get("padding")),i=e.getItemStyle(["color","opacity"]);return i.fill=e.get("backgroundColor"),new xl({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 pF=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="vertical"===t.get("orient"),s=t.get("feature")||{},l=this._features||(this._features={}),u=[];z(s,(function(t,e){u.push(e)})),new f_(this._featureNames||[],u).add(f).update(f).remove(H(f,null)).execute(),this._featureNames=u;var c=Xp(t,n).refContainer,h=t.getBoxLayoutParams(),d=t.get("padding"),p=Hp(h,c,d);Gp(t.get("orient"),r,t.get("itemGap"),p.width,p.height),Zp(r,h,c,d),r.add(dF(r.getBoundingRect(),t)),a||r.eachChild((function(t){var e=t.__title,i=t.ensureState("emphasis"),a=i.textConfig||(i.textConfig={}),s=t.getTextContent(),l=s&&s.ensureState("emphasis");if(l&&!Y(l)&&e){var u=l.style||(l.style={}),c=Er(e,Sl.makeFont(u)),h=t.x+r.x,d=!1;t.y+r.y+o+c.height>n.getHeight()&&(a.position="top",d=!0);var p=d?-5-c.height:o+10;h+c.width/2>n.getWidth()?(a.position=["100%",p],u.align="right"):h-c.width/2<0&&(a.position=[0,p],u.align="left")}}))}function f(c,h){var d,p=u[c],f=u[h],g=s[p],y=new wd(g,t,t.ecModel);if(i&&null!=i.newTitle&&i.featureName===p&&(g.title=i.newTitle),p&&!f){if(function(t){return 0===t.indexOf("my")}(p))d={onclick:y.option.onclick,featureName:p};else{var v=cF(p);if(!v)return;d=new v}l[p]=d}else if(!(d=l[f]))return;d.uid=Md("toolbox-feature"),d.model=y,d.ecModel=e,d.api=n;var m=d instanceof sF;p||!f?!y.get("show")||m&&d.unusable?m&&d.remove&&d.remove(e,n):(!function(i,s,l){var u,c,h=i.getModel("iconStyle"),d=i.getModel(["emphasis","iconStyle"]),p=s instanceof sF&&s.getIcons?s.getIcons():i.get("icon"),f=i.get("title")||{};X(p)?(u={})[l]=p:u=p;X(f)?(c={})[l]=f:c=f;var g=i.iconPaths={};z(u,(function(l,u){var p=Ah(l,{},{x:-o/2,y:-o/2,width:o,height:o});p.setStyle(h.getItemStyle()),p.ensureState("emphasis").style=d.getItemStyle();var f=new Sl({style:{text:c[u],align:d.get("textAlign"),borderRadius:d.get("textBorderRadius"),padding:d.get("textPadding"),fill:null,font:od({fontStyle:d.get("textFontStyle"),fontFamily:d.get("textFontFamily"),fontSize:d.get("textFontSize"),fontWeight:d.get("textFontWeight")},e)},ignore:!0});p.setTextContent(f),zh({el:p,componentModel:t,itemName:u,formatterParamsExtra:{title:c[u]}}),p.__title=c[u],p.on("mouseover",(function(){var e=d.getItemStyle(),i=a?null==t.get("right")&&"right"!==t.get("left")?"right":"left":null==t.get("bottom")&&"bottom"!==t.get("top")?"bottom":"top";f.setStyle({fill:d.get("textFill")||e.fill||e.stroke||tf.color.neutral99,backgroundColor:d.get("textBackgroundColor")}),p.setTextConfig({position:d.get("textPosition")||i}),f.ignore=!t.get("showTitle"),n.enterEmphasis(this)})).on("mouseout",(function(){"emphasis"!==i.get(["iconStatus",u])&&n.leaveEmphasis(this),f.hide()})),("emphasis"===i.get(["iconStatus",u])?du:pu)(p),r.add(p),p.on("click",W(s.onclick,s,e,n,u)),g[u]=p}))}(y,d,p),y.setIconStatus=function(t,e){var n=this.option,i=this.iconPaths;n.iconStatus=n.iconStatus||{},n.iconStatus[t]=e,i[t]&&("emphasis"===e?du:pu)(i[t])},d instanceof sF&&d.render&&d.render(y,e,n,i)):m&&d.dispose&&d.dispose(e,n)}},e.prototype.updateView=function(t,e,n,i){z(this._features,(function(t){t instanceof sF&&t.updateView&&t.updateView(t.model,e,n,i)}))},e.prototype.remove=function(t,e){z(this._features,(function(n){n instanceof sF&&n.remove&&n.remove(t,e)})),this.group.removeAll()},e.prototype.dispose=function(t,e){z(this._features,(function(n){n instanceof sF&&n.dispose&&n.dispose(t,e)}))},e.type="toolbox",e}(Ky);var fF=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",o="svg"===e.getZr().painter.getType(),a=o?"svg":n.get("type",!0)||"png",s=e.getConnectedDataURL({type:a,backgroundColor:n.get("backgroundColor",!0)||t.get("backgroundColor")||tf.color.neutral00,connectedBackgroundColor:n.get("connectedBackgroundColor"),excludeComponents:n.get("excludeComponents"),pixelRatio:n.get("pixelRatio")}),l=r.browser;if("function"!=typeof MouseEvent||!l.newEdge&&(l.ie||l.edge))if(window.navigator.msSaveOrOpenBlob||o){var u=s.split(","),c=u[0].indexOf("base64")>-1,h=o?decodeURIComponent(u[1]):u[1];c&&(h=window.atob(h));var d=i+"."+a;if(window.navigator.msSaveOrOpenBlob){for(var p=h.length,f=new Uint8Array(p);p--;)f[p]=h.charCodeAt(p);var g=new Blob([f]);window.navigator.msSaveOrOpenBlob(g,d)}else{var y=document.createElement("iframe");document.body.appendChild(y);var v=y.contentWindow,m=v.document;m.open("image/svg+xml","replace"),m.write(h),m.close(),v.focus(),m.execCommand("SaveAs",!0,d),document.body.removeChild(y)}}else{var x=n.get("lang"),_='',b=window.open();b.document.write(_),b.document.title=i}else{var w=document.createElement("a");w.download=i+"."+a,w.target="_blank",w.href=s;var S=new MouseEvent("click",{view:document.defaultView,bubbles:!0,cancelable:!1});w.dispatchEvent(S)}},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:tf.color.neutral00,name:"",excludeComponents:["toolbox"],lang:t.getLocaleModel().get(["toolbox","saveAsImage","lang"])}},e}(sF),gF="__ec_magicType_stack__",yF=[["line","bar"],["stack"]],vF=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 z(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(mF[n]){var o,a={series:[]};z(yF,(function(t){P(t,n)>=0&&z(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=mF[n](e,r,t,i);o&&(k(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",c=t.getReferringComponents(u,ha).models[0].componentIndex;a[u]=a[u]||[];for(var h=0;h<=c;h++)a[u][c]=a[u][c]||{};a[u][c].boundaryGap="bar"===n}}}));var s=n;"stack"===n&&(o=C({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}(sF),mF={line:function(t,e,n,i){if("bar"===t)return C({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 C({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")===gF;if("line"===t||"bar"===t)return i.setIconStatus("stack",r?"normal":"emphasis"),C({id:e,stack:r?"":gF},i.get(["option","stack"])||{},!0)}};Qx({type:"changeMagicType",event:"magicTypeChanged",update:"prepareAndUpdate"},(function(t,e){e.mergeOption(t.newOption)}));var xF=new Array(60).join("-"),_F="\t";function bF(t){return t.replace(/^\s\s*/,"").replace(/\s\s*$/,"")}var wF=new RegExp("[\t]+","g");function SF(t,e){var n=t.split(new RegExp("\n*"+xF+"\n*","g")),i={series:[]};return z(n,(function(t,n){if(function(t){if(t.slice(0,t.indexOf("\n")).indexOf(_F)>=0)return!0}(t)){var r=function(t){for(var e=t.split(/\n+/g),n=[],i=E(bF(e.shift()).split(wF),(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=EF[t.brushType](0,n,e);t.__rangeOffset={offset:VF[t.brushType](i.values,t.range,[1,1]),xyMinMax:i.xyMinMax}}})),t},t.prototype.matchOutputRanges=function(t,e,n){z(t,(function(t){var i=this.findTargetInfo(t,e);i&&!0!==i&&z(i.coordSyses,(function(i){var r=EF[t.brushType](1,i,t.range,!0);n(t,r.values,i,e)}))}),this)},t.prototype.setInputRanges=function(t,e){z(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=EF[t.brushType](0,s.coordSys,t.coordRange),u=t.__rangeOffset;t.range=u?VF[t.brushType](l.values,u.offset,(n=l.xyMinMax,i=u.xyMinMax,r=FF(n),o=FF(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 E(this._targetInfoList,(function(n){var i=n.getPanelRect();return{panelId:n.panelId,defaultBrushType:e?e(n):null,clipPath:AR(i),isTargetByCursor:LR(i,t,n.coordSysModel),getLinearBrushOtherExtent:kR(i)}}))},t.prototype.controlSeries=function(t,e,n){var i=this.findTargetInfo(t,n);return!0===i||i&&P(i.coordSyses,e.coordinateSystem)>=0},t.prototype.findTargetInfo=function(t,e){for(var n=this._targetInfoList,i=OF(e,t),r=0;rt[1]&&t.reverse(),t}function OF(t,e){return ua(t,e,{includeMainTypes:kF})}var RF={grid:function(t,e){var n=t.xAxisModels,i=t.yAxisModels,r=t.gridModels,o=yt(),a={},s={};(n||i||r)&&(z(n,(function(t){var e=t.axis.grid.model;o.set(e.id,e),a[e.id]=!0})),z(i,(function(t){var e=t.axis.grid.model;o.set(e.id,e),s[e.id]=!0})),z(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=[];z(r.getCartesians(),(function(t,e){(P(n,t.getAxis("x").model)>=0||P(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:zF.grid,xAxisDeclared:a[t.id],yAxisDeclared:s[t.id]})})))},geo:function(t,e){z(t.geoModels,(function(t){var n=t.coordinateSystem;e.push({panelId:"geo--"+t.id,geoModel:t,coordSysModel:t,coordSys:n,coordSyses:[n],getPanelRect:zF.geo})}))}},NF=[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}],zF={grid:function(){return this.coordSys.master.getRect().clone()},geo:function(){var t=this.coordSys,e=t.getBoundingRect().clone();return e.applyTransform(wh(t)),e}},EF={lineX:H(BF,0),lineY:H(BF,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=[PF([r[0],o[0]]),PF([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:E(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 BF(t,e,n,i){var r=n.getAxis(["x","y"][t]),o=PF(E([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 VF={lineX:H(GF,0),lineY:H(GF,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 E(t,(function(t,i){return[t[0]-n[0]*e[i][0],t[1]-n[1]*e[i][1]]}))}};function GF(t,e,n,i){return[e[0]-i[t]*n[0],e[1]-i[t]*n[1]]}function FF(t){return t?[t[0][1]-t[0][0],t[1][1]-t[1][0]]:[NaN,NaN]}var WF,HF,UF=z,YF=jo+"toolbox-dataZoom_",XF=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 JO(n.getZr()),this._brushController.on("brush",W(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 LF(jF(t),e,{include:["grid"]}),s=a.makePanelOpts(r,(function(t){return t.xAxisDeclared&&!t.yAxisDeclared?"lineX":!t.xAxisDeclared&&t.yAxisDeclared?"lineY":"rect"}));n._brushController.setPanels(s).enableBrush(!(!o||!s.length)&&{brushType:"auto",brushStyle:t.getModel("brushStyle").getItemStyle()})}(t,e,this,i,n),function(t,e){t.setIconStatus("back",function(t){return DF(t).length}(e)>1?"emphasis":"normal")}(t,e)},e.prototype.onclick=function(t,e,n){ZF[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 LF(jF(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=DF(t);TF(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=CO(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=[];UF(t,(function(t,n){e.push(T(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:tf.color.backgroundTint}}},e}(sF),ZF={zoom:function(){var t=!this._isZoomActive;this.api.dispatchAction({type:"takeGlobalCursor",key:"dataZoomSelect",dataZoomSelectActive:t})},back:function(){this._dispatchZoomAction(function(t){var e=DF(t),n=e[e.length-1];e.length>1&&e.pop();var i={};return TF(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 jF(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}WF="dataZoom",HF=function(t){var e=t.getComponent("toolbox",0),n=["feature","dataZoom"];if(e&&null!=e.get(n)){var i=e.getModel(n),r=[],o=ua(t,jF(i));return UF(o.xAxisModels,(function(t){return a(t,"xAxis","xAxisIndex")})),UF(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:YF+e+o};a[n]=o,r.push(a)}},lt(null==Df.get(WF)&&HF),Df.set(WF,HF);var qF=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={z:60,show:!0,showContent:!0,trigger:"item",triggerOn:"mousemove|click",alwaysShowContent:!1,renderMode:"auto",confine:null,showDelay:0,hideDelay:100,transitionDuration:.4,displayTransition:!0,enterable:!1,backgroundColor:tf.color.neutral00,shadowBlur:10,shadowColor:"rgba(0, 0, 0, .2)",shadowOffsetX:1,shadowOffsetY:2,borderRadius:4,borderWidth:1,defaultBorderColor:tf.color.border,padding:null,extraCssText:"",axisPointer:{type:"line",axis:"auto",animation:"auto",animationDurationUpdate:200,animationEasingUpdate:"exponentialOut",crossStyle:{color:tf.color.borderShade,width:1,type:"dashed",textStyle:{}}},textStyle:{color:tf.color.tertiary,fontSize:14}},e}(Qp);function KF(t){var e=t.get("confine");return null!=e?!!e:"richText"===t.get("renderMode")}function $F(t){if(r.domSupported)for(var e=document.documentElement.style,n=0,i=t.length;n0&&o.push(function(t,e,n){var i="cubic-bezier(0.23,1,0.32,1)",o="",a="";return n&&(a="opacity"+(o=" "+t/2+"s "+i)+",visibility"+o),e||(o=" "+t+"s "+i,a+=(a.length?",":"")+(r.transformSupported?""+eW+o:",left"+o+",top"+o)),tW+":"+a}(a,n,i)),s&&o.push("background-color:"+s),z(["width","color","radius"],(function(e){var n="border-"+e,i=gp(n),r=t.get(i);null!=r&&o.push(n+":"+r+("color"===e?"":"px"))})),o.push(function(t){var e=[],n=t.get("fontSize"),i=t.getTextColor();i&&e.push("color:"+i),e.push("font:"+t.getFont());var r=rt(t.get("lineHeight"),Math.round(3*n/2));n&&e.push("line-height:"+r+"px");var o=t.get("textShadowColor"),a=t.get("textShadowBlur")||0,s=t.get("textShadowOffsetX")||0,l=t.get("textShadowOffsetY")||0;return o&&a&&e.push("text-shadow:"+s+"px "+l+"px "+a+"px "+o),z(["decoration","align"],(function(n){var i=t.get(n);i&&e.push("text-"+n+":"+i)})),e.join(";")}(d)),null!=p&&o.push("padding:"+yp(p).join("px ")+"px"),o.join(";")+";"}function oW(t,e,n,i,r){var o=e&&e.painter;if(n){var a=o&&o.getViewportRoot();a&&function(t,e,n,i,r){ee(te,e,i,r,!0)&&ee(t,n,te[0],te[1])}(t,a,n,i,r)}else{t[0]=i,t[1]=r;var s=o&&o.getViewportRootOffset();s&&(t[0]+=s.offsetLeft,t[1]+=s.offsetTop)}t[2]=t[0]/e.getWidth(),t[3]=t[1]/e.getHeight()}var aW=function(){function t(t,e){if(this._show=!1,this._styleCoord=[0,0,0,0],this._enterable=!0,this._alwaysShowContent=!1,this._firstShow=!0,this._longHide=!0,r.wxa)return null;var n=document.createElement("div");n.domBelongToZr=!0,this.el=n;var i=this._zr=t.getZr(),o=e.appendTo,a=o&&(X(o)?document.querySelector(o):J(o)?o:Y(o)&&o(t.getDom()));oW(this._styleCoord,i,a,t.getWidth()/2,t.getHeight()/2),(a||t.getDom()).appendChild(n),this._api=t,this._container=a;var s=this;n.onmouseenter=function(){s._enterable&&(clearTimeout(s._hideTimeout),s._show=!0),s._inContent=!0},n.onmousemove=function(t){if(t=t||window.event,!s._enterable){var e=i.handler;de(i.painter.getViewportRoot(),t,!0),e.dispatch("mousemove",t)}},n.onmouseleave=function(){s._inContent=!1,s._enterable&&s._show&&s.hideLater(s._hideDelay)}}return t.prototype.update=function(t){if(!this._container){var e=this._api.getDom(),n=(o="position",(a=(r=e).currentStyle||document.defaultView&&document.defaultView.getComputedStyle(r))?o?a[o]:a:null),i=e.style;"absolute"!==i.position&&"absolute"!==n&&(i.position="relative")}var r,o,a,s=t.get("alwaysShowContent");s&&this._moveIfResized(),this._alwaysShowContent=s,this._enableDisplayTransition=t.get("displayTransition")&&t.get("transitionDuration")>0,this.el.className=t.get("className")||""},t.prototype.show=function(t,e){clearTimeout(this._hideTimeout),clearTimeout(this._longHideTimeout);var n=this.el,i=n.style,r=this._styleCoord;n.innerHTML?i.cssText=nW+rW(t,!this._firstShow,this._longHide,this._enableDisplayTransition)+iW(r[0],r[1],!0)+"border-color:"+wp(e)+";"+(t.get("extraCssText")||"")+";pointer-events:"+(this._enterable?"auto":"none"):i.display="none",this._show=!0,this._firstShow=!1,this._longHide=!1},t.prototype.setContent=function(t,e,n,i,r){var o=this.el;if(null!=t){var a="";if(X(r)&&"item"===n.get("trigger")&&!KF(n)&&(a=function(t,e,n){if(!X(n)||"inside"===n)return"";var i=t.get("backgroundColor"),r=t.get("borderWidth");e=wp(e);var o,a,s="left"===(o=n)?"right":"right"===o?"left":"top"===o?"bottom":"top",l=Math.max(1.5*Math.round(r),6),u="",c=eW+":";P(["left","right"],s)>-1?(u+="top:50%",c+="translateY(-50%) rotate("+(a="left"===s?-225:-45)+"deg)"):(u+="left:50%",c+="translateX(-50%) rotate("+(a="top"===s?225:45)+"deg)");var h=a*Math.PI/180,d=l+r,p=d*Math.abs(Math.cos(h))+d*Math.abs(Math.sin(h)),f=e+" solid "+r+"px;";return'
'}(n,i,r)),X(t))o.innerHTML=t+a;else if(t){o.innerHTML="",U(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,i=t.get("triggerOn");if(null!=this._lastX&&null!=this._lastY&&"none"!==i&&"click"!==i){var r=this;clearTimeout(this._refreshUpdateTimeout),this._refreshUpdateTimeout=setTimeout((function(){!n.isDisposed()&&r.manuallyShowTip(t,e,n,{x:r._lastX,y:r._lastY,dataByCoordSys:r._lastDataByCoordSys})}))}},e.prototype.manuallyShowTip=function(t,e,n,i){if(i.from!==this.uid&&!r.node&&n.getDom()){var o=fW(i,n);this._ticket="";var a=i.dataByCoordSys,s=function(t,e,n){var i=ca(t).queryOptionMap,r=i.keys()[0];if(!r||"series"===r)return;var o=pa(e,r,i.get(r),{useDefault:!1,enableAll:!1,enableNone:!1}),a=o.models[0];if(!a)return;var s,l=n.getViewOfComponentModel(a);if(l.group.traverse((function(e){var n=zl(e).tooltipConfig;if(n&&n.name===t.name)return s=e,!0})),s)return{componentMainType:r,componentIndex:a.componentIndex,el:s}}(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"},o)}else if(i.tooltip&&null!=i.x&&null!=i.y){var u=hW;u.x=i.x,u.y=i.y,u.update(),zl(u).tooltipConfig={name:null,option:i.tooltip},this._tryShow({offsetX:i.x,offsetY:i.y,target:u},o)}else if(a)this._tryShow({offsetX:i.x,offsetY:i.y,position:i.position,dataByCoordSys:a,tooltipOption:i.tooltipOption},o);else if(null!=i.seriesIndex){if(this._manuallyAxisShowTip(t,e,n,i))return;var c=SB(i,e),h=c.point[0],d=c.point[1];null!=h&&null!=d&&this._tryShow({offsetX:h,offsetY:d,target:c.el,position:i.position,positionDefault:"bottom"},o)}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},o))}},e.prototype.manuallyHideTip=function(t,e,n,i){var r=this._tooltipContent;this._tooltipModel&&r.hideLater(this._tooltipModel.get("hideDelay")),this._lastX=this._lastY=this._lastDataByCoordSys=null,i.from!==this.uid&&this._hide(fW(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"===pW([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;if("legend"===zl(n).ssrType)return;this._lastDataByCoordSys=null,Qv(n,(function(t){if(t.tooltipDisabled)return r=o=null,!0;r||o||(null!=zl(t).dataIndex?r=t:null!=zl(t).tooltipConfig&&(o=t))}),!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=W(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=pW([e.tooltipOption],i),a=this._renderMode,s=[],l=Ty("section",{blocks:[],noHeader:!0}),u=[],c=new Ey;z(t,(function(t){z(t.dataByAxis,(function(t){var e=n.getComponent(t.axisDim+"Axis",t.axisIndex),r=t.value;if(e&&null!=r){var o=oB(r,e.axis,n,t.seriesDataIndices,t.valueLabelOpt),h=Ty("section",{header:o,noHeader:!ut(o),sortBlocks:!0,blocks:[]});l.blocks.push(h),z(t.seriesDataIndices,(function(l){var d=n.getSeriesByIndex(l.seriesIndex),p=l.dataIndexInside,f=d.getDataParams(p);if(!(f.dataIndex<0)){f.axisDim=t.axisDim,f.axisIndex=t.axisIndex,f.axisType=t.axisType,f.axisId=t.axisId,f.axisValue=qb(e.axis,{value:r}),f.axisValueLabel=o,f.marker=c.makeTooltipMarker("item",wp(f.color),a);var g=Wg(d.formatTooltip(p,!0,null)),y=g.frag;if(y){var v=pW([d],i).get("valueFormatter");h.blocks.push(v?A({valueFormatter:v},y):y)}g.text&&u.push(g.text),s.push(f)}}))}}))})),l.blocks.reverse(),u.reverse();var h=e.position,d=o.get("order"),p=Py(l,c,a,d,n.get("useUTC"),o.get("textStyle"));p&&u.unshift(p);var f="richText"===a?"\n\n":"
",g=u.join(f);this._showOrMove(o,(function(){this._updateContentNotChangedOnAxis(t,s)?this._updatePosition(o,h,r[0],r[1],this._tooltipContent,s):this._showTooltipContent(o,g,s,Math.random()+"",r[0],r[1],h,null,c)}))},e.prototype._showSeriesItemTooltip=function(t,e,n){var i=this._ecModel,r=zl(e),o=r.seriesIndex,a=i.getSeriesByIndex(o),s=r.dataModel||a,l=r.dataIndex,u=r.dataType,c=s.getData(u),h=this._renderMode,d=t.positionDefault,p=pW([c.getItemModel(l),s,a&&(a.coordinateSystem||{}).model],this._tooltipModel,d?{position:d}:null),f=p.get("trigger");if(null==f||"item"===f){var g=s.getDataParams(l,u),y=new Ey;g.marker=y.makeTooltipMarker("item",wp(g.color),h);var v=Wg(s.formatTooltip(l,!1,u)),m=p.get("order"),x=p.get("valueFormatter"),_=v.frag,b=_?Py(x?A({valueFormatter:x},_):_,y,h,m,i.get("useUTC"),p.get("textStyle")):v.text,w="item_"+s.name+"_"+l;this._showOrMove(p,(function(){this._showTooltipContent(p,b,g,w,t.offsetX,t.offsetY,t.position,t.target,y)})),n({type:"showTip",dataIndexInside:l,dataIndex:c.getRawIndex(l),seriesIndex:o,from:this.uid})}},e.prototype._showComponentItemTooltip=function(t,e,n){var i="html"===this._renderMode,r=zl(e),o=r.tooltipConfig.option||{},a=o.encodeHTMLContent;if(X(o)){o={content:o,formatter:o},a=!0}a&&i&&o.content&&((o=T(o)).content=oe(o.content));var s=[o],l=this._ecModel.getComponent(r.componentMainType,r.componentIndex);l&&s.push(l),s.push({formatter:o.content});var u=t.positionDefault,c=pW(s,this._tooltipModel,u?{position:u}:null),h=c.get("content"),d=Math.random()+"",p=new Ey;this._showOrMove(c,(function(){var n=T(c.get("formatterParams")||{});this._showTooltipContent(c,h,n,d,t.offsetX,t.offsetY,t.position,e,p)})),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;u.setEnterable(t.get("enterable"));var c=t.get("formatter");a=a||t.get("position");var h=e,d=this._getNearestPoint([r,o],n,t.get("trigger"),t.get("borderColor"),t.get("defaultBorderColor",!0)).color;if(c)if(X(c)){var p=t.ecModel.get("useUTC"),f=U(n)?n[0]:n;h=c,f&&f.axisType&&f.axisType.indexOf("time")>=0&&(h=$d(f.axisValue,h,p)),h=_p(h,n,!0)}else if(Y(c)){var g=W((function(e,i){e===this._ticket&&(u.setContent(i,l,t,d,a),this._updatePosition(t,a,r,o,u,n,s))}),this);this._ticket=i,h=c(n,i,g)}else h=c;u.setContent(h,l,t,d,a),u.show(t,d),this._updatePosition(t,a,r,o,u,n,s)}},e.prototype._getNearestPoint=function(t,e,n,i,r){return"axis"===n||U(e)?{color:i||r}:U(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(),c=t.get("align"),h=t.get("verticalAlign"),d=a&&a.getBoundingRect().clone();if(a&&d.applyTransform(a.transform),Y(e)&&(e=e([n,i],o,r.el,d,{viewSize:[s,l],contentSize:u.slice()})),U(e))n=yo(e[0],s),i=yo(e[1],l);else if(q(e)){var p=e;p.width=u[0],p.height=u[1];var f=Hp(p,{width:s,height:l});n=f.x,i=f.y,c=null,h=null}else if(X(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,c=e.height;switch(t){case"inside":s=e.x+u/2-r/2,l=e.y+c/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+c+a;break;case"left":s=e.x-r-a,l=e.y+c/2-o/2;break;case"right":s=e.x+u+a,l=e.y+c/2-o/2}return[s,l]}(e,d,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,c?null:20,h?null:20);n=g[0],i=g[1]}if(c&&(n-=gW(c)?u[0]/2:"right"===c?u[0]:0),h&&(i-=gW(h)?u[1]/2:"bottom"===h?u[1]:0),KF(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&&z(n,(function(n,o){var a=n.dataByAxis||[],s=(t[o]||{}).dataByAxis||[];(r=r&&a.length===s.length)&&z(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)&&z(a,(function(t,e){var n=l[e];r=r&&t.seriesIndex===n.seriesIndex&&t.dataIndex===n.dataIndex})),i&&z(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){!r.node&&e.getDom()&&(hv(this,"_updatePosition"),this._tooltipContent.dispose(),bB("itemTooltip",e))},e.type="tooltip",e}(Ky);function pW(t,e,n){var i,r=e.ecModel;n?(i=new wd(n,r,r),i=new wd(e.option,i,r)):i=e;for(var o=t.length-1;o>=0;o--){var a=t[o];a&&(a instanceof wd&&(a=a.get("tooltip",!0)),X(a)&&(a={formatter:a}),a&&(i=new wd(a,i,r)))}return i}function fW(t,e){return t.dispatchAction||W(e.dispatchAction,e)}function gW(t){return"center"===t||"middle"===t}var yW=["rect","polygon","keep","clear"];function vW(t,e){var n=qo(t?t.brush:[]);if(n.length){var i=[];z(n,(function(t){var e=t.hasOwnProperty("toolbox")?t.toolbox:[];e instanceof Array&&(i=i.concat(e))}));var r=t&&t.toolbox;U(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={};z(t,(function(t){e[t]=1})),t.length=0,z(e,(function(e,n){t.push(n)}))}(s),e&&!s.length&&s.push.apply(s,yW)}}var mW=z;function xW(t){if(t)for(var e in t)if(t.hasOwnProperty(e))return!0}function _W(t,e,n){var i={};return mW(e,(function(e){var r,o=i[e]=((r=function(){}).prototype.__hidden=r.prototype,new r);mW(t[e],(function(t,i){if(hL.isValidType(i)){var r={type:i,visual:t};n&&n(r,e),o[i]=new hL(r),"opacity"===i&&((r=T(r)).type="colorAlpha",o.__hidden.__alphaForOpacity=new hL(r))}}))})),i}function bW(t,e,n){var i;z(n,(function(t){e.hasOwnProperty(t)&&xW(e[t])&&(i=!0)})),i&&z(n,(function(n){e.hasOwnProperty(n)&&xW(e[n])?t[n]=T(e[n]):delete t[n]}))}var wW={lineX:SW(0),lineY:SW(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])&&aw(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!!(aw(i,r,o)||aw(i,r+a,o)||aw(i,r,o+s)||aw(i,r+a,o+s)||He.create(t).contain(l[0],l[1])||kh(r,o,r+a,o,i)||kh(r,o,r,o+s,i)||kh(r+a,o,r+a,o+s,i)||kh(r,o+s,r+a,o+s,i))||void 0}}};function SW(t){var e=["x","y"],n=["width","height"];return{point:function(e,n,i){if(e){var r=i.range;return MW(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&&OW(e)}};function OW(t){return new He(t[0][0],t[1][0],t[0][1]-t[0][0],t[1][1]-t[1][0])}var RW=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 JO(e.getZr())).on("brush",W(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){DW(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:T(n),$from:e}),t.isEnd&&this.api.dispatchAction({type:"brushEnd",brushId:e,areas:T(n),$from:e})},e.type="brush",e}(Ky),NW=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&&bW(n,t,["inBrush","outOfBrush"]);var i=n.inBrush=n.inBrush||{};n.outOfBrush=n.outOfBrush||{color:this.option.defaultOutOfBrushColor},i.hasOwnProperty("liftZ")||(i.liftZ=5)},e.prototype.setAreas=function(t){t&&(this.areas=E(t,(function(t){return zW(this.option,t)}),this))},e.prototype.setBrushOption=function(t){this.brushOption=zW(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:tf.color.backgroundTint,borderColor:tf.color.borderTint},throttleType:"fixRate",throttleDelay:0,removeOnClick:!0,z:1e4,defaultOutOfBrushColor:tf.color.disabled},e}(Qp);function zW(t,e){return C({brushType:t.brushType,brushMode:t.brushMode,transformable:t.transformable,brushStyle:new wd(t.brushStyle).getItemStyle(),removeOnClick:t.removeOnClick,z:t.z},e,!0)}var EW=["rect","polygon","lineX","lineY","keep","clear"],BW=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,z(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 z(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:EW.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}(sF);var VW=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={z:6,show:!0,text:"",target:"blank",subtext:"",subtarget:"blank",left:"center",top:tf.size.m,backgroundColor:tf.color.transparent,borderColor:tf.color.primary,borderWidth:0,padding:5,itemGap:10,textStyle:{fontSize:18,fontWeight:"bold",color:tf.color.primary},subtextStyle:{fontSize:12,color:tf.color.quaternary}},e}(Qp),GW=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=rt(t.get("textBaseline"),t.get("textVerticalAlign")),l=new Sl({style:Qh(r,{text:t.get("text"),fill:r.getTextColor()},{disableBox:!0}),z2:10}),u=l.getBoundingRect(),c=t.get("subtext"),h=new Sl({style:Qh(o,{text:c,fill:o.getTextColor(),y:u.height+t.get("itemGap"),verticalAlign:"top"},{disableBox:!0}),z2:10}),d=t.get("link"),p=t.get("sublink"),f=t.get("triggerEvent",!0);l.silent=!d&&!f,h.silent=!p&&!f,d&&l.on("click",(function(){Sp(d,"_"+t.get("target"))})),p&&h.on("click",(function(){Sp(p,"_"+t.get("subtarget"))})),zl(l).eventData=zl(h).eventData=f?{componentType:"title",componentIndex:t.componentIndex}:null,i.add(l),c&&i.add(h);var g=i.getBoundingRect(),y=t.getBoxLayoutParams();y.width=g.width,y.height=g.height;var v=Hp(y,Xp(t,n).refContainer,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),h.setStyle(m),g=i.getBoundingRect();var x=v.margin,_=t.getItemStyle(["color","opacity"]);_.fill=t.get("backgroundColor");var b=new xl({shape:{x:g.x-x[3],y:g.y-x[0],width:g.width+x[1]+x[3],height:g.height+x[0]+x[2],r:t.get("borderRadius")},style:_,subPixelOptimize:!0,silent:!0});i.add(b)}},e.type="title",e}(Ky);var FW=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=[],z(n,(function(e,n){var i,o=ia(Jo(e),"");q(e)?(i=T(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 B_([{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={z:4,show:!0,axisType:"time",realtime:!0,left:"20%",top:null,right:"20%",bottom:0,width:null,height:40,padding:tf.size.m,controlPosition:"left",autoPlay:!1,rewind:!1,loop:!0,playInterval:2e3,currentIndex:0,itemStyle:{},label:{color:tf.color.secondary},data:[]},e}(Qp),WW=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=Id(FW.defaultOption,{backgroundColor:"rgba(0,0,0,0)",borderColor:tf.color.border,borderWidth:0,orient:"horizontal",inverse:!1,tooltip:{trigger:"item"},symbol:"circle",symbolSize:12,lineStyle:{show:!0,width:2,color:tf.color.accent10},label:{position:"auto",show:!0,interval:"auto",rotate:0,color:tf.color.tertiary},itemStyle:{color:tf.color.accent20,borderWidth:0},checkpointStyle:{symbol:"circle",symbolSize:15,color:tf.color.accent50,borderColor:tf.color.accent50,borderWidth:0,shadowBlur:0,shadowOffsetX:0,shadowOffsetY:0,shadowColor:"rgba(0, 0, 0, 0)",animation:!0,animationDuration:300,animationEasing:"quinticInOut"},controlStyle:{show:!0,showPlayBtn:!0,showPrevBtn:!0,showNextBtn:!0,itemSize:24,itemGap:12,position:"left",playIcon:"path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10.6699C11.5 9.90014 12.3333 9.41887 13 9.80371L20.5 14.1338C21.1667 14.5187 21.1667 15.4813 20.5 15.8662L13 20.1963C12.3333 20.5811 11.5 20.0999 11.5 19.3301V10.6699Z",stopIcon:"path://M15 0C23.2843 0 30 6.71573 30 15C30 23.2843 23.2843 30 15 30C6.71573 30 0 23.2843 0 15C0 6.71573 6.71573 0 15 0ZM15 3C8.37258 3 3 8.37258 3 15C3 21.6274 8.37258 27 15 27C21.6274 27 27 21.6274 27 15C27 8.37258 21.6274 3 15 3ZM11.5 10C12.3284 10 13 10.6716 13 11.5V18.5C13 19.3284 12.3284 20 11.5 20C10.6716 20 10 19.3284 10 18.5V11.5C10 10.6716 10.6716 10 11.5 10ZM18.5 10C19.3284 10 20 10.6716 20 11.5V18.5C20 19.3284 19.3284 20 18.5 20C17.6716 20 17 19.3284 17 18.5V11.5C17 10.6716 17.6716 10 18.5 10Z",nextIcon:"path://M0.838834 18.7383C0.253048 18.1525 0.253048 17.2028 0.838834 16.617L7.55635 9.89949L0.838834 3.18198C0.253048 2.59619 0.253048 1.64645 0.838834 1.06066C1.42462 0.474874 2.37437 0.474874 2.96015 1.06066L10.7383 8.83883L10.8412 8.95277C11.2897 9.50267 11.2897 10.2963 10.8412 10.8462L10.7383 10.9602L2.96015 18.7383C2.37437 19.3241 1.42462 19.3241 0.838834 18.7383Z",prevIcon:"path://M10.9602 1.06066C11.5459 1.64645 11.5459 2.59619 10.9602 3.18198L4.24264 9.89949L10.9602 16.617C11.5459 17.2028 11.5459 18.1525 10.9602 18.7383C10.3744 19.3241 9.42462 19.3241 8.83883 18.7383L1.06066 10.9602L0.957771 10.8462C0.509245 10.2963 0.509245 9.50267 0.957771 8.95277L1.06066 8.83883L8.83883 1.06066C9.42462 0.474874 10.3744 0.474874 10.9602 1.06066Z",prevBtnSize:18,nextBtnSize:18,color:tf.color.accent50,borderColor:tf.color.accent50,borderWidth:0},emphasis:{label:{show:!0,color:tf.color.accent60},itemStyle:{color:tf.color.accent60,borderColor:tf.color.accent60},controlStyle:{color:tf.color.accent70,borderColor:tf.color.accent70}},progress:{lineStyle:{color:tf.color.accent30},itemStyle:{color:tf.color.accent40}},data:[]}),e}(FW);R(WW,Fg.prototype);var HW=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}(Ky),UW=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}(Ww),YW=Math.PI,XW=sa(),ZW=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 Ty("nameValue",{noName:!0,value:a.scale.getLabel({value:t})})},z(["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 Hp(t.getBoxLayoutParams(),Xp(t,e).refContainer,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"},c={horizontal:n>=0||"+"===n?"top":"bottom",vertical:"middle"},h={horizontal:0,vertical:YW/2},d="vertical"===s?l.height:l.width,p=t.getModel("controlStyle"),f=p.get("show",!0),g=f?p.get("itemSize"):0,y=f?p.get("itemGap"):0,v=g+y,m=t.get(["label","rotate"])||0;m=m*YW/180;var x=p.get("position",!0),_=f&&p.get("showPlayBtn",!0),b=f&&p.get("showPrevBtn",!0),w=f&&p.get("showNextBtn",!0),S=0,M=d;"left"===x||"bottom"===x?(_&&(i=[0,0],S+=v),b&&(r=[S,0],S+=v),w&&(o=[M-g,0],M-=v)):(_&&(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:d,orient:s,rotation:h[s],labelRotation:m,labelPosOpt:n,labelAlign:t.get(["label","align"])||u[s],labelBaseline:t.get(["label","verticalAlign"])||t.get(["label","baseline"])||c[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;Se(o,o,[-a,-s]),Me(o,o,-YW/2),Se(o,o,[a,s]),(r=r.clone()).applyTransform(o)}var l=y(r),u=y(n.getBoundingRect()),c=y(i.getBoundingRect()),h=[n.x,n.y],d=[i.x,i.y];d[0]=h[0]=l[0][0];var p,f=t.labelPosOpt;null==f||X(f)?(v(h,u,l,1,p="+"===f?0:1),v(d,c,l,1,1-p)):(v(h,u,l,1,p=f>=0?0:1),d[1]=h[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(h),i.setPosition(d),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"),e)switch(e){case"category":return new lb({ordinalMeta:t.getCategories(),extent:[1/0,-1/0]});case"time":return new Mb({locale:t.ecModel.getLocaleModel(),useUTC:t.ecModel.get("useUTC")});default:return new cb}}(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.calcNiceTicks();var a=new UW("value",r,t.axisExtent,i);return a.model=e,a},e.prototype._createGroup=function(t){var e=this[t]=new to;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 Ac({shape:{x1:r[0],y1:0,x2:r[1],y2:0},style:A({lineCap:"round"},i.getModel("lineStyle").getLineStyle()),silent:!0,z2:1});e.add(o);var a=this._progressLine=new Ac({shape:{x1:r[0],x2:this._currentPointer?this._currentPointer.x:r[0],y1:0,y2:0},style:k({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=[],z(a,(function(t){var a=n.dataToCoord(t.value),s=o.getItemModel(t.value),l=s.getModel("itemStyle"),u=s.getModel(["emphasis","itemStyle"]),c=s.getModel(["progress","itemStyle"]),h={x:a,y:0,onclick:W(r._changeTimeline,r,t.value)},d=jW(s,l,e,h);d.ensureState("emphasis").style=u.getItemStyle(),d.ensureState("progress").style=c.getItemStyle(),Iu(d);var p=zl(d);s.get("tooltip")?(p.dataIndex=t.value,p.dataModel=i):p.dataIndex=p.dataModel=null,r._tickSymbols.push(d)}))},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=[],z(a,(function(i){var a=i.tickValue,s=o.getItemModel(a),l=s.getModel("label"),u=s.getModel(["emphasis","label"]),c=s.getModel(["progress","label"]),h=n.dataToCoord(i.tickValue),d=new Sl({x:h,y:0,rotation:t.labelRotation-t.rotation,onclick:W(r._changeTimeline,r,a),silent:!1,style:Qh(l,{text:i.formattedLabel,align:t.labelAlign,verticalAlign:t.labelBaseline})});d.ensureState("emphasis").style=Qh(u),d.ensureState("progress").style=Qh(c),e.add(d),Iu(d),XW(d).dataIndex=a,r._tickLabels.push(d)}))}},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 c(t,n,l,u){if(t){var c=Fr(rt(i.get(["controlStyle",n+"BtnSize"]),r),r),h=function(t,e,n,i){var r=i.style,o=Ah(t.get(["controlStyle",e]),i||{},new He(n[0],n[1],n[2],n[3]));r&&o.setStyle(r);return o}(i,n+"Icon",[0,-c/2,c,c],{x:t[0],y:t[1],originX:r/2,originY:0,rotation:u?-o:0,rectHover:!0,style:a,onclick:l});h.ensureState("emphasis").style=s,e.add(h),Iu(h)}}c(t.nextBtnPosition,"next",W(this._changeTimeline,this,u?"-":"+")),c(t.prevBtnPosition,"prev",W(this._changeTimeline,this,u?"+":"-")),c(t.playPosition,l?"stop":"play",W(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=W(s._handlePointerDrag,s),t.ondragend=W(s._handlePointerDragend,s),qW(t,s._progressLine,o,n,i,!0)},onUpdate:function(t){qW(t,s._progressLine,o,n,i)}};this._currentPointer=jW(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=xo(this._axis.getExtent().slice());n>i[1]&&(n=i[1]),n=0&&(s[a]=+s[a].toFixed(d)),[s,h]}var aH={min:H(oH,"min"),max:H(oH,"max"),average:H(oH,"average"),median:H(oH,"median")};function sH(t,e){if(e){var n=t.getData(),i=t.coordinateSystem,r=i&&i.dimensions;if(!function(t){return!isNaN(parseFloat(t.x))&&!isNaN(parseFloat(t.y))}(e)&&!U(e.coord)&&U(r)){var o=lH(e,n,i,t);if((e=T(e)).type&&aH[e.type]&&o.baseAxis&&o.valueAxis){var a=P(r,o.baseAxis.dim),s=P(r,o.valueAxis.dim),l=aH[e.type](n,o.valueAxis.dim,o.baseDataDim,o.valueDataDim,a,s);e.coord=l[0],e.value=l[1]}else e.coord=[null!=e.xAxis?e.xAxis:e.radiusAxis,null!=e.yAxis?e.yAxis:e.angleAxis]}if(null!=e.coord&&U(r))for(var u=e.coord,c=0;c<2;c++)aH[u[c]]&&(u[c]=hH(n,n.mapDimension(r[c]),u[c]));else{e.coord=[];var h=t.getBaseAxis();if(h&&e.type&&aH[e.type]){var d=i.getOtherAxis(h);d&&(e.value=hH(n,n.mapDimension(d.dim),e.type))}}return e}}function lH(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 uH(t,e){return!(t&&t.containData&&e.coord&&!rH(e))||t.containData(e.coord)}function cH(t,e){return t?function(t,n,i,r){return Xg(r<2?t.coord&&t.coord[r]:t.value,e[r])}:function(t,n,i,r){return Xg(t.value,e[r])}}function hH(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 dH=sa(),pH=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=yt()},e.prototype.render=function(t,e,n){var i=this,r=this.markerGroupMap;r.each((function(t){dH(t).keep=!1})),e.eachSeries((function(t){var r=nH.getMarkerModelFromSeries(t,i.type);r&&i.renderSeries(t,r,e,n)})),r.each((function(t){!dH(t).keep&&i.group.remove(t.group)})),function(t,e,n){t.eachSeries((function(t){var i=nH.getMarkerModelFromSeries(t,n),r=e.get(t.id);if(i&&r&&r.group){var o=Hh(i),a=o.z,s=o.zlevel;Yh(r.group,a,s)}}))}(e,r,this.type)},e.prototype.markKeep=function(t){dH(t).keep=!0},e.prototype.toggleBlurSeries=function(t,e){var n=this;z(t,(function(t){var i=nH.getMarkerModelFromSeries(t,n.type);i&&i.getData().eachItemGraphicEl((function(t){t&&(e?fu(t):gu(t))}))}))},e.type="marker",e}(Ky);function fH(t,e,n){var i=e.coordinateSystem,r=n.getWidth(),o=n.getHeight(),a=i&&i.getArea&&i.getArea();t.each((function(n){var s,l=t.getItemModel(n),u="coordinate"===l.get("relativeTo"),c=u?a?a.width:0:r,h=u?a?a.height:0:o,d=u&&a?a.x:0,p=u&&a?a.y:0,f=yo(l.get("x"),c)+d,g=yo(l.get("y"),h)+p;if(isNaN(f)||isNaN(g)){if(e.getMarkerPosition)s=e.getMarkerPosition(t.getValues(t.dimensions,n));else if(i){var y=t.get(i.dimensions[0],n),v=t.get(i.dimensions[1],n);s=i.dataToPoint([y,v])}}else s=[f,g];isNaN(f)||(s[0]=f),isNaN(g)||(s[1]=g),t.setItemLayout(n,s)}))}var gH=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=nH.getMarkerModelFromSeries(t,"markPoint");e&&(fH(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 uI),u=function(t,e,n){var i;i=t?E(t&&t.dimensions,(function(t){return A(A({},e.getData().getDimensionInfo(e.getData().mapDimension(t))||{}),{name:t,ordinalMeta:null})})):[{name:"value",type:"float"}];var r=new B_(i,n),o=E(n.get("data"),H(sH,e));t&&(o=V(o,H(uH,t)));var a=cH(!!t,i);return r.initData(o,null,a),r}(r,t,e);e.setData(u),fH(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(Y(i)||Y(r)||Y(o)||Y(s)){var c=e.getRawValue(t),h=e.getDataParams(t);Y(i)&&(i=i(c,h)),Y(r)&&(r=r(c,h)),Y(o)&&(o=o(c,h)),Y(s)&&(s=s(c,h))}var d=n.getModel("itemStyle").getItemStyle(),p=n.get("z2"),f=qv(a,"color");d.fill||(d.fill=f),u.setItemVisual(t,{z2:rt(p,0),symbol:i,symbolSize:r,symbolRotate:o,symbolOffset:s,symbolKeepAspect:l,style:d})})),l.updateData(u),this.group.add(l.group),u.eachItemGraphicEl((function(t){t.traverse((function(t){zl(t).dataModel=e}))})),this.markKeep(l),l.group.silent=e.get("silent")||t.get("silent")},e.type="markPoint",e}(pH);var yH=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={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}(nH),vH=sa(),mH=function(t,e,n,i){var r,o=t.getData();if(U(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=it(i.yAxis,i.xAxis);else{var u=lH(i,o,e,t);s=u.valueAxis,l=hH(o,X_(o,u.valueDataDim),a)}var c="x"===s.dim?0:1,h=1-c,d=T(i),p={coord:[]};d.type=null,d.coord=[],d.coord[h]=-1/0,p.coord[h]=1/0;var f=n.get("precision");f>=0&&j(l)&&(l=+l.toFixed(Math.min(f,20))),d.coord[c]=p.coord[c]=l,r=[d,p,{type:a,valueIndex:i.valueIndex,value:l}]}else r=[]}var g=[sH(t,r[0]),sH(t,r[1]),A({},r[2])];return g[2].type=g[2].type||null,C(g[2],g[0]),C(g[2],g[1]),g};function xH(t){return!isNaN(t)&&!isFinite(t)}function _H(t,e,n,i){var r=1-t,o=i.dimensions[t];return xH(e[r])&&xH(n[r])&&e[t]===n[t]&&i.getAxis(o).containData(e[t])}function bH(t,e){if("cartesian2d"===t.type){var n=e[0].coord,i=e[1].coord;if(n&&i&&(_H(1,n,i,t)||_H(0,n,i,t)))return!0}return uH(t,e[0])&&uH(t,e[1])}function wH(t,e,n,i,r){var o,a=i.coordinateSystem,s=t.getItemModel(e),l=yo(s.get("x"),r.getWidth()),u=yo(s.get("y"),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition)o=i.getMarkerPosition(t.getValues(t.dimensions,e));else{var c=a.dimensions,h=t.get(c[0],e),d=t.get(c[1],e);o=a.dataToPoint([h,d])}if(SI(a,"cartesian2d")){var p=a.getAxis("x"),f=a.getAxis("y");c=a.dimensions;xH(t.get(c[0],e))?o[0]=p.toGlobalCoord(p.getExtent()[n?0:1]):xH(t.get(c[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 SH=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=nH.getMarkerModelFromSeries(t,"markLine");if(e){var i=e.getData(),r=vH(e).from,o=vH(e).to;r.each((function(e){wH(r,e,!0,t,n),wH(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 IP);this.group.add(l.group);var u=function(t,e,n){var i;i=t?E(t&&t.dimensions,(function(t){return A(A({},e.getData().getDimensionInfo(e.getData().mapDimension(t))||{}),{name:t,ordinalMeta:null})})):[{name:"value",type:"float"}];var r=new B_(i,n),o=new B_(i,n),a=new B_([],n),s=E(n.get("data"),H(mH,e,t,n));t&&(s=V(s,H(bH,t)));var l=cH(!!t,i);return r.initData(E(s,(function(t){return t[0]})),null,l),o.initData(E(s,(function(t){return t[1]})),null,l),a.initData(E(s,(function(t){return t[2]}))),a.hasItemOption=!0,{from:r,to:o,line:a}}(r,t,e),c=u.from,h=u.to,d=u.line;vH(e).from=c,vH(e).to=h,e.setData(d);var p=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);wH(e,n,r,t,i);var s=o.getModel("itemStyle").getItemStyle();null==s.fill&&(s.fill=qv(a,"color")),e.setItemVisual(n,{symbolKeepAspect:o.get("symbolKeepAspect"),symbolOffset:rt(o.get("symbolOffset",!0),y[r?0:1]),symbolRotate:rt(o.get("symbolRotate",!0),g[r?0:1]),symbolSize:rt(o.get("symbolSize"),f[r?0:1]),symbol:rt(o.get("symbol",!0),p[r?0:1]),style:s})}U(p)||(p=[p,p]),U(f)||(f=[f,f]),U(g)||(g=[g,g]),U(y)||(y=[y,y]),u.from.each((function(t){v(c,t,!0),v(h,t,!1)})),d.each((function(t){var e=d.getItemModel(t),n=e.getModel("lineStyle").getLineStyle();d.setItemLayout(t,[c.getItemLayout(t),h.getItemLayout(t)]);var i=e.get("z2");null==n.stroke&&(n.stroke=c.getItemVisual(t,"style").fill),d.setItemVisual(t,{z2:rt(i,0),fromSymbolKeepAspect:c.getItemVisual(t,"symbolKeepAspect"),fromSymbolOffset:c.getItemVisual(t,"symbolOffset"),fromSymbolRotate:c.getItemVisual(t,"symbolRotate"),fromSymbolSize:c.getItemVisual(t,"symbolSize"),fromSymbol:c.getItemVisual(t,"symbol"),toSymbolKeepAspect:h.getItemVisual(t,"symbolKeepAspect"),toSymbolOffset:h.getItemVisual(t,"symbolOffset"),toSymbolRotate:h.getItemVisual(t,"symbolRotate"),toSymbolSize:h.getItemVisual(t,"symbolSize"),toSymbol:h.getItemVisual(t,"symbol"),style:n})})),l.updateData(d),u.line.eachItemGraphicEl((function(t){zl(t).dataModel=e,t.traverse((function(t){zl(t).dataModel=e}))})),this.markKeep(l),l.group.silent=e.get("silent")||t.get("silent")},e.type="markLine",e}(pH);var MH=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={z:1,tooltip:{trigger:"item"},animation:!1,label:{show:!0,position:"top"},itemStyle:{borderWidth:0},emphasis:{label:{show:!0,position:"top"}}},e}(nH),IH=sa(),TH=function(t,e,n,i){var r=i[0],o=i[1];if(r&&o){var a=sH(t,r),s=sH(t,o),l=a.coord,u=s.coord;l[0]=it(l[0],-1/0),l[1]=it(l[1],-1/0),u[0]=it(u[0],1/0),u[1]=it(u[1],1/0);var c=D([{},a,s]);return c.coord=[a.coord,s.coord],c.x0=a.x,c.y0=a.y,c.x1=s.x,c.y1=s.y,c}};function CH(t){return!isNaN(t)&&!isFinite(t)}function DH(t,e,n,i){var r=1-t;return CH(e[r])&&CH(n[r])}function AH(t,e){var n=e.coord[0],i=e.coord[1],r={coord:n,x:e.x0,y:e.y0},o={coord:i,x:e.x1,y:e.y1};return SI(t,"cartesian2d")?!(!n||!i||!DH(1,n,i)&&!DH(0,n,i))||function(t,e,n){return!(t&&t.containZone&&e.coord&&n.coord&&!rH(e)&&!rH(n))||t.containZone(e.coord,n.coord)}(t,r,o):uH(t,r)||uH(t,o)}function kH(t,e,n,i,r){var o,a=i.coordinateSystem,s=t.getItemModel(e),l=yo(s.get(n[0]),r.getWidth()),u=yo(s.get(n[1]),r.getHeight());if(isNaN(l)||isNaN(u)){if(i.getMarkerPosition){var c=t.getValues(["x0","y0"],e),h=t.getValues(["x1","y1"],e),d=a.clampData(c),p=a.clampData(h),f=[];"x0"===n[0]?f[0]=d[0]>p[0]?h[0]:c[0]:f[0]=d[0]>p[0]?c[0]:h[0],"y0"===n[1]?f[1]=d[1]>p[1]?h[1]:c[1]:f[1]=d[1]>p[1]?c[1]:h[1],o=i.getMarkerPosition(f,n,!0)}else{var g=[m=t.get(n[0],e),x=t.get(n[1],e)];a.clampData&&a.clampData(g,g),o=a.dataToPoint(g,!0)}if(SI(a,"cartesian2d")){var y=a.getAxis("x"),v=a.getAxis("y"),m=t.get(n[0],e),x=t.get(n[1],e);CH(m)?o[0]=y.toGlobalCoord(y.getExtent()["x0"===n[0]?0:1]):CH(x)&&(o[1]=v.toGlobalCoord(v.getExtent()["y0"===n[1]?0:1]))}isNaN(l)||(o[0]=l),isNaN(u)||(o[1]=u)}else o=[l,u];return o}var LH=[["x0","y0"],["x1","y0"],["x1","y1"],["x0","y1"]],PH=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=nH.getMarkerModelFromSeries(t,"markArea");if(e){var i=e.getData();i.each((function(e){var r=E(LH,(function(r){return kH(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 to});this.group.add(l.group),this.markKeep(l);var u=function(t,e,n){var i,r,o=["x0","y0","x1","y1"];if(t){var a=E(t&&t.dimensions,(function(t){var n=e.getData();return A(A({},n.getDimensionInfo(n.mapDimension(t))||{}),{name:t,ordinalMeta:null})}));r=E(o,(function(t,e){return{name:t,type:a[e%2].type}})),i=new B_(r,n)}else i=new B_(r=[{name:"value",type:"float"}],n);var s=E(n.get("data"),H(TH,e,t,n));t&&(s=V(s,H(AH,t)));var l=t?function(t,e,n,i){return Xg(t.coord[Math.floor(i/2)][i%2],r[i])}:function(t,e,n,i){return Xg(t.value,r[i])};return i.initData(s,null,l),i.hasItemOption=!0,i}(r,t,e);e.setData(u),u.each((function(e){var n=E(LH,(function(n){return kH(u,e,n,t,i)})),o=r.getAxis("x").scale,s=r.getAxis("y").scale,l=o.getExtent(),c=s.getExtent(),h=[o.parse(u.get("x0",e)),o.parse(u.get("x1",e))],d=[s.parse(u.get("y0",e)),s.parse(u.get("y1",e))];xo(h),xo(d);var p=!!(l[0]>h[1]||l[1]d[1]||c[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={z:4,show:!0,orient:"horizontal",left:"center",bottom:tf.size.m,align:"auto",backgroundColor:tf.color.transparent,borderColor:tf.color.border,borderRadius:0,borderWidth:0,padding:5,itemGap:8,itemWidth:25,itemHeight:14,symbolRotate:"inherit",symbolKeepAspect:!0,inactiveColor:tf.color.disabled,inactiveBorderColor:tf.color.disabled,inactiveBorderWidth:"auto",itemStyle:{color:"inherit",opacity:"inherit",borderColor:"inherit",borderWidth:"auto",borderCap:"inherit",borderJoin:"inherit",borderDashOffset:"inherit",borderMiterLimit:"inherit"},lineStyle:{width:"auto",color:"inherit",inactiveColor:tf.color.disabled,inactiveWidth:2,opacity:"inherit",type:"inherit",cap:"inherit",join:"inherit",dashOffset:"inherit",miterLimit:"inherit"},textStyle:{color:tf.color.secondary},selectedMode:!0,selector:!1,selectorLabel:{show:!0,borderRadius:10,padding:[3,5,3,5],fontSize:12,fontFamily:"sans-serif",color:tf.color.tertiary,borderWidth:1,borderColor:tf.color.border},emphasis:{selectorLabel:{show:!0,color:tf.color.quaternary}},selectorPosition:"auto",selectorItemGap:7,selectorButtonGap:10,tooltip:{show:!1},triggerEvent:!1},e}(Qp),RH=H,NH=z,zH=to,EH=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 zH),this.group.add(this._selectorGroup=new zH),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=Xp(t,n).refContainer,u=t.getBoxLayoutParams(),c=t.get("padding"),h=Hp(u,l,c),d=this.layoutInner(t,r,h,i,a,s),p=Hp(k({width:d.width,height:d.height},u),l,c);this.group.x=p.x-d.x,this.group.y=p.y-d.y,this.group.markRedraw(),this.group.add(this._backgroundEl=dF(d,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=yt(),u=e.get("selectedMode"),c=e.get("triggerEvent"),h=[];n.eachRawSeries((function(t){!t.get("legendHoverLink")&&h.push(t.id)})),NH(e.getData(),(function(r,o){var a=this,d=r.get("name");if(!this.newlineDisabled&&(""===d||"\n"===d)){var p=new zH;return p.newline=!0,void s.add(p)}var f=n.getSeriesByName(d)[0];if(!l.get(d)){if(f){var g=f.getData(),y=g.getVisual("legendLineStyle")||{},v=g.getVisual("legendIcon"),m=g.getVisual("style"),x=this._createItem(f,d,o,r,e,t,y,m,v,u,i);x.on("click",RH(BH,d,null,i,h)).on("mouseover",RH(GH,f.name,null,i,h)).on("mouseout",RH(FH,f.name,null,i,h)),n.ssr&&x.eachChild((function(t){var e=zl(t);e.seriesIndex=f.seriesIndex,e.dataIndex=o,e.ssrType="legend"})),c&&x.eachChild((function(t){a.packEventData(t,e,f,o,d)})),l.set(d,!0)}else n.eachRawSeries((function(a){var s=this;if(!l.get(d)&&a.legendVisualProvider){var p=a.legendVisualProvider;if(!p.containName(d))return;var f=p.indexOfName(d),g=p.getItemVisual(f,"style"),y=p.getItemVisual(f,"legendIcon"),v=oi(g.fill);v&&0===v[3]&&(v[3]=.2,g=A(A({},g),{fill:fi(v,"rgba")}));var m=this._createItem(a,d,o,r,e,t,{},g,y,u,i);m.on("click",RH(BH,null,d,i,h)).on("mouseover",RH(GH,null,d,i,h)).on("mouseout",RH(FH,null,d,i,h)),n.ssr&&m.eachChild((function(t){var e=zl(t);e.seriesIndex=a.seriesIndex,e.dataIndex=o,e.ssrType="legend"})),c&&m.eachChild((function(t){s.packEventData(t,e,a,o,d)})),l.set(d,!0)}}),this);0}}),this),r&&this._createSelector(r,e,i,o,a)},e.prototype.packEventData=function(t,e,n,i,r){var o={componentType:"legend",componentIndex:e.componentIndex,dataIndex:i,value:r,seriesIndex:n.seriesIndex};zl(t).eventData=o},e.prototype._createSelector=function(t,e,n,i,r){var o=this.getSelectorGroup();NH(t,(function(t){var i=t.type,r=new Sl({style:{x:0,y:0,align:"center",verticalAlign:"middle"},onclick:function(){n.dispatchAction({type:"all"===i?"legendAllSelect":"legendInverseSelect",legendId:e.id})}});o.add(r),$h(r,{normal:e.getModel("selectorLabel"),emphasis:e.getModel(["emphasis","selectorLabel"])},{defaultText:t.title}),Iu(r)}))},e.prototype._createItem=function(t,e,n,i,r,o,a,s,l,u,c){var h=t.visualDrawType,d=r.get("itemWidth"),p=r.get("itemHeight"),f=r.isSelected(e),g=i.get("symbolRotate"),y=i.get("symbolKeepAspect"),v=i.get("icon"),m=function(t,e,n,i,r,o,a){function s(t,e){"auto"===t.lineWidth&&(t.lineWidth=e.lineWidth>0?2:0),NH(t,(function(n,i){"inherit"===t[i]&&(t[i]=e[i])}))}var l=e.getModel("itemStyle"),u=l.getItemStyle(),c=0===t.lastIndexOf("empty",0)?"fill":"stroke",h=l.getShallow("decal");u.decal=h&&"inherit"!==h?Bm(h,a):i.decal,"inherit"===u.fill&&(u.fill=i[r]);"inherit"===u.stroke&&(u.stroke=i[c]);"inherit"===u.opacity&&(u.opacity=("fill"===r?i:n).opacity);s(u,i);var d=e.getModel("lineStyle"),p=d.getLineStyle();if(s(p,n),"auto"===u.fill&&(u.fill=i.fill),"auto"===u.stroke&&(u.stroke=i.fill),"auto"===p.stroke&&(p.stroke=i.fill),!o){var f=e.get("inactiveBorderWidth"),g=u[c];u.lineWidth="auto"===f?i.lineWidth>0&&g?2:0:u.lineWidth,u.fill=e.get("inactiveColor"),u.stroke=e.get("inactiveBorderColor"),p.stroke=d.get("inactiveColor"),p.lineWidth=d.get("inactiveWidth")}return{itemStyle:u,lineStyle:p}}(l=v||l||"roundRect",i,a,s,h,f,c),x=new zH,_=i.getModel("textStyle");if(!Y(t.getLegendIcon)||v&&"inherit"!==v){var b="inherit"===v&&t.getData().getVisual("symbol")?"inherit"===g?t.getData().getVisual("symbolRotate"):g:0;x.add(function(t){var e=t.icon||"roundRect",n=hm(e,0,0,t.itemWidth,t.itemHeight,t.itemStyle.fill,t.symbolKeepAspect);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=tf.color.neutral00,n.style.lineWidth=2);return n}({itemWidth:d,itemHeight:p,icon:l,iconRotate:b,itemStyle:m.itemStyle,lineStyle:m.lineStyle,symbolKeepAspect:y}))}else x.add(t.getLegendIcon({itemWidth:d,itemHeight:p,icon:l,iconRotate:g,itemStyle:m.itemStyle,lineStyle:m.lineStyle,symbolKeepAspect:y}));var w="left"===o?d+5:-5,S=o,M=r.get("formatter"),I=e;X(M)&&M?I=M.replace("{name}",null!=e?e:""):Y(M)&&(I=M(e));var T=f?_.getTextColor():i.get("inactiveColor");x.add(new Sl({style:Qh(_,{text:I,x:w,y:p/2,fill:T,align:S,verticalAlign:"middle"},{inheritColor:T})}));var C=new xl({shape:x.getBoundingRect(),style:{fill:"transparent"}}),D=i.getModel("tooltip");return D.get("show")&&zh({el:C,componentModel:r,itemName:e,itemTooltipOption:D.option}),x.add(C),x.eachChild((function(t){t.silent=!0})),C.silent=!u,this.getContentGroup().add(x),Iu(x),x.__legendDataIndex=n,x},e.prototype.layoutInner=function(t,e,n,i,r,o){var a=this.getContentGroup(),s=this.getSelectorGroup();Gp(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){Gp("horizontal",s,t.get("selectorItemGap",!0));var c=s.getBoundingRect(),h=[-c.x,-c.y],d=t.get("selectorButtonGap",!0),p=t.getOrient().index,f=0===p?"width":"height",g=0===p?"height":"width",y=0===p?"y":"x";"end"===o?h[p]+=l[f]+d:u[p]+=c[f]+d,h[1-p]+=l[g]/2-c[g]/2,s.x=h[0],s.y=h[1],a.x=u[0],a.y=u[1];var v={x:0,y:0};return v[f]=l[f]+d+c[f],v[g]=Math.max(l[g],c[g]),v[y]=Math.min(0,c[y]+h[1-p]),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}(Ky);function BH(t,e,n,i){FH(t,e,n,i),n.dispatchAction({type:"legendToggleSelect",name:null!=t?t:e}),GH(t,e,n,i)}function VH(t){for(var e,n=t.getZr().storage.getDisplayList(),i=0,r=n.length;in[r],f=[-h.x,-h.y];e||(f[i]=l[s]);var g=[0,0],y=[-d.x,-d.y],v=rt(t.get("pageButtonGap",!0),t.get("itemGap",!0));p&&("end"===t.get("pageButtonPosition",!0)?y[i]+=n[r]-d[r]:g[i]+=d[r]+v);y[1-i]+=h[o]/2-d[o]/2,l.setPosition(f),u.setPosition(g),c.setPosition(y);var m={x:0,y:0};if(m[r]=p?n[r]:h[r],m[o]=Math.max(h[o],d[o]),m[a]=Math.min(0,d[a]+y[1-i]),u.__rectSize=n[r],p){var x={x:0,y:0};x[r]=Math.max(n[r]-d[r]-v,0),x[o]=m[o],u.setClipPath(new xl({shape:x})),u.__rectSize=x[r]}else c.eachChild((function(t){t.attr({invisible:!0,silent:!0})}));var _=this._getPageInfo(t);return null!=_.pageIndex&&th(l,{x:_.contentPosition[0],y:_.contentPosition[1]},p?t:null),this._updatePageInfoView(t,_),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;z(["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",X(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=qH[r],a=KH[r],s=this._findTargetItemIndex(e),l=n.children(),u=l[s],c=l.length,h=c?1:0,d={contentPosition:[n.x,n.y],pageCount:h,pageIndex:h-1,pagePrevDataIndex:null,pageNextDataIndex:null};if(!u)return d;var p=m(u);d.contentPosition[r]=-p.s;for(var f=s+1,g=p,y=p,v=null;f<=c;++f)(!(v=m(l[f]))&&y.e>g.s+i||v&&!x(v,g.s))&&(g=y.i>g.i?y:v)&&(null==d.pageNextDataIndex&&(d.pageNextDataIndex=g.i),++d.pageCount),y=v;for(f=s-1,g=p,y=p,v=null;f>=-1;--f)(v=m(l[f]))&&x(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}(EH);function JH(t){h_(YH),t.registerComponentModel(XH),t.registerComponentView($H),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 QH=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=Id(qG.defaultOption,{disabled:!1,zoomLock:!1,zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!1,preventDefaultMouseMove:!0}),e}(qG),tU=sa();function eU(t,e,n){tU(t).coordSysRecordMap.each((function(t){var i=t.dataZoomInfoMap.get(e.uid);i&&(i.getRange=n)}))}function nU(t,e){if(e){t.removeKey(e.model.uid);var n=e.controller;n&&n.dispose()}}function iU(t,e){t.isDisposed()||t.dispatchAction({type:"dataZoom",animation:{easing:"cubicOut",duration:100},batch:e})}function rU(t,e,n,i){return t.coordinateSystem.containPoint([n,i])}function oU(t){t.registerProcessor(t.PRIORITY.PROCESSOR.FILTER,(function(t,e){var n=tU(e),i=n.coordSysRecordMap||(n.coordSysRecordMap=yt());i.each((function(t){t.dataZoomInfoMap=null})),t.eachComponent({mainType:"dataZoom",subType:"inside"},(function(t){z(ZG(t).infoList,(function(n){var r=n.model.uid,o=i.get(r)||i.set(r,function(t,e){var n={model:e,containsPoint:H(rU,e),dispatchAction:H(iU,t),dataZoomInfoMap:null,controller:null},i=n.controller=new LD(t.getZr());return z(["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=yt())).set(t.uid,{dzReferCoordSysInfo:n,model:t,getRange:null})}))})),i.each((function(t){var n,r=t.controller,o=t.dataZoomInfoMap;if(o){var a=o.keys()[0];null!=a&&(n=o.get(a))}if(n){var s=function(t,e,n){var i,r="type_",o={type_true:2,type_move:1,type_false:0,type_undefined:-1},a=!0;return t.each((function(t){var e=t.model,n=!e.get("disabled",!0)&&(!e.get("zoomLock",!0)||"move");o[r+n]>o[r+i]&&(i=n),a=a&&e.get("preventDefaultMouseMove",!0)})),{controlType:i,opt:{zoomOnMouseWheel:!0,moveOnMouseMove:!0,moveOnMouseWheel:!0,preventDefaultMouseMove:!!a,api:n,zInfo:{component:e.model},triggerInfo:{roamTrigger:null,isInSelf:e.containsPoint}}}}(o,t,e);r.enable(s.controlType,s.opt),cv(t,"dispatchAction",n.model.get("throttle",!0),"fixRate")}else nU(i,t)}))}))}var aU=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(),eU(i,e,{pan:W(sU.pan,this),zoom:W(sU.zoom,this),scrollMove:W(sU.scrollMove,this)}))},e.prototype.dispose=function(){this._clear(),t.prototype.dispose.apply(this,arguments)},e.prototype._clear=function(){!function(t,e){for(var n=tU(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 c=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();return CO(0,o,[0,100],0,c.minSpan,c.maxSpan),this.range=o,r[0]!==o[0]||r[1]!==o[1]?o:void 0}},pan:lU((function(t,e,n,i,r,o){var a=uU[i]([o.oldX,o.oldY],[o.newX,o.newY],e,r,n);return a.signal*(t[1]-t[0])*a.pixel/a.pixelLength})),scrollMove:lU((function(t,e,n,i,r,o){return uU[i]([0,0],[o.scrollDelta,o.scrollDelta],e,r,n).signal*(t[1]-t[0])*o.scrollDelta}))};function lU(t){return function(e,n,i,r){var o=this.range,a=o.slice(),s=e.axisModels[0];if(s)return CO(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 uU={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 cU(t){oF(t),t.registerComponentModel(QH),t.registerComponentView(aU),oU(t)}var hU=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=Id(qG.defaultOption,{show:!0,right:"ph",top:"ph",width:"ph",height:"ph",left:null,bottom:null,borderColor:tf.color.accent10,borderRadius:0,backgroundColor:tf.color.transparent,dataBackground:{lineStyle:{color:tf.color.accent30,width:.5},areaStyle:{color:tf.color.accent20,opacity:.2}},selectedDataBackground:{lineStyle:{color:tf.color.accent40,width:.5},areaStyle:{color:tf.color.accent20,opacity:.3}},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:tf.color.neutral00,borderColor:tf.color.accent20},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:tf.color.accent40,opacity:.5},showDetail:!0,showDataShadow:"auto",realtime:!0,zoomLock:!1,textStyle:{color:tf.color.tertiary},brushSelect:!0,brushStyle:{color:tf.color.accent30,opacity:.3},emphasis:{handleLabel:{show:!0},handleStyle:{borderColor:tf.color.accent40},moveHandleStyle:{opacity:.8}},defaultLocationEdgeGap:15}),e}(qG),dU=xl,pU="horizontal",fU="vertical",gU=["line","bar","candlestick","scatter"],yU={easing:"cubicOut",duration:100,delay:0},vU=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=W(this._onBrush,this),this._onBrushEnd=W(this._onBrushEnd,this)},e.prototype.render=function(e,n,i,r){if(t.prototype.render.apply(this,arguments),cv(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(){hv(this,"_dispatchZoomAction");var t=this.api.getZr();t.off("mousemove",this._onBrush),t.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 to;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=Xp(t,e).refContainer,r=this._findCoordRect(),o=t.get("defaultLocationEdgeGap",!0)||0,a=this._orient===pU?{right:i.width-r.x-r.width,top:i.height-30-o-n,width:r.width,height:30}:{right:o,top:r.y,width:30,height:r.height},s=Kp(t.option);z(["right","top","width","height"],(function(t){"ph"===s[t]&&(s[t]=a[t])}));var l=Hp(s,i);this._location={x:l.x,y:l.y},this._size=[l.width,l.height],this._orient===fU&&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!==pU||r?n===pU&&r?{scaleY:a?1:-1,scaleX:-1}:n!==fU||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 dU({silent:!0,shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:t.get("backgroundColor")},z2:-40}));var r=new dU({shape:{x:0,y:0,width:e[0],height:e[1]},style:{fill:"transparent"},z2:0,onclick:W(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=this._shadowSize||[],i=t.series,r=i.getRawData(),o=i.getShadowDim&&i.getShadowDim(),a=o&&r.getDimensionInfo(o)?i.getShadowDim():t.otherDim;if(null!=a){var s=this._shadowPolygonPts,l=this._shadowPolylinePts;if(r!==this._shadowData||a!==this._shadowDim||e[0]!==n[0]||e[1]!==n[1]){var u=r.getDataExtent(t.thisDim),c=r.getDataExtent(a),h=.3*(c[1]-c[0]);c=[c[0]-h,c[1]+h];var d,p=[0,e[1]],f=[0,e[0]],g=[[e[0],0],[0,0]],y=[],v=f[1]/Math.max(1,r.count()-1),m=e[0]/(u[1]-u[0]),x="time"===t.thisAxis.type,_=-v,b=Math.round(r.count()/e[0]);r.each([t.thisDim,a],(function(t,e,n){if(b>0&&n%b)x||(_+=v);else{_=x?(+t-u[0])*m:_+v;var i=null==e||isNaN(e)||""===e,r=i?0:go(e,c,p,!0);i&&!d&&n?(g.push([g[g.length-1][0],0]),y.push([y[y.length-1][0],0])):!i&&d&&(g.push([_,0]),y.push([_,0])),i||(g.push([_,r]),y.push([_,r])),d=i}})),s=this._shadowPolygonPts=g,l=this._shadowPolylinePts=y}this._shadowData=r,this._shadowDim=a,this._shadowSize=[e[0],e[1]];for(var w=this.dataZoomModel,S=0;S<3;S++){var M=I(1===S);this._displayables.sliderGroup.add(M),this._displayables.dataShadowSegs.push(M)}}}function I(t){var e=w.getModel(t?"selectedDataBackground":"dataBackground"),n=new to,i=new Mc({shape:{points:s},segmentIgnoreThreshold:1,style:e.getModel("areaStyle").getAreaStyle(),silent:!0,z2:-20}),r=new Tc({shape:{points:l},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){z(t.getAxisProxy(r,o).getTargetSeriesModels(),(function(t){if(!(n||!0!==e&&P(gU,t.get("type"))<0)){var a,s=i.getComponent(YG(r),o).axis,l=function(t){var e={x:"y",y:"x",radius:"angle",angle:"radius"};return e[t]}(r),u=t.coordinateSystem;null!=l&&u.getOtherAxis&&(a=u.getOtherAxis(s).inverse),l=t.getData().mapDimension(l);var c=t.getData().mapDimension(r);n={thisAxis:s,series:t,thisDim:c,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"),c=e.filler=new dU({silent:u,style:{fill:a.get("fillerColor")},textConfig:{position:"inside"}});r.add(c),r.add(new dU({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:tf.color.transparent}})),z([0,1],(function(e){var o=a.get("handleIcon");!lm[o]&&o.indexOf("path://")<0&&o.indexOf("image://")<0&&(o="path://"+o);var s,l=hm(o,-1,0,2,2,null,!0);l.attr({cursor:(s=this._orient,"vertical"===s?"ns-resize":"ew-resize"),draggable:!0,drift:W(this._onDragMove,this,e),ondragend:W(this._onDragEnd,this),onmouseover:W(this._showDataInfo,this,!0),onmouseout:W(this._showDataInfo,this,!1),z2:5});var u=l.getBoundingRect(),c=a.get("handleSize");this._handleHeight=yo(c,this._size[1]),this._handleWidth=u.width/u.height*this._handleHeight,l.setStyle(a.getModel("handleStyle").getItemStyle()),l.style.strokeNoScale=!0,l.rectHover=!0,l.ensureState("emphasis").style=a.getModel(["emphasis","handleStyle"]).getItemStyle(),Iu(l);var h=a.get("handleColor");null!=h&&(l.style.fill=h),r.add(n[e]=l);var d=a.getModel("textStyle"),p=(a.get("handleLabel")||{}).show||!1;t.add(i[e]=new Sl({silent:!0,invisible:!p,style:Qh(d,{x:0,y:0,text:"",verticalAlign:"middle",align:"center",fill:d.getTextColor(),font:d.getFont()}),z2:10}))}),this);var h=c;if(u){var d=yo(a.get("moveHandleSize"),o[1]),p=e.moveHandle=new xl({style:a.getModel("moveHandleStyle").getItemStyle(),silent:!0,shape:{r:[0,0,2,2],y:o[1]-.5,height:d}}),f=.8*d,g=e.moveHandleIcon=hm(a.get("moveHandleIcon"),-f/2,-f/2,f,f,tf.color.neutral00,!0);g.silent=!0,g.y=o[1]+d/2-.5,p.ensureState("emphasis").style=a.getModel(["emphasis","moveHandleStyle"]).getItemStyle();var y=Math.min(o[1]/2,Math.max(d,10));(h=e.moveZone=new xl({invisible:!0,shape:{y:o[1]-y,height:d+y}})).on("mouseover",(function(){s.enterEmphasis(p)})).on("mouseout",(function(){s.leaveEmphasis(p)})),r.add(p),r.add(g),r.add(h)}h.attr({draggable:!0,cursor:"default",drift:W(this._onDragMove,this,"all"),ondragstart:W(this._showDataInfo,this,!0),ondragend:W(this._onDragEnd,this),onmouseover:W(this._showDataInfo,this,!0),onmouseout:W(this._showDataInfo,this,!1)})},e.prototype._resetInterval=function(){var t=this._range=this.dataZoomModel.getPercentRange(),e=this._getViewExtent();this._handleEnds=[go(t[0],[0,100],e,!0),go(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];CO(e,i,r,n.get("zoomLock")?"all":t,null!=o.minSpan?go(o.minSpan,a,r,!0):null,null!=o.maxSpan?go(o.maxSpan,a,r,!0):null);var s=this._range,l=this._range=xo([go(i[0],r,a,!0),go(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=xo(n.slice()),r=this._size;z([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 Ae(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],o=this._handleEnds=[n.x,n.x+n.width],a=this.dataZoomModel.findRepresentativeAxisProxy().getMinMaxSpan();CO(0,o,i,0,null!=a.minSpan?go(a.minSpan,r,i,!0):null,null!=a.maxSpan?go(a.maxSpan,r,i,!0):null),this._range=xo([go(o[0],i,r,!0),go(o[1],i,r,!0)]),this._updateView(),this._dispatchZoomAction(!1)}}}},e.prototype._onBrush=function(t){this._brushing&&(fe(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 dU({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?yU:null,start:e[0],end:e[1]})},e.prototype._findCoordRect=function(){var t,e=ZG(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}(JG);function mU(t){t.registerComponentModel(hU),t.registerComponentView(vU),oF(t)}var xU=function(t,e,n){var i=T((_U[t]||{})[e]);return n&&U(i)?i[i.length-1]:i},_U={color:{active:["#006edd","#e0ffff"],inactive:[tf.color.transparent]},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]}},bU=hL.mapVisual,wU=hL.eachVisual,SU=U,MU=z,IU=xo,TU=go,CU=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;!e&&bW(n,t,this.replacableOptionKeys),this.textStyleModel=this.getModel("textStyle"),this.resetItemSize(),this.completeVisualOption()},e.prototype.resetVisual=function(t){var e=this.stateList;t=W(t,this),this.controllerVisuals=_W(this.option.controller,e,t),this.targetVisuals=_W(this.option.target,e,t)},e.prototype.getItemSymbol=function(){return null},e.prototype.getTargetSeriesIndices=function(){var t=this.option.seriesId,e=this.option.seriesIndex;return null==e&&null==t&&(e="all"),E(pa(this.ecModel,"series",{index:e,id:t},{useDefault:!1,enableAll:!0,enableNone:!1}).models,(function(t){return t.componentIndex}))},e.prototype.eachTargetSeries=function(t,e){z(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||["<",">"],U(t)&&(t=t.slice(),i=!0);var l=e?t:i?[u(t[0]),u(t[1])]:u(t);return X(s)?s.replace("{value}",i?l[0]:l).replace("{value2}",i?l[1]:l):Y(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=IU([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={});C(i,n),C(r,n);var o=this.isCategory();function a(n){SU(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]={},MU(i,(function(t,e){if(hL.isValidType(e)){var n=xU(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";MU(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&&T(e)||(o?r:[r])),null==l.symbolSize&&(l.symbolSize=n&&T(n)||(o?s[0]:[s[0],s[0]])),l.symbol=bU(l.symbol,(function(t){return"none"===t?r:t}));var u=l.symbolSize;if(null!=u){var c=-1/0;wU(u,(function(t){t>c&&(c=t)})),l.symbolSize=bU(u,(function(t){return TU(t,[0,c],[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,z:4,min:0,max:200,left:0,right:null,top:null,bottom:0,itemWidth:null,itemHeight:null,inverse:!1,orient:"vertical",backgroundColor:tf.color.transparent,borderColor:tf.color.borderTint,contentColor:tf.color.theme[0],inactiveColor:tf.color.disabled,borderWidth:0,padding:tf.size.m,textGap:10,precision:0,textStyle:{color:tf.color.secondary}},e}(Qp),DU=[20,140],AU=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]=DU[0]),(null==e[1]||isNaN(e[1]))&&(e[1]=DU[1])},e.prototype._resetRange=function(){var t=this.getExtent(),e=this.option.range;!e||e.auto?(t.auto=1,this.option.range=t):U(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),z(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=xo((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=kU(this,"outOfRange",this.getExtent()),n=kU(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 to("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(),l=this._applyTransform("left",n.mainGroup);zU([0,1],(function(u){var c=r[u];c.setStyle("fill",e.handlesColor[u]),c.y=t[u];var h=NU(t[u],[0,a[1]],s,!0),d=this.getControllerVisual(h,"symbolSize");c.scaleX=c.scaleY=d/a[0],c.x=a[0]-d/2;var p=Sh(n.handleLabelPoints[u],wh(c,this.group));if("horizontal"===this._orient){var f="left"===l||"top"===l?(a[0]-d)/2:(a[0]-d)/-2;p[1]+=f}o[u].setStyle({x:p[0],y:p[1],text:i.formatValueText(this._dataInterval[u]),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 c=this.getControllerVisual(t,"color",{convertOpacityToAlpha:!0}),h=this.getControllerVisual(t,"symbolSize"),d=NU(t,o,s,!0),p=a[0]-h/2,f={x:u.x,y:u.y};u.y=d,u.x=p;var g=Sh(l.indicatorLabelPoint,wh(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={x:p,y:d,style:{fill:c}},_={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(x,b),y.animateTo(_,b)}else u.attr(x),y.attr(_);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 c=this._hoverLinkDataIndices,h=[];(e||FU(n))&&(h=this._hoverLinkDataIndices=n.findTargetDataIndices(u));var d=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 XU(t,e,n,i){for(var r=e.targetVisuals[i],o=hL.prepareVisualTypes(r),a={color:qv(t.getData(),"color")},s=0,l=o.length;s0:t.splitNumber>0)&&!t.calculable?"piecewise":"continuous"})),t.registerAction(HU,UU),z(YU,(function(e){t.registerVisual(t.PRIORITY.VISUAL.COMPONENT,e)})),t.registerPreprocessor(jU))}function JU(t){t.registerComponentModel(AU),t.registerComponentView(VU),$U(t)}var QU=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=[],tY[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=T(r)):(t.dataExtent=this.getExtent(),t.mappingMethod="piecewise",t.pieceList=E(this._pieceList,(function(t){return t=T(t),"inRange"!==e&&(t.visual=null),t})))}))},e.prototype.completeVisualOption=function(){var e=this.option,n={},i=hL.listVisualTypes(),r=this.isCategory();function o(t,e,n){return t&&t[e]&&t[e].hasOwnProperty(n)}z(e.pieces,(function(t){z(i,(function(e){t.hasOwnProperty(e)&&(n[e]=1)}))})),z(n,(function(t,n){var i=!1;z(this.stateList,(function(t){i=i||o(e,t,n)||o(e.target,t,n)}),this),!i&&z(this.stateList,(function(t){(e[t]||(e[t]={}))[n]=xU(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,z(i,(function(t,e){var n=this.getSelectedMapKey(t);r.hasOwnProperty(n)||(r[n]=!0)}),this),"single"===n.selectedMode){var o=!1;z(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=T(t)},e.prototype.getValueState=function(t){var e=hL.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){hL.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 z(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=Id(CU.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}(CU),tY={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 eY(t,e){var n=t.inverse;("vertical"===t.orient?!n:n)&&e.reverse()}var nY=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=this._getItemAlign(),o=e.itemSize,a=this._getViewData(),s=a.endsText,l=it(e.get("showLabel",!0),!s),u=!e.get("selectedMode");s&&this._renderEndsText(t,s[0],o,l,r),z(a.viewPieceList,(function(a){var s=a.piece,c=new to;c.onclick=W(this._onItemClick,this,s),this._enableHoverLink(c,a.indexInModelPieceList);var h=e.getRepresentValue(s);if(this._createItemSymbol(c,h,[0,0,o[0],o[1]],u),l){var d=this.visualMapModel.getValueState(h),p=i.get("align")||r;c.add(new Sl({style:Qh(i,{x:"right"===p?-n:o[0]+n,y:o[1]/2,text:s.text,verticalAlign:i.get("verticalAlign")||"middle",align:p,opacity:rt(i.get("opacity"),"outOfRange"===d?.5:1)}),silent:u}))}t.add(c)}),this),s&&this._renderEndsText(t,s[1],o,l,r),Gp(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:RU(i.findTargetDataIndices(e),i)})}},e.prototype._getItemAlign=function(){var t=this.visualMapModel,e=t.option;if("vertical"===e.orient)return OU(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 to,a=this.visualMapModel.textStyleModel;o.add(new Sl({style:Qh(a,{x:i?"right"===r?n[0]:0:n[0]/2,y:n[1]/2,verticalAlign:"middle",align:i?r:"center",text:e})})),t.add(o)}},e.prototype._getViewData=function(){var t=this.visualMapModel,e=E(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,i){var r=hm(this.getControllerVisual(e,"symbol"),n[0],n[1],n[2],n[3],this.getControllerVisual(e,"color"));r.silent=i,t.add(r)},e.prototype._onItemClick=function(t){var e=this.visualMapModel,n=e.option,i=n.selectedMode;if(i){var r=T(n.selected),o=e.getSelectedMapKey(t);"single"===i||!0===i?(r[o]=!0,z(r,(function(t,e){r[e]=e===o}))):r[o]=!r[o],this.api.dispatchAction({type:"selectDataRange",from:this.uid,visualMapId:this.visualMapModel.id,selected:r})}},e.type="visualMap.piecewise",e}(LU);function iY(t){t.registerComponentModel(QU),t.registerComponentView(nY),$U(t)}var rY=function(){function t(t){this._thumbnailModel=t}return t.prototype.reset=function(t){this._renderVersion=t.getMainProcessVersion()},t.prototype.renderContent=function(t){var e=t.api.getViewOfComponentModel(this._thumbnailModel);e&&(t.group.silent=!0,e.renderContent({group:t.group,targetTrans:t.targetTrans,z2Range:Uh(t.group),roamType:t.roamType,viewportRect:t.viewportRect,renderVersion:this._renderVersion}))},t.prototype.updateWindow=function(t,e){var n=e.getViewOfComponentModel(this._thumbnailModel);n&&n.updateWindow({targetTrans:t,renderVersion:this._renderVersion})},t}(),oY=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.optionUpdated=function(t,e){this._updateBridge()},e.prototype._updateBridge=function(){var t=this._birdge=this._birdge||new rY(this);(this._target=null,this.ecModel.eachSeries((function(t){BP(t,null)})),this.shouldShow())&&BP(this.getTarget().baseMapProvider,t)},e.prototype.shouldShow=function(){return this.getShallow("show",!0)},e.prototype.getBridge=function(){return this._birdge},e.prototype.getTarget=function(){if(this._target)return this._target;var t=this.getReferringComponents("series",{useDefault:!1,enableAll:!1,enableNone:!1}).models[0];return t?"graph"!==t.subType&&(t=null):t=this.ecModel.queryComponents({mainType:"series",subType:"graph"})[0],this._target={baseMapProvider:t},this._target},e.type="thumbnail",e.layoutMode="box",e.dependencies=["series","geo"],e.defaultOption={show:!0,right:1,bottom:1,height:"25%",width:"25%",itemStyle:{borderColor:tf.color.border,borderWidth:2},windowStyle:{borderWidth:1,color:tf.color.neutral30,borderColor:tf.color.neutral40,opacity:.3},z:10},e}(Qp),aY=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._api=n,this._model=t,this._coordSys||(this._coordSys=new KA),this._isEnabled()){this._renderVersion=n.getMainProcessVersion();var i=this.group;i.removeAll();var r=t.getModel("itemStyle"),o=r.getItemStyle();null==o.fill&&(o.fill=e.get("backgroundColor")||tf.color.neutral00);var a=Xp(t,n).refContainer,s=Hp(Fp(t,!0),a),l=o.lineWidth||0,u=this._contentRect=Oh(s.clone(),l/2,!0,!0),c=new to;i.add(c),c.setClipPath(new xl({shape:u.plain()}));var h=this._targetGroup=new to;c.add(h);var d=s.plain();d.r=r.getShallow("borderRadius",!0),i.add(this._bgRect=new xl({style:o,shape:d,silent:!1,cursor:"grab"}));var p=t.getModel("windowStyle"),f=p.getShallow("borderRadius",!0);c.add(this._windowRect=new xl({shape:{x:0,y:0,width:0,height:0,r:f},style:p.getItemStyle(),silent:!1,cursor:"grab"})),this._dealRenderContent(),this._dealUpdateWindow(),lY(t,this)}else this._clear()},e.prototype.renderContent=function(t){this._bridgeRendered=t,this._isEnabled()&&(this._dealRenderContent(),this._dealUpdateWindow(),lY(this._model,this))},e.prototype._dealRenderContent=function(){var t=this._bridgeRendered;if(t&&t.renderVersion===this._renderVersion){var e=this._targetGroup,n=this._coordSys,i=this._contentRect;if(e.removeAll(),t){var r=t.group,o=r.getBoundingRect();e.add(r),this._bgRect.z2=t.z2Range.min-10,n.setBoundingRect(o.x,o.y,o.width,o.height);var a=Hp({left:"center",top:"center",aspect:o.width/o.height},i);n.setViewRect(a.x,a.y,a.width,a.height),r.attr(n.getTransformInfo().raw),this._windowRect.z2=t.z2Range.max+10,this._resetRoamController(t.roamType)}}},e.prototype.updateWindow=function(t){var e=this._bridgeRendered;e&&e.renderVersion===t.renderVersion&&(e.targetTrans=t.targetTrans),this._isEnabled()&&this._dealUpdateWindow()},e.prototype._dealUpdateWindow=function(){var t=this._bridgeRendered;if(t&&t.renderVersion===this._renderVersion){var e=Te([],t.targetTrans),n=we([],this._coordSys.transform,e);this._transThisToTarget=Te([],n);var i=t.viewportRect;(i=i?i.clone():new He(0,0,this._api.getWidth(),this._api.getHeight())).applyTransform(n);var r=this._windowRect,o=r.shape.r;r.setShape(k({r:o},i))}},e.prototype._resetRoamController=function(t){var e=this,n=this._api,i=this._roamController;i||(i=this._roamController=new LD(n.getZr())),t&&this._isEnabled()?(i.enable(t,{api:n,zInfo:{component:this._model},triggerInfo:{roamTrigger:null,isInSelf:function(t,n,i){return e._contentRect.contain(n,i)}}}),i.off("pan").off("zoom").on("pan",W(this._onPan,this)).on("zoom",W(this._onZoom,this))):i.disable()},e.prototype._onPan=function(t){var e=this._transThisToTarget;if(this._isEnabled()&&e){var n=Ht([],[t.oldX,t.oldY],e),i=Ht([],[t.oldX-t.dx,t.oldY-t.dy],e);this._api.dispatchAction(sY(this._model.getTarget().baseMapProvider,{dx:i[0]-n[0],dy:i[1]-n[1]}))}},e.prototype._onZoom=function(t){var e=this._transThisToTarget;if(this._isEnabled()&&e){var n=Ht([],[t.originX,t.originY],e);this._api.dispatchAction(sY(this._model.getTarget().baseMapProvider,{zoom:1/t.scale,originX:n[0],originY:n[1]}))}},e.prototype._isEnabled=function(){var t=this._model;return!(!t||!t.shouldShow())&&!!t.getTarget().baseMapProvider},e.prototype._clear=function(){this.group.removeAll(),this._bridgeRendered=null,this._roamController&&this._roamController.disable()},e.prototype.remove=function(){this._clear()},e.prototype.dispose=function(){this._clear()},e.type="thumbnail",e}(Ky);function sY(t,e){var n={type:"series"===t.mainType?t.subType+"Roam":t.mainType+"Roam"};return n[t.mainType+"Id"]=t.id,A(n,e),n}function lY(t,e){var n=Hh(t);Yh(e.group,n.z,n.zlevel)}var uY={label:{enabled:!0},decal:{show:!1}},cY=sa(),hY={};function dY(t,e){var n=t.getModel("aria");if(n.get("enabled")){var i=T(uY);C(i.label,t.getLocaleModel().get("aria"),!1),C(n.option,i,!1),function(){if(n.getModel("decal").get("show")){var e=yt();t.eachSeries((function(t){if(!t.isColorBySeries()){var n=e.get(t.type);n||(n={},e.set(t.type,n)),cY(t).scope=n}})),t.eachRawSeries((function(e){if(!t.isSeriesFiltered(e))if(Y(e.enableAriaDecal))e.enableAriaDecal();else{var n=e.getData();if(e.isColorBySeries()){var i=Nf(e.ecModel,e.name,hY,t.getSeriesCount()),r=n.getVisual("decal");n.setVisual("decal",u(r,i))}else{var o=e.getRawData(),a={},s=cY(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+"",c=Nf(e.ecModel,r,s,l),h=n.getItemVisual(i,"decal");n.setItemVisual(i,"decal",u(h,c))}))}}function u(t,e){var n=t?A(A({},e),t):e;return n.dirty=!0,n}}))}}(),function(){var i=e.getZr().dom;if(!i)return;var o=t.getLocaleModel().get("aria"),a=n.getModel("label");if(a.option=k(a.option,o),!a.get("enabled"))return;if(i.setAttribute("role","img"),a.get("description"))return void i.setAttribute("aria-label",a.get("description"));var s,l=t.getSeriesCount(),u=a.get(["data","maxCount"])||10,c=a.get(["series","maxCount"])||10,h=Math.min(l,c);if(l<1)return;var d=function(){var e=t.get("title");e&&e.length&&(e=e[0]);return e&&e.text}();s=d?r(a.get(["general","withTitle"]),{title:d}):a.get(["general","withoutTitle"]);var p=[];s+=r(l>1?a.get(["series","multiple","prefix"]):a.get(["series","single","prefix"]),{seriesCount:l}),t.eachSeries((function(e,n){if(n1?a.get(["series","multiple",o]):a.get(["series","single",o]),{seriesId:e.seriesIndex,seriesName:e.get("name"),seriesType:(_=e.subType,b=t.getLocaleModel().get(["series","typeNames"]),b[_]||b.chart)});var s=e.getData();if(s.count()>u)i+=r(a.get(["data","partialData"]),{displayCnt:u});else i+=a.get(["data","allData"]);for(var c=a.get(["data","separator","middle"]),d=a.get(["data","separator","end"]),f=a.get(["data","excludeDimensionId"]),g=[],y=0;y":"gt",">=":"gte","=":"eq","!=":"ne","<>":"ne"},gY=function(){function t(t){if(null==(this._condVal=X(t)?new RegExp(t):et(t)?t:null)){var e="";0,Yo(e)}}return t.prototype.evaluate=function(t){var e=typeof t;return X(e)?this._condVal.test(t):!!j(e)&&this._condVal.test(t+"")},t}(),yY=function(){function t(){}return t.prototype.evaluate=function(){return this.value},t}(),vY=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){kY(t,i)&&kY(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 PY(t,e,n,i,r,o,a,s,l,u){if(kY(t,n)&&kY(e,i)&&kY(r,a)&&kY(o,s))l.push(a,s);else{var c=2/u,h=c*c,d=a-t,p=s-e,f=Math.sqrt(d*d+p*p);d/=f,p/=f;var g=n-t,y=i-e,v=r-a,m=o-s,x=g*g+y*y,_=v*v+m*m;if(x=0&&_-w*w=0)l.push(a,s);else{var S=[],M=[];Pn(t,n,r,a,.5,S),Pn(e,i,o,s,.5,M),PY(S[0],M[0],S[1],M[1],S[2],M[2],S[3],M[3],l,u),PY(S[4],M[4],S[5],M[5],S[6],M[6],S[7],M[7],l,u)}}}}function OY(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),h=OY([l,u],c?0:1,e),d=(c?s:u)/h.length,p=0;p1?null:new Ae(p*l+t,p*u+e)}function EY(t,e,n){var i=new Ae;Ae.sub(i,n,e),i.normalize();var r=new Ae;return Ae.sub(r,t,e),r.dot(i)}function BY(t,e){var n=t[t.length-1];n&&n[0]===e[0]&&n[1]===e[1]||t.push(e)}function VY(t){var e=t.points,n=[],i=[];ys(e,n,i);var r=new He(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 Ae,c=new Ae;return o>a?(u.x=c.x=s+o/2,u.y=l,c.y=l+a):(u.y=c.y=l+a/2,u.x=s,c.x=s+o),function(t,e,n){for(var i=t.length,r=[],o=0;or,a=OY([i,r],o?0:1,e),s=o?"width":"height",l=o?"height":"width",u=o?"x":"y",c=o?"y":"x",h=t[s]/a.length,d=0;d0)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(x=0;x0;l/=2){var u=0,c=0;(t&l)>0&&(u=1),(e&l)>0&&(c=1),s+=l*l*(3*u^c),0===c&&(1===u&&(t=l-1-t,e=l-1-e),a=t,t=e,e=a)}return s}function nX(t){var e=1/0,n=1/0,i=-1/0,r=-1/0,o=E(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 E(o,(function(o,a){return{cp:o,z:eX(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 iX(t){return WY(t.path,t.count)}function rX(t){return U(t[0])}function oX(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 aX={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"),c=Object.assign({setToFinal:!0},a);rX(t)&&(s=t,l=e),rX(e)&&(s=e,l=t);for(var h=s?s===t:t.length>e.length,d=s?oX(l,s):oX(h?e:t,[h?t:e]),p=0,f=0;f1e4))for(var r=n.getIndices(),o=0;o0&&i.group.traverse((function(t){t instanceof sl&&!t.animators.length&&t.animateFrom({style:{opacity:0}},r)}))}))}function vX(t){var e=t.getModel("universalTransition").get("seriesKey");return e||t.id}function mX(t){return U(t)?t.sort().join(","):t}function xX(t){if(t.hostModel)return t.hostModel.getModel("universalTransition").get("divideShape")}function _X(t,e){for(var n=0;no.vmin?e+=o.vmin-n+(t-o.vmin)/(o.vmax-o.vmin)*o.gapReal:e+=t-n,n=o.vmax,i=!1;break}e+=o.vmin-n+o.gapReal,n=o.vmax}return i&&(e+=t-n),e},t.prototype.unelapse=function(t){for(var e=SX,n=MX,i=!0,r=0,o=0;os?a.vmin+(t-s)/(l-s)*(a.vmax-a.vmin):n+t-e,n=a.vmax,i=!1;break}e=l,n=a.vmax}return i&&(r=n+t-e),r},t}();function wX(){return new bX}var SX=0,MX=0;function IX(t,e,n,i,r,o){"no"!==t&&z(n,(function(n){var a=CX(n,o);if(a)for(var s=e.length-1;s>=0;s--){var l=e[s],u=i(l),c=3*r/4;u>a.vmin-c&&ue[0]&&n=0&&t<.99999})(s)||(s=0),r.gapParsed.type="tpPrct",r.gapParsed.val=s,o=!0}}if(!o){var l=e(t.gap);(!isFinite(l)||l<0)&&(l=0),r.gapParsed.type="tpAbs",r.gapParsed.val=l}}if(r.vmin===r.vmax&&(r.gapParsed.type="tpAbs",r.gapParsed.val=0),n&&n.noNegative&&z(["vmin","vmax"],(function(t){r[t]<0&&(r[t]=0)})),r.vmin>r.vmax){var u=r.vmax;r.vmax=r.vmin,r.vmin=u}i.push(r)}})),i.sort((function(t,e){return t.vmin-e.vmin}));var r=-1/0;return z(i,(function(t,e){r>t.vmin&&(i[e]=null),r=t.vmax})),{breaks:i.filter((function(t){return!!t}))}}function AX(t,e){return kX(e)===kX(t)}function kX(t){return t.start+"_\0_"+t.end}function LX(t,e,n){var i=[];z(t,(function(t,n){var r=e(t);r&&"vmin"===r.type&&i.push([n])})),z(t,(function(n,r){var o=e(n);if(o&&"vmax"===o.type){var a=G(i,(function(n){return AX(e(t[n[0]]).parsedBreak.breakOption,o.parsedBreak.breakOption)}));a&&a.push(r)}}));var r=[];return z(i,(function(e){2===e.length&&r.push(n?e:[t[e[0]],t[e[1]]])})),r}function PX(t,e,n,i){var r,o;if(t.break){var a=t.break.parsedBreak,s=G(n,(function(e){return AX(e.breakOption,t.break.parsedBreak.breakOption)})),l=i(Math.pow(e,a.vmin),s.vmin),u=i(Math.pow(e,a.vmax),s.vmax),c={type:a.gapParsed.type,val:"tpAbs"===a.gapParsed.type?mo(Math.pow(e,a.vmin+a.gapParsed.val))-l:a.gapParsed.val};r={type:t.break.type,parsedBreak:{breakOption:a.breakOption,vmin:l,vmax:u,gapParsed:c,gapReal:a.gapReal}},o=s[t.break.type]}return{brkRoundingCriterion:o,vBreak:r}}function OX(t,e,n){var i={noNegative:!0},r=DX(t,n,i),o=DX(t,n,i),a=Math.log(e);return o.breaks=E(o.breaks,(function(t){var e=Math.log(t.vmin)/a;return{vmin:e,vmax:Math.log(t.vmax)/a,gapParsed:{type:t.gapParsed.type,val:"tpAbs"===t.gapParsed.type?Math.log(t.vmin+t.gapParsed.val)/a-e:t.gapParsed.val},gapReal:t.gapReal,breakOption:t.breakOption}})),{parsedOriginal:r,parsedLogged:o}}var RX={vmin:"start",vmax:"end"};function NX(t,e){return e&&((t=t||{}).break={type:RX[e.type],start:e.parsedBreak.vmin,end:e.parsedBreak.vmax}),t}function zX(){var t;t={createScaleBreakContext:wX,pruneTicksByBreak:IX,addBreaksToTicks:TX,parseAxisBreakOption:DX,identifyAxisBreak:AX,serializeAxisBreakIdentifier:kX,retrieveAxisBreakPairs:LX,getTicksLogTransformBreak:PX,logarithmicParseBreaksFromOption:OX,makeAxisLabelFormatterParamBreak:NX},Rd||(Rd=t)}var EX=sa();function BX(t,e,n,i,r){var o=n.axis;if(!o.scale.isBlank()&&Nd()){var a=Nd().retrieveAxisBreakPairs(o.scale.getTicks({breakTicks:"only_break"}),(function(t){return t.break}),!1);if(a.length){var s=n.getModel("breakArea"),l=s.get("zigzagAmplitude"),u=s.get("zigzagMinSpan"),c=s.get("zigzagMaxSpan");u=Math.max(2,u||0),c=Math.max(u,c||0);var h=s.get("expandOnClick"),d=s.get("zigzagZ"),p=s.getModel("itemStyle").getItemStyle(),f=p.stroke,g=p.lineWidth,y=p.lineDash,v=p.fill,m=new to({ignoreModelZ:!0}),x=o.isHorizontal(),_=EX(e).visualList||(EX(e).visualList=[]);z(_,(function(t){return t.shouldRemove=!0}));for(var b=function(t){var e=a[t][0].break.parsedBreak,s=[];s[0]=o.toGlobalCoord(o.dataToCoord(e.vmin,!0)),s[1]=o.toGlobalCoord(o.dataToCoord(e.vmax,!0)),s[1]=x;C&&(M=x);var D=[],A=[];D[h]=n,A[h]=r,T||C||(D[h]+=S?-l:l,A[h]-=S?l:-l),D[m]=M,A[m]=M,b.push(D),w.push(A);var k=void 0;if(I=0;e--)t[e].shouldRemove&&t.splice(e,1)}(_)}}}function VX(t,e,n,i){var r=t.axis,o=n.transform;lt(i.style);var a=r.getExtent();r.inverse&&(a=a.slice()).reverse();var s=E(Nd().retrieveAxisBreakPairs(r.scale.getTicks({breakTicks:"only_break"}),(function(t){return t.break}),!1),(function(t){var e=t[0].break.parsedBreak,n=[r.dataToCoord(e.vmin,!0),r.dataToCoord(e.vmax,!0)];return n[0]>n[1]&&n.reverse(),{coordPair:n,brkId:Nd().serializeAxisBreakIdentifier(e.breakOption)}}));s.sort((function(t,e){return t.coordPair[0]-e.coordPair[0]}));for(var l=a[0],u=null,c=0;c=0?s[0].width:s[1].width)+u.x)/2-l.x,h=Math.min(c,c-u.x),d=Math.max(c,c-u.x);a=(c-(d<0?d:h>0?h:0))/u.x}var p=new Ae,f=new Ae;Ae.scale(p,i,-a),Ae.scale(f,i,1-a),_S(n[0],p),_S(n[1],f)}}function g(t){var e=n[0].localRect,i=new Ae(e[uh[t]]*o[0][0],e[uh[t]]*o[0][1]);return Math.abs(i.y)<1e-5}}function FX(t,e){var n={breaks:[]};return z(e.breaks,(function(i){if(i){var r=G(t.get("breaks",!0),(function(t){return Nd().identifyAxisBreak(t,i)}));if(r){var o=e.type,a={isExpanded:!!r.isExpanded};r.isExpanded=o===QT||o!==tC&&(o===eC?!r.isExpanded:r.isExpanded),n.breaks.push({start:r.start,end:r.end,isExpanded:!!r.isExpanded,old:a})}}})),n}function WX(){var t;t={adjustBreakLabelPair:GX,buildAxisBreakLine:VX,rectCoordBuildBreakAxis:BX,updateModelAxisBreak:FX},UT||(UT=t)}function HX(t,e){z(t,(function(t){if(!t.model.get(["axisLabel","inside"])){var n=function(t){var e,n,i=t.model,r=t.scale;if(!i.get(["axisLabel","show"])||r.isBlank())return;var o=r.getExtent();n=r instanceof lb?r.count():(e=r.getTicks()).length;var a,s=t.getLabelModel(),l=jb(t),u=1;n>40&&(u=Math.ceil(n/40));for(var c=0;c=0&&r.push({dataGroupId:e.oldDataGroupIds[n],data:e.oldData[n],divide:xX(e.oldData[n]),groupIdDim:t.dimension})})),z(qo(t.to),(function(t){var i=_X(n.updatedSeries,t);if(i>=0){var r=n.updatedSeries[i].getData();o.push({dataGroupId:e.oldDataGroupIds[i],data:r,divide:xX(r),groupIdDim:t.dimension})}})),r.length>0&&o.length>0&&yX(r,o,i)}(t,i,n,e)}));else{var o=function(t,e){var n=yt(),i=yt(),r=yt();return z(t.oldSeries,(function(e,n){var o=t.oldDataGroupIds[n],a=t.oldData[n],s=vX(e),l=mX(s);i.set(l,{dataGroupId:o,data:a}),U(s)&&z(s,(function(t){r.set(t,{key:l,dataGroupId:o,data:a})}))})),z(e.updatedSeries,(function(t){if(t.isUniversalTransitionEnabled()&&t.isAnimationEnabled()){var e=t.get("dataGroupId"),o=t.getData(),a=vX(t),s=mX(a),l=i.get(s);if(l)n.set(s,{oldSeries:[{dataGroupId:l.dataGroupId,divide:xX(l.data),data:l.data}],newSeries:[{dataGroupId:e,divide:xX(o),data:o}]});else if(U(a)){var u=[];z(a,(function(t){var e=i.get(t);e.data&&u.push({dataGroupId:e.dataGroupId,divide:xX(e.data),data:e.data})})),u.length&&n.set(s,{oldSeries:u,newSeries:[{dataGroupId:e,data:o,divide:xX(o)}]})}else{var c=r.get(a);if(c){var h=n.get(c.key);h||(h={oldSeries:[{dataGroupId:c.dataGroupId,data:c.data,divide:xX(c.data)}],newSeries:[]},n.set(c.key,h)),h.newSeries.push({dataGroupId:e,data:o,divide:xX(o)})}}}})),n}(i,n);z(o.keys(),(function(t){var n=o.get(t);yX(n.oldSeries,n.newSeries,e)}))}z(n.updatedSeries,(function(t){t[Fy]&&(t[Fy]=!1)}))}for(var a=t.getSeries(),s=i.oldSeries=[],l=i.oldDataGroupIds=[],u=i.oldData=[],c=0;c