option-view.json 190 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625
  1. {
  2. "dataZoom": {
  3. "$count": 6229
  4. },
  5. "legend": {
  6. "$count": 9273,
  7. "align": {
  8. "$count": 942
  9. },
  10. "right": {
  11. "$count": 634
  12. },
  13. "z": {
  14. "$count": 567
  15. },
  16. "orient": {
  17. "$count": 1356
  18. },
  19. "show": {
  20. "$count": 1181
  21. },
  22. "zlevel": {
  23. "$count": 634
  24. },
  25. "left": {
  26. "$count": 1137
  27. },
  28. "itemHeight": {
  29. "$count": 455
  30. },
  31. "bottom": {
  32. "$count": 788
  33. },
  34. "itemGap": {
  35. "$count": 761
  36. },
  37. "formatter": {
  38. "$count": 935
  39. },
  40. "selectedMode": {
  41. "$count": 937
  42. },
  43. "selected": {
  44. "$count": 1038
  45. },
  46. "shadowBlur": {
  47. "$count": 199
  48. },
  49. "shadowColor": {
  50. "$count": 189
  51. },
  52. "shadowOffsetX": {
  53. "$count": 180
  54. },
  55. "shadowOffsetY": {
  56. "$count": 142
  57. },
  58. "backgroundColor": {
  59. "$count": 471
  60. },
  61. "data": {
  62. "$count": 1430,
  63. "icon": {
  64. "$count": 882
  65. },
  66. "name": {
  67. "$count": 660
  68. },
  69. "textStyle": {
  70. "$count": 798
  71. }
  72. },
  73. "top": {
  74. "$count": 831
  75. },
  76. "padding": {
  77. "$count": 706
  78. },
  79. "itemWidth": {
  80. "$count": 603
  81. },
  82. "textStyle": {
  83. "$count": 849,
  84. "fontSize": {
  85. "$count": 150
  86. },
  87. "color": {
  88. "$count": 237
  89. },
  90. "fontStyle": {
  91. "$count": 113
  92. },
  93. "fontWeight": {
  94. "$count": 101
  95. },
  96. "fontFamily": {
  97. "$count": 91
  98. }
  99. },
  100. "borderColor": {
  101. "$count": 318
  102. },
  103. "borderWidth": {
  104. "$count": 233
  105. },
  106. "height": {
  107. "$count": 64
  108. },
  109. "width": {
  110. "$count": 83
  111. }
  112. },
  113. "dataZoom-inside": {
  114. "$count": 1250,
  115. "yAxisIndex": {
  116. "$count": 221
  117. },
  118. "startValue": {
  119. "$count": 264
  120. },
  121. "endValue": {
  122. "$count": 136
  123. },
  124. "xAxisIndex": {
  125. "$count": 388
  126. },
  127. "angleAxisIndex": {
  128. "$count": 161
  129. },
  130. "filterMode": {
  131. "$count": 288
  132. },
  133. "type": {
  134. "$count": 639
  135. },
  136. "start": {
  137. "$count": 449
  138. },
  139. "orient": {
  140. "$count": 210
  141. },
  142. "radiusAxisIndex": {
  143. "$count": 141
  144. },
  145. "throttle": {
  146. "$count": 171
  147. },
  148. "end": {
  149. "$count": 191
  150. },
  151. "zoomLock": {
  152. "$count": 168
  153. }
  154. },
  155. "xAxis": {
  156. "$count": 10643,
  157. "gridIndex": {
  158. "$count": 1840
  159. },
  160. "splitLine": {
  161. "$count": 1235,
  162. "show": {
  163. "$count": 156
  164. },
  165. "lineTyle": {
  166. "$count": 17,
  167. "shadowBlur": {
  168. "$count": 8
  169. },
  170. "shadowColor": {
  171. "$count": 7
  172. },
  173. "shadowOffsetX": {
  174. "$count": 6
  175. },
  176. "opacity": {
  177. "$count": 7
  178. },
  179. "width": {
  180. "$count": 9
  181. },
  182. "color": {
  183. "$count": 11
  184. },
  185. "shadowOffsetY": {
  186. "$count": 5
  187. },
  188. "type": {
  189. "$count": 12
  190. }
  191. },
  192. "interval": {
  193. "$count": 198
  194. },
  195. "lineStyle": {
  196. "color": {
  197. "$count": 81
  198. },
  199. "$count": 185,
  200. "type": {
  201. "$count": 49
  202. },
  203. "width": {
  204. "$count": 33
  205. },
  206. "shadowBlur": {
  207. "$count": 28
  208. },
  209. "opacity": {
  210. "$count": 29
  211. },
  212. "shadowColor": {
  213. "$count": 27
  214. },
  215. "shadowOffsetX": {
  216. "$count": 16
  217. },
  218. "shadowOffsetY": {
  219. "$count": 14
  220. }
  221. }
  222. },
  223. "axisTick": {
  224. "$count": 1461,
  225. "interval": {
  226. "$count": 345
  227. },
  228. "inside": {
  229. "$count": 195
  230. },
  231. "show": {
  232. "$count": 250
  233. },
  234. "length": {
  235. "$count": 211
  236. },
  237. "lineStyle": {
  238. "$count": 249,
  239. "color": {
  240. "$count": 87
  241. },
  242. "shadowColor": {
  243. "$count": 38
  244. },
  245. "width": {
  246. "$count": 42
  247. },
  248. "type": {
  249. "$count": 50
  250. },
  251. "opacity": {
  252. "$count": 29
  253. },
  254. "shadowBlur": {
  255. "$count": 39
  256. },
  257. "shadowOffsetX": {
  258. "$count": 26
  259. },
  260. "shadowOffsetY": {
  261. "$count": 19
  262. }
  263. }
  264. },
  265. "type": {
  266. "$count": 2888
  267. },
  268. "axisLabel": {
  269. "$count": 1980,
  270. "interval": {
  271. "$count": 695
  272. },
  273. "rotate": {
  274. "$count": 399
  275. },
  276. "show": {
  277. "$count": 343
  278. },
  279. "inside": {
  280. "$count": 303
  281. },
  282. "margin": {
  283. "$count": 337
  284. },
  285. "formatter": {
  286. "$count": 836
  287. },
  288. "textStyle": {
  289. "$count": 417,
  290. "fontSize": {
  291. "$count": 97
  292. },
  293. "color": {
  294. "$count": 136
  295. },
  296. "fontStyle": {
  297. "$count": 84
  298. },
  299. "fontWeight": {
  300. "$count": 68
  301. },
  302. "fontFamily": {
  303. "$count": 55
  304. }
  305. }
  306. },
  307. "position": {
  308. "$count": 1812
  309. },
  310. "nameTextStyle": {
  311. "$count": 1593,
  312. "fontStyle": {
  313. "$count": 192
  314. },
  315. "color": {
  316. "$count": 329
  317. },
  318. "fontFamily": {
  319. "$count": 143
  320. },
  321. "fontWeight": {
  322. "$count": 138
  323. },
  324. "fontSize": {
  325. "$count": 194
  326. }
  327. },
  328. "nameGap": {
  329. "$count": 1258
  330. },
  331. "interval": {
  332. "$count": 1363
  333. },
  334. "boundaryGap": {
  335. "$count": 1812
  336. },
  337. "scale": {
  338. "$count": 1195
  339. },
  340. "inverse": {
  341. "$count": 1017
  342. },
  343. "data": {
  344. "$count": 1546,
  345. "textStyle": {
  346. "baseline": {
  347. "$count": 155
  348. },
  349. "$count": 429,
  350. "color": {
  351. "$count": 161
  352. },
  353. "align": {
  354. "$count": 147
  355. },
  356. "fontStyle": {
  357. "$count": 97
  358. },
  359. "fontWeight": {
  360. "$count": 74
  361. },
  362. "fontFamily": {
  363. "$count": 65
  364. },
  365. "fontSize": {
  366. "$count": 76
  367. }
  368. },
  369. "value": {
  370. "$count": 715
  371. }
  372. },
  373. "nameLocation": {
  374. "$count": 1310
  375. },
  376. "name": {
  377. "$count": 1396
  378. },
  379. "splitNumber": {
  380. "$count": 1367
  381. },
  382. "min": {
  383. "$count": 1112
  384. },
  385. "axisLine": {
  386. "lineStyle": {
  387. "$count": 563,
  388. "type": {
  389. "$count": 156
  390. },
  391. "color": {
  392. "$count": 257
  393. },
  394. "shadowColor": {
  395. "$count": 113
  396. },
  397. "shadowBlur": {
  398. "$count": 124
  399. },
  400. "shadowOffsetX": {
  401. "$count": 70
  402. },
  403. "width": {
  404. "$count": 138
  405. },
  406. "opacity": {
  407. "$count": 104
  408. },
  409. "shadowOffsetY": {
  410. "$count": 56
  411. }
  412. },
  413. "show": {
  414. "$count": 449
  415. },
  416. "$count": 1822,
  417. "onZero": {
  418. "$count": 394
  419. }
  420. },
  421. "splitArea": {
  422. "$count": 795,
  423. "show": {
  424. "$count": 95
  425. },
  426. "interval": {
  427. "$count": 152
  428. },
  429. "areaStyle": {
  430. "$count": 187,
  431. "color": {
  432. "$count": 150
  433. },
  434. "shadowBlur": {
  435. "$count": 57
  436. },
  437. "shadowColor": {
  438. "$count": 52
  439. },
  440. "shadowOffsetX": {
  441. "$count": 30
  442. },
  443. "opacity": {
  444. "$count": 39
  445. },
  446. "shadowOffsetY": {
  447. "$count": 19
  448. }
  449. }
  450. },
  451. "max": {
  452. "$count": 707
  453. }
  454. },
  455. "radiusAxis": {
  456. "$count": 4587,
  457. "data": {
  458. "value": {
  459. "$count": 16
  460. },
  461. "$count": 64,
  462. "textStyle": {
  463. "$count": 15,
  464. "color": {
  465. "$count": 3
  466. },
  467. "baseline": {
  468. "$count": 2
  469. }
  470. }
  471. },
  472. "interval": {
  473. "$count": 33
  474. },
  475. "min": {
  476. "$count": 43
  477. },
  478. "axisLabel": {
  479. "formatter": {
  480. "$count": 63
  481. },
  482. "$count": 53,
  483. "show": {
  484. "$count": 10
  485. },
  486. "interval": {
  487. "$count": 9
  488. },
  489. "inside": {
  490. "$count": 5
  491. },
  492. "rotate": {
  493. "$count": 8
  494. },
  495. "margin": {
  496. "$count": 6
  497. },
  498. "textStyle": {
  499. "$count": 10,
  500. "color": {
  501. "$count": 5
  502. },
  503. "fontStyle": {
  504. "$count": 1
  505. },
  506. "fontWeight": {
  507. "$count": 1
  508. },
  509. "fontSize": {
  510. "$count": 1
  511. },
  512. "fontFamily": {
  513. "$count": 1
  514. }
  515. }
  516. },
  517. "splitArea": {
  518. "areaStyle": {
  519. "color": {
  520. "$count": 12
  521. },
  522. "shadowColor": {
  523. "$count": 2
  524. },
  525. "$count": 13
  526. },
  527. "$count": 36,
  528. "show": {
  529. "$count": 4
  530. },
  531. "interval": {
  532. "$count": 3
  533. }
  534. },
  535. "polarIndex": {
  536. "$count": 139
  537. },
  538. "type": {
  539. "$count": 104
  540. },
  541. "name": {
  542. "$count": 65
  543. },
  544. "nameLocation": {
  545. "$count": 62
  546. },
  547. "nameTextStyle": {
  548. "$count": 50,
  549. "color": {
  550. "$count": 18
  551. },
  552. "fontStyle": {
  553. "$count": 4
  554. },
  555. "fontSize": {
  556. "$count": 3
  557. },
  558. "fontWeight": {
  559. "$count": 4
  560. },
  561. "fontFamily": {
  562. "$count": 2
  563. }
  564. },
  565. "nameGap": {
  566. "$count": 32
  567. },
  568. "inverse": {
  569. "$count": 29
  570. },
  571. "max": {
  572. "$count": 40
  573. },
  574. "axisLine": {
  575. "$count": 45,
  576. "show": {
  577. "$count": 12
  578. },
  579. "lineStyle": {
  580. "color": {
  581. "$count": 19
  582. },
  583. "$count": 10,
  584. "width": {
  585. "$count": 7
  586. },
  587. "shadowBlur": {
  588. "$count": 7
  589. },
  590. "shadowColor": {
  591. "$count": 5
  592. },
  593. "shadowOffsetX": {
  594. "$count": 2
  595. },
  596. "type": {
  597. "$count": 8
  598. },
  599. "opacity": {
  600. "$count": 5
  601. },
  602. "shadowOffsetY": {
  603. "$count": 2
  604. }
  605. }
  606. },
  607. "splitLine": {
  608. "$count": 44,
  609. "lineStyle": {
  610. "type": {
  611. "$count": 1
  612. },
  613. "width": {
  614. "$count": 1
  615. },
  616. "$count": 8,
  617. "color": {
  618. "$count": 6
  619. },
  620. "shadowColor": {
  621. "$count": 3
  622. },
  623. "shadowBlur": {
  624. "$count": 1
  625. }
  626. },
  627. "interval": {
  628. "$count": 4
  629. },
  630. "show": {
  631. "$count": 4
  632. }
  633. },
  634. "splitNumber": {
  635. "$count": 42
  636. },
  637. "boundaryGap": {
  638. "$count": 51
  639. },
  640. "scale": {
  641. "$count": 40
  642. },
  643. "axisTick": {
  644. "$count": 34,
  645. "interval": {
  646. "$count": 5
  647. },
  648. "inside": {
  649. "$count": 3
  650. },
  651. "lineStyle": {
  652. "type": {
  653. "$count": 1
  654. },
  655. "$count": 7,
  656. "color": {
  657. "$count": 2
  658. }
  659. },
  660. "length": {
  661. "$count": 2
  662. },
  663. "show": {
  664. "$count": 2
  665. }
  666. }
  667. },
  668. "yAxis": {
  669. "$count": 7115,
  670. "splitNumber": {
  671. "$count": 1005
  672. },
  673. "gridIndex": {
  674. "$count": 1161
  675. },
  676. "axisLabel": {
  677. "$count": 1068,
  678. "textStyle": {
  679. "$count": 186,
  680. "fontFamily": {
  681. "$count": 30
  682. },
  683. "fontWeight": {
  684. "$count": 34
  685. },
  686. "color": {
  687. "$count": 63
  688. },
  689. "fontSize": {
  690. "$count": 39
  691. },
  692. "fontStyle": {
  693. "$count": 33
  694. }
  695. },
  696. "inside": {
  697. "$count": 161
  698. },
  699. "formatter": {
  700. "$count": 519
  701. },
  702. "interval": {
  703. "$count": 255
  704. },
  705. "margin": {
  706. "$count": 166
  707. },
  708. "rotate": {
  709. "$count": 137
  710. },
  711. "show": {
  712. "$count": 164
  713. }
  714. },
  715. "nameTextStyle": {
  716. "$count": 970,
  717. "color": {
  718. "$count": 139
  719. },
  720. "fontStyle": {
  721. "$count": 85
  722. },
  723. "fontSize": {
  724. "$count": 91
  725. },
  726. "fontFamily": {
  727. "$count": 57
  728. },
  729. "fontWeight": {
  730. "$count": 61
  731. }
  732. },
  733. "nameLocation": {
  734. "$count": 886
  735. },
  736. "axisTick": {
  737. "$count": 710,
  738. "inside": {
  739. "$count": 73
  740. },
  741. "interval": {
  742. "$count": 124
  743. },
  744. "length": {
  745. "$count": 83
  746. },
  747. "lineStyle": {
  748. "color": {
  749. "$count": 31
  750. },
  751. "shadowColor": {
  752. "$count": 12
  753. },
  754. "$count": 91,
  755. "opacity": {
  756. "$count": 12
  757. },
  758. "width": {
  759. "$count": 16
  760. },
  761. "type": {
  762. "$count": 17
  763. },
  764. "shadowBlur": {
  765. "$count": 8
  766. },
  767. "shadowOffsetX": {
  768. "$count": 11
  769. },
  770. "shadowOffsetY": {
  771. "$count": 11
  772. }
  773. },
  774. "show": {
  775. "$count": 108
  776. }
  777. },
  778. "data": {
  779. "$count": 757,
  780. "value": {
  781. "$count": 327
  782. },
  783. "textStyle": {
  784. "$count": 215,
  785. "align": {
  786. "$count": 67
  787. },
  788. "fontWeight": {
  789. "$count": 22
  790. },
  791. "baseline": {
  792. "$count": 57
  793. },
  794. "fontSize": {
  795. "$count": 31
  796. },
  797. "fontStyle": {
  798. "$count": 29
  799. },
  800. "color": {
  801. "$count": 57
  802. },
  803. "fontFamily": {
  804. "$count": 16
  805. }
  806. }
  807. },
  808. "axisLine": {
  809. "$count": 999,
  810. "lineStyle": {
  811. "$count": 233,
  812. "color": {
  813. "$count": 104
  814. },
  815. "width": {
  816. "$count": 46
  817. },
  818. "shadowBlur": {
  819. "$count": 43
  820. },
  821. "opacity": {
  822. "$count": 37
  823. },
  824. "type": {
  825. "$count": 46
  826. },
  827. "shadowColor": {
  828. "$count": 38
  829. },
  830. "shadowOffsetX": {
  831. "$count": 20
  832. },
  833. "shadowOffsetY": {
  834. "$count": 14
  835. }
  836. },
  837. "onZero": {
  838. "$count": 187
  839. },
  840. "show": {
  841. "$count": 231
  842. }
  843. },
  844. "type": {
  845. "$count": 1527
  846. },
  847. "min": {
  848. "$count": 845
  849. },
  850. "interval": {
  851. "$count": 904
  852. },
  853. "name": {
  854. "$count": 924
  855. },
  856. "inverse": {
  857. "$count": 727
  858. },
  859. "boundaryGap": {
  860. "$count": 971
  861. },
  862. "scale": {
  863. "$count": 892
  864. },
  865. "max": {
  866. "$count": 667
  867. },
  868. "position": {
  869. "$count": 1257
  870. },
  871. "nameGap": {
  872. "$count": 808
  873. },
  874. "splitArea": {
  875. "$count": 427,
  876. "interval": {
  877. "$count": 104
  878. },
  879. "show": {
  880. "$count": 56
  881. },
  882. "areaStyle": {
  883. "$count": 79,
  884. "shadowOffsetX": {
  885. "$count": 11
  886. },
  887. "shadowOffsetY": {
  888. "$count": 11
  889. },
  890. "shadowColor": {
  891. "$count": 14
  892. },
  893. "shadowBlur": {
  894. "$count": 16
  895. },
  896. "color": {
  897. "$count": 68
  898. },
  899. "opacity": {
  900. "$count": 17
  901. }
  902. }
  903. },
  904. "splitLine": {
  905. "$count": 625,
  906. "lineTyle": {
  907. "$count": 8,
  908. "type": {
  909. "$count": 7
  910. },
  911. "color": {
  912. "$count": 4
  913. },
  914. "opacity": {
  915. "$count": 1
  916. },
  917. "shadowOffsetX": {
  918. "$count": 1
  919. },
  920. "shadowOffsetY": {
  921. "$count": 1
  922. },
  923. "shadowColor": {
  924. "$count": 1
  925. },
  926. "shadowBlur": {
  927. "$count": 1
  928. },
  929. "width": {
  930. "$count": 3
  931. }
  932. },
  933. "show": {
  934. "$count": 104
  935. },
  936. "interval": {
  937. "$count": 102
  938. },
  939. "lineStyle": {
  940. "color": {
  941. "$count": 43
  942. },
  943. "$count": 106,
  944. "opacity": {
  945. "$count": 16
  946. },
  947. "shadowOffsetY": {
  948. "$count": 9
  949. },
  950. "shadowOffsetX": {
  951. "$count": 11
  952. },
  953. "shadowColor": {
  954. "$count": 24
  955. },
  956. "shadowBlur": {
  957. "$count": 21
  958. },
  959. "width": {
  960. "$count": 17
  961. },
  962. "type": {
  963. "$count": 37
  964. }
  965. }
  966. }
  967. },
  968. "parallel": {
  969. "$count": 3187,
  970. "layout: 'horizontal'": {
  971. "$count": 32
  972. },
  973. "zlevel": {
  974. "$count": 44
  975. },
  976. "parallelAxisDefault": {
  977. "$count": 41,
  978. "inverse": {
  979. "$count": 6
  980. },
  981. "axisLabel": {
  982. "$count": 11,
  983. "show": {
  984. "$count": 4
  985. },
  986. "formatter": {
  987. "$count": 18
  988. },
  989. "rotate": {
  990. "$count": 4
  991. },
  992. "textStyle": {
  993. "color": {
  994. "$count": 2
  995. },
  996. "$count": 2,
  997. "fontStyle": {
  998. "$count": 1
  999. }
  1000. },
  1001. "inside": {
  1002. "$count": 1
  1003. },
  1004. "margin": {
  1005. "$count": 2
  1006. }
  1007. },
  1008. "nameTextStyle": {
  1009. "color": {
  1010. "$count": 4
  1011. },
  1012. "fontSize": {
  1013. "$count": 2
  1014. },
  1015. "$count": 5,
  1016. "fontStyle": {
  1017. "$count": 3
  1018. },
  1019. "fontFamily": {
  1020. "$count": 3
  1021. }
  1022. },
  1023. "axisLine": {
  1024. "$count": 6,
  1025. "show": {
  1026. "$count": 3
  1027. },
  1028. "lineStyle": {
  1029. "color": {
  1030. "$count": 2
  1031. },
  1032. "shadowBlur": {
  1033. "$count": 1
  1034. },
  1035. "$count": 2,
  1036. "type": {
  1037. "$count": 1
  1038. }
  1039. }
  1040. },
  1041. "nameLocation": {
  1042. "$count": 6
  1043. },
  1044. "data": {
  1045. "$count": 10,
  1046. "textStyle": {
  1047. "$count": 1,
  1048. "align": {
  1049. "$count": 2
  1050. },
  1051. "color": {
  1052. "$count": 2
  1053. },
  1054. "baseline": {
  1055. "$count": 1
  1056. },
  1057. "fontStyle": {
  1058. "$count": 1
  1059. }
  1060. },
  1061. "value": {
  1062. "$count": 5
  1063. }
  1064. },
  1065. "type": {
  1066. "$count": 6
  1067. },
  1068. "name": {
  1069. "$count": 5
  1070. },
  1071. "nameGap": {
  1072. "$count": 4
  1073. },
  1074. "boundaryGap": {
  1075. "$count": 6
  1076. },
  1077. "scale": {
  1078. "$count": 5
  1079. },
  1080. "splitNumber": {
  1081. "$count": 3
  1082. },
  1083. "interval": {
  1084. "$count": 7
  1085. },
  1086. "axisTick": {
  1087. "$count": 4,
  1088. "length": {
  1089. "$count": 3
  1090. },
  1091. "lineStyle": {
  1092. "color": {
  1093. "$count": 2
  1094. },
  1095. "$count": 2,
  1096. "type": {
  1097. "$count": 1
  1098. }
  1099. },
  1100. "show": {
  1101. "$count": 2
  1102. },
  1103. "interval": {
  1104. "$count": 2
  1105. },
  1106. "inside": {
  1107. "$count": 2
  1108. }
  1109. },
  1110. "max": {
  1111. "$count": 4
  1112. },
  1113. "min": {
  1114. "$count": 2
  1115. }
  1116. },
  1117. "height": {
  1118. "$count": 17
  1119. },
  1120. "width": {
  1121. "$count": 13
  1122. },
  1123. "z": {
  1124. "$count": 12
  1125. },
  1126. "top": {
  1127. "$count": 12
  1128. },
  1129. "left": {
  1130. "$count": 12
  1131. },
  1132. "bottom": {
  1133. "$count": 14
  1134. },
  1135. "right": {
  1136. "$count": 10
  1137. }
  1138. },
  1139. "tooltip": {
  1140. "$count": 8112,
  1141. "trigger": {
  1142. "$count": 2127
  1143. },
  1144. "triggerOn": {
  1145. "$count": 1027
  1146. },
  1147. "showContent": {
  1148. "$count": 1075
  1149. },
  1150. "axisPointer": {
  1151. "type": {
  1152. "$count": 355
  1153. },
  1154. "$count": 1098,
  1155. "lineStyle": {
  1156. "$count": 167,
  1157. "color": {
  1158. "$count": 54
  1159. },
  1160. "shadowColor": {
  1161. "$count": 15
  1162. },
  1163. "type": {
  1164. "$count": 47
  1165. },
  1166. "opacity": {
  1167. "$count": 25
  1168. },
  1169. "shadowBlur": {
  1170. "$count": 29
  1171. },
  1172. "width": {
  1173. "$count": 27
  1174. },
  1175. "shadowOffsetY": {
  1176. "$count": 11
  1177. },
  1178. "shadowOffsetX": {
  1179. "$count": 10
  1180. }
  1181. },
  1182. "shadowStyle": {
  1183. "$count": 81,
  1184. "opacity": {
  1185. "$count": 20
  1186. },
  1187. "color": {
  1188. "$count": 31
  1189. },
  1190. "shadowBlur": {
  1191. "$count": 22
  1192. },
  1193. "shadowColor": {
  1194. "$count": 18
  1195. },
  1196. "shadowOffsetY": {
  1197. "$count": 13
  1198. },
  1199. "shadowOffsetX": {
  1200. "$count": 16
  1201. }
  1202. },
  1203. "axis": {
  1204. "$count": 266
  1205. },
  1206. "animation": {
  1207. "$count": 178
  1208. },
  1209. "animationDuration": {
  1210. "$count": 92
  1211. },
  1212. "animationEasing": {
  1213. "$count": 82
  1214. },
  1215. "animationDurationUpdate": {
  1216. "$count": 69
  1217. },
  1218. "animationEasingUpdate": {
  1219. "$count": 75
  1220. },
  1221. "crossStyle": {
  1222. "$count": 130,
  1223. "textStyle": {
  1224. "$count": 33,
  1225. "color": {
  1226. "$count": 9
  1227. },
  1228. "fontSize": {
  1229. "$count": 4
  1230. },
  1231. "fontStyle": {
  1232. "$count": 10
  1233. },
  1234. "fontWeight": {
  1235. "$count": 8
  1236. },
  1237. "fontFamily": {
  1238. "$count": 9
  1239. }
  1240. },
  1241. "shadowOffsetX": {
  1242. "$count": 20
  1243. },
  1244. "shadowBlur": {
  1245. "$count": 21
  1246. },
  1247. "opacity": {
  1248. "$count": 32
  1249. },
  1250. "color": {
  1251. "$count": 30
  1252. },
  1253. "shadowColor": {
  1254. "$count": 18
  1255. },
  1256. "width": {
  1257. "$count": 21
  1258. },
  1259. "type": {
  1260. "$count": 34
  1261. },
  1262. "shadowOffsetY": {
  1263. "$count": 13
  1264. }
  1265. }
  1266. },
  1267. "formatter": {
  1268. "$count": 2620
  1269. },
  1270. "show": {
  1271. "$count": 1334
  1272. },
  1273. "backgroundColor": {
  1274. "$count": 479
  1275. },
  1276. "textStyle": {
  1277. "$count": 519,
  1278. "color": {
  1279. "$count": 94
  1280. },
  1281. "fontStyle": {
  1282. "$count": 68
  1283. },
  1284. "fontWeight": {
  1285. "$count": 52
  1286. },
  1287. "fontSize": {
  1288. "$count": 72
  1289. },
  1290. "fontFamily": {
  1291. "$count": 48
  1292. }
  1293. },
  1294. "borderColor": {
  1295. "$count": 331
  1296. },
  1297. "alwaysShowContent": {
  1298. "$count": 760
  1299. },
  1300. "hideDelay": {
  1301. "$count": 565
  1302. },
  1303. "enterable": {
  1304. "$count": 586
  1305. },
  1306. "position": {
  1307. "$count": 956
  1308. },
  1309. "transitionDuration": {
  1310. "$count": 584
  1311. },
  1312. "borderWidth": {
  1313. "$count": 303
  1314. },
  1315. "padding": {
  1316. "$count": 358
  1317. }
  1318. },
  1319. "visualMap": {
  1320. "$count": 5807
  1321. },
  1322. "visualMap-continuous": {
  1323. "$count": 1010,
  1324. "dimension": {
  1325. "$count": 250
  1326. },
  1327. "outOfRange": {
  1328. "$count": 230
  1329. },
  1330. "inRange": {
  1331. "$count": 503
  1332. },
  1333. "type": {
  1334. "$count": 496
  1335. },
  1336. "min": {
  1337. "$count": 234
  1338. },
  1339. "max": {
  1340. "$count": 157
  1341. },
  1342. "calculable": {
  1343. "$count": 572
  1344. },
  1345. "realtime": {
  1346. "$count": 185
  1347. },
  1348. "inverse": {
  1349. "$count": 207
  1350. },
  1351. "precision": {
  1352. "$count": 181
  1353. },
  1354. "itemWidth": {
  1355. "$count": 151
  1356. },
  1357. "itemHeight": {
  1358. "$count": 112
  1359. },
  1360. "align: 'auto'": {
  1361. "$count": 121
  1362. },
  1363. "text": {
  1364. "$count": 119
  1365. },
  1366. "textGap": {
  1367. "$count": 116
  1368. },
  1369. "handlePosition": {
  1370. "$count": 148
  1371. },
  1372. "show": {
  1373. "$count": 124
  1374. },
  1375. "seriesIndex": {
  1376. "$count": 290
  1377. },
  1378. "zlevel": {
  1379. "$count": 86
  1380. },
  1381. "z": {
  1382. "$count": 59
  1383. },
  1384. "left": {
  1385. "$count": 116
  1386. },
  1387. "top": {
  1388. "$count": 69
  1389. },
  1390. "right": {
  1391. "$count": 54
  1392. },
  1393. "bottom": {
  1394. "$count": 57
  1395. },
  1396. "orient": {
  1397. "$count": 122
  1398. },
  1399. "color": {
  1400. "$count": 235
  1401. },
  1402. "formatter": {
  1403. "$count": 171
  1404. },
  1405. "padding": {
  1406. "$count": 71
  1407. },
  1408. "textStyle": {
  1409. "$count": 88,
  1410. "color": {
  1411. "$count": 17
  1412. },
  1413. "fontStyle": {
  1414. "$count": 6
  1415. },
  1416. "fontWeight": {
  1417. "$count": 5
  1418. },
  1419. "fontFamily": {
  1420. "$count": 5
  1421. },
  1422. "fontSize": {
  1423. "$count": 5
  1424. }
  1425. },
  1426. "backgroundColor": {
  1427. "$count": 102
  1428. },
  1429. "borderColor": {
  1430. "$count": 60
  1431. },
  1432. "borderWidth": {
  1433. "$count": 56
  1434. }
  1435. },
  1436. "visualMap-piecewise": {
  1437. "$count": 755,
  1438. "align: 'auto'": {
  1439. "$count": 46
  1440. },
  1441. "itemSymbol": {
  1442. "$count": 183
  1443. },
  1444. "itemGap = 10": {
  1445. "$count": 48
  1446. },
  1447. "pieces": {
  1448. "$count": 274
  1449. },
  1450. "splitNumber": {
  1451. "$count": 216
  1452. },
  1453. "type": {
  1454. "$count": 317
  1455. },
  1456. "inRange": {
  1457. "$count": 154
  1458. },
  1459. "dimension": {
  1460. "$count": 80
  1461. },
  1462. "categories": {
  1463. "$count": 260
  1464. },
  1465. "seriesIndex": {
  1466. "$count": 64
  1467. },
  1468. "color": {
  1469. "$count": 81
  1470. },
  1471. "precision": {
  1472. "$count": 72
  1473. },
  1474. "formatter": {
  1475. "$count": 86
  1476. },
  1477. "textStyle": {
  1478. "$count": 39,
  1479. "color": {
  1480. "$count": 13
  1481. },
  1482. "fontStyle": {
  1483. "$count": 8
  1484. },
  1485. "fontWeight": {
  1486. "$count": 8
  1487. },
  1488. "fontFamily": {
  1489. "$count": 7
  1490. },
  1491. "fontSize": {
  1492. "$count": 9
  1493. }
  1494. },
  1495. "outOfRange": {
  1496. "$count": 66
  1497. },
  1498. "itemWidth": {
  1499. "$count": 51
  1500. },
  1501. "inverse": {
  1502. "$count": 50
  1503. },
  1504. "selectedMode": {
  1505. "$count": 120
  1506. },
  1507. "min": {
  1508. "$count": 69
  1509. },
  1510. "backgroundColor": {
  1511. "$count": 26
  1512. },
  1513. "left": {
  1514. "$count": 23
  1515. },
  1516. "itemHeight": {
  1517. "$count": 41
  1518. },
  1519. "max": {
  1520. "$count": 43
  1521. },
  1522. "text": {
  1523. "$count": 39
  1524. },
  1525. "textGap": {
  1526. "$count": 40
  1527. },
  1528. "show": {
  1529. "$count": 46
  1530. },
  1531. "zlevel": {
  1532. "$count": 24
  1533. },
  1534. "z": {
  1535. "$count": 13
  1536. },
  1537. "top": {
  1538. "$count": 18
  1539. },
  1540. "right": {
  1541. "$count": 18
  1542. },
  1543. "bottom": {
  1544. "$count": 12
  1545. },
  1546. "orient": {
  1547. "$count": 26
  1548. },
  1549. "padding": {
  1550. "$count": 21
  1551. },
  1552. "borderColor": {
  1553. "$count": 15
  1554. },
  1555. "borderWidth": {
  1556. "$count": 16
  1557. }
  1558. },
  1559. "toolbox": {
  1560. "$count": 5744,
  1561. "feature": {
  1562. "dataView": {
  1563. "$count": 561,
  1564. "textareaColor = '#fff'": {
  1565. "$count": 39
  1566. },
  1567. "iconStyle": {
  1568. "$count": 78,
  1569. "normal": {
  1570. "$count": 33,
  1571. "color": {
  1572. "$count": 9
  1573. },
  1574. "shadowBlur": {
  1575. "$count": 6
  1576. },
  1577. "borderColor": {
  1578. "$count": 9
  1579. },
  1580. "shadowOffsetY": {
  1581. "$count": 6
  1582. },
  1583. "shadowOffsetX": {
  1584. "$count": 4
  1585. },
  1586. "opacity": {
  1587. "$count": 5
  1588. },
  1589. "borderWidth": {
  1590. "$count": 7
  1591. },
  1592. "shadowColor": {
  1593. "$count": 2
  1594. }
  1595. },
  1596. "emphasis": {
  1597. "$count": 23,
  1598. "color": {
  1599. "$count": 2
  1600. },
  1601. "borderColor": {
  1602. "$count": 4
  1603. },
  1604. "borderWidth": {
  1605. "$count": 3
  1606. },
  1607. "shadowBlur": {
  1608. "$count": 4
  1609. },
  1610. "shadowOffsetX": {
  1611. "$count": 1
  1612. },
  1613. "shadowColor": {
  1614. "$count": 2
  1615. },
  1616. "opacity": {
  1617. "$count": 2
  1618. },
  1619. "shadowOffsetY": {
  1620. "$count": 1
  1621. }
  1622. }
  1623. },
  1624. "icon": {
  1625. "$count": 77
  1626. },
  1627. "readOnly": {
  1628. "$count": 67
  1629. },
  1630. "show": {
  1631. "$count": 63
  1632. },
  1633. "title": {
  1634. "$count": 63
  1635. },
  1636. "lang": {
  1637. "$count": 77
  1638. },
  1639. "backgroundColor = '#fff'": {
  1640. "$count": 53
  1641. },
  1642. "textareaBorderColor = '#333'": {
  1643. "$count": 29
  1644. },
  1645. "textColor = '#000'": {
  1646. "$count": 32
  1647. },
  1648. "buttonColor = '#c23531'": {
  1649. "$count": 33
  1650. },
  1651. "buttonTextColor = '#fff'": {
  1652. "$count": 31
  1653. }
  1654. },
  1655. "dataZoom": {
  1656. "$count": 757,
  1657. "title": {
  1658. "$count": 55,
  1659. "zoom": {
  1660. "$count": 23
  1661. },
  1662. "back": {
  1663. "$count": 14
  1664. }
  1665. },
  1666. "show": {
  1667. "$count": 76
  1668. },
  1669. "iconStyle": {
  1670. "normal": {
  1671. "$count": 20,
  1672. "shadowBlur": {
  1673. "$count": 1
  1674. },
  1675. "color": {
  1676. "$count": 1
  1677. },
  1678. "borderColor": {
  1679. "$count": 1
  1680. }
  1681. },
  1682. "$count": 38,
  1683. "emphasis": {
  1684. "$count": 11,
  1685. "color": {
  1686. "$count": 1
  1687. }
  1688. }
  1689. },
  1690. "yAxisIndex": {
  1691. "$count": 43
  1692. },
  1693. "xAxisIndex": {
  1694. "$count": 75
  1695. },
  1696. "icon": {
  1697. "$count": 33,
  1698. "zoom": {
  1699. "$count": 26
  1700. },
  1701. "back": {
  1702. "$count": 15
  1703. }
  1704. }
  1705. },
  1706. "saveAsImage": {
  1707. "type": {
  1708. "$count": 121
  1709. },
  1710. "$count": 692,
  1711. "backgroundColor": {
  1712. "$count": 99
  1713. },
  1714. "excludeComponents": {
  1715. "$count": 125
  1716. },
  1717. "show": {
  1718. "$count": 97
  1719. },
  1720. "title": {
  1721. "$count": 98
  1722. },
  1723. "icon": {
  1724. "$count": 128
  1725. },
  1726. "iconStyle": {
  1727. "normal": {
  1728. "$count": 52,
  1729. "color": {
  1730. "$count": 19
  1731. },
  1732. "opacity": {
  1733. "$count": 7
  1734. },
  1735. "shadowOffsetY": {
  1736. "$count": 3
  1737. },
  1738. "shadowOffsetX": {
  1739. "$count": 7
  1740. },
  1741. "shadowBlur": {
  1742. "$count": 12
  1743. },
  1744. "shadowColor": {
  1745. "$count": 11
  1746. },
  1747. "borderColor": {
  1748. "$count": 14
  1749. },
  1750. "borderWidth": {
  1751. "$count": 5
  1752. }
  1753. },
  1754. "emphasis": {
  1755. "$count": 61,
  1756. "color": {
  1757. "$count": 10
  1758. },
  1759. "shadowBlur": {
  1760. "$count": 3
  1761. },
  1762. "opacity": {
  1763. "$count": 4
  1764. },
  1765. "borderColor": {
  1766. "$count": 4
  1767. },
  1768. "shadowOffsetX": {
  1769. "$count": 2
  1770. },
  1771. "shadowColor": {
  1772. "$count": 3
  1773. },
  1774. "shadowOffsetY": {
  1775. "$count": 1
  1776. },
  1777. "borderWidth": {
  1778. "$count": 1
  1779. }
  1780. },
  1781. "$count": 87
  1782. },
  1783. "pixelRatio": {
  1784. "$count": 9
  1785. },
  1786. "name": {
  1787. "$count": 14
  1788. }
  1789. },
  1790. "$count": 849,
  1791. "magicType": {
  1792. "option": {
  1793. "bar": {
  1794. "$count": 82
  1795. },
  1796. "stack": {
  1797. "$count": 104
  1798. },
  1799. "$count": 153,
  1800. "line": {
  1801. "$count": 107
  1802. },
  1803. "tiled": {
  1804. "$count": 27
  1805. }
  1806. },
  1807. "seriesIndex": {
  1808. "bar": {
  1809. "$count": 37
  1810. },
  1811. "stack": {
  1812. "$count": 63
  1813. },
  1814. "line": {
  1815. "$count": 43
  1816. },
  1817. "$count": 62,
  1818. "tiled": {
  1819. "$count": 13
  1820. }
  1821. },
  1822. "$count": 681,
  1823. "type": {
  1824. "$count": 200
  1825. },
  1826. "title": {
  1827. "$count": 78,
  1828. "stack": {
  1829. "$count": 111
  1830. },
  1831. "bar": {
  1832. "$count": 53
  1833. },
  1834. "line": {
  1835. "$count": 50
  1836. },
  1837. "tiled": {
  1838. "$count": 33
  1839. }
  1840. },
  1841. "icon": {
  1842. "bar": {
  1843. "$count": 34
  1844. },
  1845. "$count": 62,
  1846. "stack": {
  1847. "$count": 59
  1848. },
  1849. "line": {
  1850. "$count": 45
  1851. },
  1852. "tiled": {
  1853. "$count": 13
  1854. }
  1855. },
  1856. "show": {
  1857. "$count": 82
  1858. },
  1859. "iconStyle": {
  1860. "normal": {
  1861. "$count": 14,
  1862. "color": {
  1863. "$count": 5
  1864. },
  1865. "opacity": {
  1866. "$count": 1
  1867. },
  1868. "borderColor": {
  1869. "$count": 2
  1870. },
  1871. "borderWidth": {
  1872. "$count": 1
  1873. }
  1874. },
  1875. "emphasis": {
  1876. "shadowBlur": {
  1877. "$count": 1
  1878. },
  1879. "$count": 9,
  1880. "borderColor": {
  1881. "$count": 1
  1882. },
  1883. "opacity": {
  1884. "$count": 1
  1885. }
  1886. },
  1887. "$count": 48
  1888. }
  1889. },
  1890. "restore": {
  1891. "$count": 383,
  1892. "iconStyle": {
  1893. "normal": {
  1894. "borderColor": {
  1895. "$count": 7
  1896. },
  1897. "$count": 33,
  1898. "color": {
  1899. "$count": 12
  1900. },
  1901. "shadowColor": {
  1902. "$count": 4
  1903. },
  1904. "opacity": {
  1905. "$count": 7
  1906. },
  1907. "shadowOffsetX": {
  1908. "$count": 3
  1909. },
  1910. "shadowBlur": {
  1911. "$count": 6
  1912. },
  1913. "borderWidth": {
  1914. "$count": 4
  1915. },
  1916. "shadowOffsetY": {
  1917. "$count": 3
  1918. }
  1919. },
  1920. "$count": 24,
  1921. "emphasis": {
  1922. "shadowBlur": {
  1923. "$count": 1
  1924. },
  1925. "$count": 20,
  1926. "color": {
  1927. "$count": 1
  1928. },
  1929. "borderColor": {
  1930. "$count": 1
  1931. }
  1932. }
  1933. },
  1934. "show": {
  1935. "$count": 35
  1936. },
  1937. "title": {
  1938. "$count": 24
  1939. },
  1940. "icon": {
  1941. "$count": 35
  1942. }
  1943. }
  1944. },
  1945. "bottom": {
  1946. "$count": 96
  1947. },
  1948. "zlevel": {
  1949. "$count": 107
  1950. },
  1951. "right": {
  1952. "$count": 124
  1953. },
  1954. "left": {
  1955. "$count": 137
  1956. },
  1957. "itemSize": {
  1958. "$count": 274
  1959. },
  1960. "orient": {
  1961. "$count": 439
  1962. },
  1963. "showTitle": {
  1964. "$count": 270
  1965. },
  1966. "show": {
  1967. "$count": 610
  1968. },
  1969. "itemGap": {
  1970. "$count": 231
  1971. },
  1972. "iconStyle": {
  1973. "$count": 308,
  1974. "normal": {
  1975. "$count": 115,
  1976. "borderColor": {
  1977. "$count": 27
  1978. },
  1979. "color": {
  1980. "$count": 43
  1981. },
  1982. "borderWidth": {
  1983. "$count": 14
  1984. },
  1985. "shadowBlur": {
  1986. "$count": 12
  1987. },
  1988. "shadowColor": {
  1989. "$count": 8
  1990. },
  1991. "shadowOffsetX": {
  1992. "$count": 7
  1993. },
  1994. "opacity": {
  1995. "$count": 12
  1996. },
  1997. "shadowOffsetY": {
  1998. "$count": 6
  1999. }
  2000. },
  2001. "emphasis": {
  2002. "$count": 87,
  2003. "color": {
  2004. "$count": 18
  2005. },
  2006. "opacity": {
  2007. "$count": 5
  2008. },
  2009. "shadowOffsetY": {
  2010. "$count": 2
  2011. },
  2012. "shadowOffsetX": {
  2013. "$count": 2
  2014. },
  2015. "shadowColor": {
  2016. "$count": 5
  2017. },
  2018. "shadowBlur": {
  2019. "$count": 3
  2020. },
  2021. "borderWidth": {
  2022. "$count": 6
  2023. },
  2024. "borderColor": {
  2025. "$count": 10
  2026. }
  2027. }
  2028. },
  2029. "z": {
  2030. "$count": 71
  2031. },
  2032. "top": {
  2033. "$count": 101
  2034. },
  2035. "height": {
  2036. "$count": 17
  2037. },
  2038. "width": {
  2039. "$count": 14
  2040. }
  2041. },
  2042. "geo": {
  2043. "$count": 4989,
  2044. "roam": {
  2045. "$count": 512
  2046. },
  2047. "map": {
  2048. "$count": 924
  2049. },
  2050. "itemStyle": {
  2051. "$count": 628,
  2052. "zlevel": {
  2053. "$count": 74
  2054. },
  2055. "emphasis": {
  2056. "$count": 167,
  2057. "borderColor": {
  2058. "$count": 24
  2059. },
  2060. "borderWidth": {
  2061. "$count": 18
  2062. },
  2063. "shadowColor": {
  2064. "$count": 18
  2065. },
  2066. "color": {
  2067. "$count": 50
  2068. },
  2069. "opacity": {
  2070. "$count": 28
  2071. },
  2072. "shadowOffsetX": {
  2073. "$count": 14
  2074. },
  2075. "shadowBlur": {
  2076. "$count": 21
  2077. },
  2078. "shadowOffsetY": {
  2079. "$count": 14
  2080. }
  2081. },
  2082. "normal": {
  2083. "$count": 251,
  2084. "color": {
  2085. "$count": 173
  2086. },
  2087. "borderColor": {
  2088. "$count": 94
  2089. },
  2090. "borderWidth": {
  2091. "$count": 68
  2092. },
  2093. "shadowColor": {
  2094. "$count": 48
  2095. },
  2096. "shadowOffsetY": {
  2097. "$count": 38
  2098. },
  2099. "opacity": {
  2100. "$count": 76
  2101. },
  2102. "shadowBlur": {
  2103. "$count": 62
  2104. },
  2105. "shadowOffsetX": {
  2106. "$count": 44
  2107. }
  2108. },
  2109. "left": {
  2110. "$count": 77
  2111. },
  2112. "z": {
  2113. "$count": 54
  2114. },
  2115. "bottom": {
  2116. "$count": 38
  2117. },
  2118. "right": {
  2119. "$count": 23
  2120. },
  2121. "top": {
  2122. "$count": 36
  2123. }
  2124. },
  2125. "label": {
  2126. "$count": 492,
  2127. "normal": {
  2128. "show": {
  2129. "$count": 123
  2130. },
  2131. "$count": 225,
  2132. "textStyle": {
  2133. "$count": 108,
  2134. "color": {
  2135. "$count": 42
  2136. },
  2137. "fontStyle": {
  2138. "$count": 23
  2139. },
  2140. "fontSize": {
  2141. "$count": 14
  2142. },
  2143. "fontWeight": {
  2144. "$count": 17
  2145. },
  2146. "fontFamily": {
  2147. "$count": 13
  2148. }
  2149. }
  2150. },
  2151. "emphasis": {
  2152. "$count": 158,
  2153. "show": {
  2154. "$count": 68
  2155. },
  2156. "textStyle": {
  2157. "$count": 44,
  2158. "fontWeight": {
  2159. "$count": 11
  2160. },
  2161. "color": {
  2162. "$count": 23
  2163. },
  2164. "fontStyle": {
  2165. "$count": 11
  2166. },
  2167. "fontFamily": {
  2168. "$count": 12
  2169. },
  2170. "fontSize": {
  2171. "$count": 10
  2172. }
  2173. }
  2174. }
  2175. },
  2176. "show": {
  2177. "$count": 531
  2178. },
  2179. "zlevel": {
  2180. "$count": 12
  2181. },
  2182. "z": {
  2183. "$count": 11
  2184. },
  2185. "top": {
  2186. "$count": 8
  2187. },
  2188. "left": {
  2189. "$count": 15
  2190. },
  2191. "right": {
  2192. "$count": 9
  2193. },
  2194. "bottom": {
  2195. "$count": 10
  2196. }
  2197. },
  2198. "series-scatter": {
  2199. "$count": 1828,
  2200. "symbol": {
  2201. "$count": 195
  2202. },
  2203. "itemStyle": {
  2204. "$count": 141,
  2205. "normal": {
  2206. "$count": 48,
  2207. "opacity": {
  2208. "$count": 20
  2209. },
  2210. "color": {
  2211. "$count": 34
  2212. },
  2213. "borderColor": {
  2214. "$count": 22
  2215. },
  2216. "borderWidth": {
  2217. "$count": 21
  2218. },
  2219. "shadowBlur": {
  2220. "$count": 21
  2221. },
  2222. "shadowColor": {
  2223. "$count": 13
  2224. },
  2225. "shadowOffsetX": {
  2226. "$count": 10
  2227. },
  2228. "shadowOffsetY": {
  2229. "$count": 7
  2230. }
  2231. },
  2232. "emphasis": {
  2233. "$count": 19,
  2234. "color": {
  2235. "$count": 4
  2236. },
  2237. "borderWidth": {
  2238. "$count": 5
  2239. },
  2240. "shadowBlur": {
  2241. "$count": 5
  2242. },
  2243. "shadowColor": {
  2244. "$count": 5
  2245. },
  2246. "shadowOffsetY": {
  2247. "$count": 1
  2248. },
  2249. "opacity": {
  2250. "$count": 1
  2251. },
  2252. "borderColor": {
  2253. "$count": 2
  2254. }
  2255. }
  2256. },
  2257. "animation": {
  2258. "$count": 26
  2259. },
  2260. "markLine": {
  2261. "$count": 139,
  2262. "label": {
  2263. "$count": 22,
  2264. "normal": {
  2265. "formatter": {
  2266. "$count": 16
  2267. },
  2268. "position": {
  2269. "$count": 6
  2270. },
  2271. "show": {
  2272. "$count": 2
  2273. },
  2274. "$count": 11
  2275. },
  2276. "emphasis": {
  2277. "$count": 7,
  2278. "formatter": {
  2279. "$count": 3
  2280. }
  2281. }
  2282. },
  2283. "lineStyle": {
  2284. "$count": 30,
  2285. "normal": {
  2286. "$count": 13,
  2287. "color": {
  2288. "$count": 9
  2289. },
  2290. "width": {
  2291. "$count": 3
  2292. },
  2293. "shadowColor": {
  2294. "$count": 1
  2295. },
  2296. "opacity": {
  2297. "$count": 3
  2298. },
  2299. "curveness": {
  2300. "$count": 5
  2301. },
  2302. "type": {
  2303. "$count": 9
  2304. },
  2305. "shadowBlur": {
  2306. "$count": 2
  2307. },
  2308. "shadowOffsetX": {
  2309. "$count": 1
  2310. }
  2311. },
  2312. "emphasis": {
  2313. "$count": 7,
  2314. "color": {
  2315. "$count": 1
  2316. },
  2317. "opacity": {
  2318. "$count": 1
  2319. },
  2320. "type": {
  2321. "$count": 1
  2322. }
  2323. }
  2324. },
  2325. "symbol": {
  2326. "$count": 36
  2327. },
  2328. "data": {
  2329. "0": {
  2330. "type": {
  2331. "$count": 28
  2332. },
  2333. "valueIndex": {
  2334. "$count": 15
  2335. },
  2336. "lineStyle": {
  2337. "$count": 9,
  2338. "normal": {
  2339. "color": {
  2340. "$count": 1
  2341. },
  2342. "$count": 4,
  2343. "curveness": {
  2344. "$count": 1
  2345. },
  2346. "type": {
  2347. "$count": 1
  2348. }
  2349. }
  2350. },
  2351. "$count": 32,
  2352. "coord": {
  2353. "$count": 26
  2354. },
  2355. "symbol": {
  2356. "$count": 14
  2357. },
  2358. "value": {
  2359. "$count": 10
  2360. },
  2361. "label": {
  2362. "normal": {
  2363. "$count": 3,
  2364. "formatter": {
  2365. "$count": 3
  2366. },
  2367. "show": {
  2368. "$count": 2
  2369. },
  2370. "position": {
  2371. "$count": 1
  2372. }
  2373. },
  2374. "emphasis": {
  2375. "formatter": {
  2376. "$count": 1
  2377. }
  2378. },
  2379. "$count": 4
  2380. },
  2381. "x": {
  2382. "$count": 8
  2383. },
  2384. "y": {
  2385. "$count": 3
  2386. },
  2387. "symbolSize": {
  2388. "$count": 4
  2389. },
  2390. "symbolOffset": {
  2391. "$count": 3
  2392. },
  2393. "symbolRotate": {
  2394. "$count": 1
  2395. }
  2396. },
  2397. "1": {
  2398. "label": {
  2399. "$count": 4
  2400. },
  2401. "$count": 12,
  2402. "valueIndex": {
  2403. "$count": 3
  2404. },
  2405. "type": {
  2406. "$count": 6
  2407. },
  2408. "symbol": {
  2409. "$count": 4
  2410. },
  2411. "coord": {
  2412. "$count": 6
  2413. },
  2414. "y": {
  2415. "$count": 2
  2416. },
  2417. "lineStyle": {
  2418. "normal": {
  2419. "$count": 3,
  2420. "color": {
  2421. "$count": 2
  2422. },
  2423. "type": {
  2424. "$count": 4
  2425. },
  2426. "shadowBlur": {
  2427. "$count": 1
  2428. },
  2429. "shadowOffsetX": {
  2430. "$count": 1
  2431. },
  2432. "curveness": {
  2433. "$count": 1
  2434. },
  2435. "shadowColor": {
  2436. "$count": 1
  2437. },
  2438. "width": {
  2439. "$count": 1
  2440. }
  2441. },
  2442. "emphasis": {
  2443. "$count": 3,
  2444. "color": {
  2445. "$count": 2
  2446. },
  2447. "shadowColor": {
  2448. "$count": 1
  2449. },
  2450. "curveness": {
  2451. "$count": 1
  2452. },
  2453. "shadowOffsetX": {
  2454. "$count": 1
  2455. },
  2456. "type": {
  2457. "$count": 2
  2458. },
  2459. "width": {
  2460. "$count": 1
  2461. }
  2462. },
  2463. "$count": 2
  2464. },
  2465. "value": {
  2466. "$count": 1
  2467. },
  2468. "x": {
  2469. "$count": 1
  2470. },
  2471. "symbolOffset": {
  2472. "$count": 1
  2473. }
  2474. },
  2475. "$count": 57
  2476. },
  2477. "animationEasing": {
  2478. "$count": 3
  2479. },
  2480. "symbolSize": {
  2481. "$count": 16
  2482. },
  2483. "precision": {
  2484. "$count": 16
  2485. },
  2486. "animation": {
  2487. "$count": 7
  2488. },
  2489. "animationDurationUpdate": {
  2490. "$count": 1
  2491. },
  2492. "animationEasingUpdate": {
  2493. "$count": 2
  2494. }
  2495. },
  2496. "data": {
  2497. "$count": 308,
  2498. "value": {
  2499. "$count": 129
  2500. },
  2501. "symbolSize": {
  2502. "$count": 39
  2503. },
  2504. "symbol": {
  2505. "$count": 70
  2506. },
  2507. "symbolRotate": {
  2508. "$count": 28
  2509. },
  2510. "symbolOffset": {
  2511. "$count": 30
  2512. },
  2513. "itemStyle": {
  2514. "$count": 38,
  2515. "normal": {
  2516. "$count": 17,
  2517. "color": {
  2518. "$count": 11
  2519. },
  2520. "borderColor": {
  2521. "$count": 4
  2522. },
  2523. "borderWidth": {
  2524. "$count": 4
  2525. },
  2526. "shadowBlur": {
  2527. "$count": 2
  2528. },
  2529. "shadowColor": {
  2530. "$count": 1
  2531. },
  2532. "shadowOffsetX": {
  2533. "$count": 1
  2534. },
  2535. "shadowOffsetY": {
  2536. "$count": 1
  2537. },
  2538. "opacity": {
  2539. "$count": 4
  2540. }
  2541. },
  2542. "emphasis": {
  2543. "color": {
  2544. "$count": 1
  2545. },
  2546. "shadowColor": {
  2547. "$count": 1
  2548. },
  2549. "shadowBlur": {
  2550. "$count": 1
  2551. },
  2552. "$count": 12,
  2553. "opacity": {
  2554. "$count": 1
  2555. }
  2556. }
  2557. },
  2558. "label": {
  2559. "$count": 46,
  2560. "normal": {
  2561. "$count": 13,
  2562. "textStyle": {
  2563. "$count": 4,
  2564. "color": {
  2565. "$count": 2
  2566. },
  2567. "fontWeight": {
  2568. "$count": 1
  2569. },
  2570. "fontStyle": {
  2571. "$count": 1
  2572. }
  2573. },
  2574. "position": {
  2575. "$count": 9
  2576. },
  2577. "show": {
  2578. "$count": 2
  2579. }
  2580. },
  2581. "emphasis": {
  2582. "$count": 6,
  2583. "position": {
  2584. "$count": 2
  2585. },
  2586. "show": {
  2587. "$count": 1
  2588. }
  2589. }
  2590. },
  2591. "name": {
  2592. "$count": 104
  2593. }
  2594. },
  2595. "large": {
  2596. "$count": 85
  2597. },
  2598. "markPoint": {
  2599. "$count": 173,
  2600. "data": {
  2601. "$count": 44,
  2602. "valueIndex": {
  2603. "$count": 24
  2604. },
  2605. "coord": {
  2606. "$count": 26
  2607. },
  2608. "symbolRotate": {
  2609. "$count": 2
  2610. },
  2611. "symbolSize": {
  2612. "$count": 7
  2613. },
  2614. "symbol": {
  2615. "$count": 13
  2616. },
  2617. "value": {
  2618. "$count": 19
  2619. },
  2620. "y": {
  2621. "$count": 8
  2622. },
  2623. "x": {
  2624. "$count": 16
  2625. },
  2626. "name": {
  2627. "$count": 16
  2628. },
  2629. "type": {
  2630. "$count": 36
  2631. },
  2632. "label": {
  2633. "$count": 5,
  2634. "normal": {
  2635. "$count": 3
  2636. },
  2637. "emphasis": {
  2638. "$count": 1
  2639. }
  2640. },
  2641. "itemStyle": {
  2642. "normal": {
  2643. "$count": 2,
  2644. "color": {
  2645. "$count": 1
  2646. },
  2647. "borderColor": {
  2648. "$count": 1
  2649. },
  2650. "borderWidth": {
  2651. "$count": 1
  2652. },
  2653. "shadowColor": {
  2654. "$count": 1
  2655. },
  2656. "shadowBlur": {
  2657. "$count": 1
  2658. },
  2659. "opacity": {
  2660. "$count": 1
  2661. }
  2662. },
  2663. "$count": 5
  2664. },
  2665. "symbolOffset": {
  2666. "$count": 3
  2667. },
  2668. "valueDim": {
  2669. "$count": 5
  2670. }
  2671. },
  2672. "symbol": {
  2673. "$count": 67
  2674. },
  2675. "itemStyle": {
  2676. "normal": {
  2677. "$count": 6,
  2678. "color": {
  2679. "$count": 7
  2680. },
  2681. "borderColor": {
  2682. "$count": 2
  2683. },
  2684. "shadowColor": {
  2685. "$count": 4
  2686. },
  2687. "shadowOffsetY": {
  2688. "$count": 3
  2689. },
  2690. "shadowBlur": {
  2691. "$count": 2
  2692. },
  2693. "opacity": {
  2694. "$count": 2
  2695. },
  2696. "borderWidth": {
  2697. "$count": 1
  2698. },
  2699. "shadowOffsetX": {
  2700. "$count": 2
  2701. }
  2702. },
  2703. "$count": 18,
  2704. "emphasis": {
  2705. "color": {
  2706. "$count": 2
  2707. },
  2708. "borderColor": {
  2709. "$count": 2
  2710. },
  2711. "shadowColor": {
  2712. "$count": 2
  2713. },
  2714. "shadowBlur": {
  2715. "$count": 3
  2716. },
  2717. "borderWidth": {
  2718. "$count": 2
  2719. },
  2720. "$count": 1,
  2721. "shadowOffsetY": {
  2722. "$count": 2
  2723. },
  2724. "shadowOffsetX": {
  2725. "$count": 1
  2726. },
  2727. "opacity": {
  2728. "$count": 1
  2729. }
  2730. }
  2731. },
  2732. "animation": {
  2733. "$count": 10
  2734. },
  2735. "animationDuration": {
  2736. "$count": 4
  2737. },
  2738. "symbolSize": {
  2739. "$count": 28
  2740. },
  2741. "label": {
  2742. "$count": 29,
  2743. "normal": {
  2744. "$count": 7,
  2745. "formatter": {
  2746. "$count": 5
  2747. },
  2748. "position": {
  2749. "$count": 4
  2750. },
  2751. "textStyle": {
  2752. "color": {
  2753. "$count": 2
  2754. },
  2755. "$count": 1
  2756. },
  2757. "show": {
  2758. "$count": 1
  2759. }
  2760. },
  2761. "emphasis": {
  2762. "$count": 3
  2763. }
  2764. },
  2765. "animationEasing": {
  2766. "$count": 4
  2767. },
  2768. "symbolOffset": {
  2769. "$count": 11
  2770. },
  2771. "symbolRotate": {
  2772. "$count": 11
  2773. },
  2774. "animationDurationUpdate": {
  2775. "$count": 1
  2776. },
  2777. "animationEasingUpdate": {
  2778. "$count": 1
  2779. }
  2780. },
  2781. "symbolSize": {
  2782. "$count": 180
  2783. },
  2784. "xAxisIndex": {
  2785. "$count": 105
  2786. },
  2787. "polarIndex": {
  2788. "$count": 51
  2789. },
  2790. "type": {
  2791. "$count": 266
  2792. },
  2793. "label": {
  2794. "normal": {
  2795. "formatter": {
  2796. "$count": 72
  2797. },
  2798. "show": {
  2799. "$count": 20
  2800. },
  2801. "position": {
  2802. "$count": 36
  2803. },
  2804. "$count": 49,
  2805. "textStyle": {
  2806. "color": {
  2807. "$count": 3
  2808. },
  2809. "$count": 20,
  2810. "fontStyle": {
  2811. "$count": 4
  2812. },
  2813. "fontWeight": {
  2814. "$count": 3
  2815. },
  2816. "fontFamily": {
  2817. "$count": 1
  2818. },
  2819. "fontSize": {
  2820. "$count": 2
  2821. }
  2822. }
  2823. },
  2824. "$count": 137,
  2825. "emphasis": {
  2826. "$count": 34,
  2827. "textStyle": {
  2828. "color": {
  2829. "$count": 5
  2830. },
  2831. "$count": 3,
  2832. "fontStyle": {
  2833. "$count": 3
  2834. },
  2835. "fontFamily": {
  2836. "$count": 3
  2837. },
  2838. "fontSize": {
  2839. "$count": 3
  2840. },
  2841. "fontWeight": {
  2842. "$count": 2
  2843. }
  2844. },
  2845. "formatter": {
  2846. "$count": 12
  2847. },
  2848. "position": {
  2849. "$count": 7
  2850. },
  2851. "show": {
  2852. "$count": 4
  2853. }
  2854. }
  2855. },
  2856. "geoIndex": {
  2857. "$count": 84
  2858. },
  2859. "coordinateSystem": {
  2860. "$count": 186
  2861. },
  2862. "symbolRotate": {
  2863. "$count": 77
  2864. },
  2865. "symbolOffset": {
  2866. "$count": 61
  2867. },
  2868. "name": {
  2869. "$count": 103
  2870. },
  2871. "yAxisIndex": {
  2872. "$count": 46
  2873. },
  2874. "hoverAnimation": {
  2875. "$count": 100
  2876. },
  2877. "legendHoverLink": {
  2878. "$count": 78
  2879. },
  2880. "largeThreshold": {
  2881. "$count": 63
  2882. },
  2883. "animationEasing": {
  2884. "$count": 11
  2885. },
  2886. "animationDuration": {
  2887. "$count": 14
  2888. },
  2889. "animationDurationUpdate": {
  2890. "$count": 15
  2891. },
  2892. "animationEasingUpdate": {
  2893. "$count": 12
  2894. },
  2895. "zlevel": {
  2896. "$count": 1
  2897. },
  2898. "z": {
  2899. "$count": 1
  2900. }
  2901. },
  2902. "title": {
  2903. "$count": 6280,
  2904. "show": {
  2905. "$count": 1911
  2906. },
  2907. "text": {
  2908. "$count": 1510
  2909. },
  2910. "link": {
  2911. "$count": 964
  2912. },
  2913. "target": {
  2914. "$count": 882
  2915. },
  2916. "bottom": {
  2917. "$count": 464
  2918. },
  2919. "backgroundColor": {
  2920. "$count": 511
  2921. },
  2922. "borderColor": {
  2923. "$count": 370
  2924. },
  2925. "borderWidth": {
  2926. "$count": 297
  2927. },
  2928. "top": {
  2929. "$count": 600
  2930. },
  2931. "subtextStyle": {
  2932. "$count": 780,
  2933. "color": {
  2934. "$count": 206
  2935. },
  2936. "fontStyle": {
  2937. "$count": 109
  2938. },
  2939. "fontWeight": {
  2940. "$count": 80
  2941. },
  2942. "fontFamily": {
  2943. "$count": 83
  2944. },
  2945. "fontSize": {
  2946. "$count": 76
  2947. }
  2948. },
  2949. "textStyle": {
  2950. "$count": 1560,
  2951. "color": {
  2952. "$count": 540
  2953. },
  2954. "fontWeight": {
  2955. "$count": 380
  2956. },
  2957. "fontFamily": {
  2958. "$count": 317
  2959. },
  2960. "fontSize": {
  2961. "$count": 375
  2962. },
  2963. "fontStyle": {
  2964. "$count": 420
  2965. }
  2966. },
  2967. "itemGap": {
  2968. "$count": 597
  2969. },
  2970. "padding": {
  2971. "$count": 790
  2972. },
  2973. "subtarget": {
  2974. "$count": 469
  2975. },
  2976. "sublink": {
  2977. "$count": 484
  2978. },
  2979. "subtext": {
  2980. "$count": 882
  2981. },
  2982. "zlevel": {
  2983. "$count": 473
  2984. },
  2985. "left": {
  2986. "$count": 1025
  2987. },
  2988. "shadowOffsetX": {
  2989. "$count": 290
  2990. },
  2991. "shadowOffsetY": {
  2992. "$count": 215
  2993. },
  2994. "shadowBlur": {
  2995. "$count": 377
  2996. },
  2997. "shadowColor": {
  2998. "$count": 332
  2999. },
  3000. "z": {
  3001. "$count": 419
  3002. },
  3003. "right": {
  3004. "$count": 369
  3005. }
  3006. },
  3007. "grid": {
  3008. "$count": 12086,
  3009. "show": {
  3010. "$count": 1631
  3011. },
  3012. "left": {
  3013. "$count": 914
  3014. },
  3015. "borderWidth": {
  3016. "$count": 541
  3017. },
  3018. "zlevel": {
  3019. "$count": 721
  3020. },
  3021. "z": {
  3022. "$count": 535
  3023. },
  3024. "top": {
  3025. "$count": 710
  3026. },
  3027. "right": {
  3028. "$count": 512
  3029. },
  3030. "bottom": {
  3031. "$count": 491
  3032. },
  3033. "height": {
  3034. "$count": 497
  3035. },
  3036. "width": {
  3037. "$count": 735
  3038. },
  3039. "backgroundColor": {
  3040. "$count": 768
  3041. },
  3042. "shadowColor": {
  3043. "$count": 384
  3044. },
  3045. "borderColor": {
  3046. "$count": 690
  3047. },
  3048. "containLabel": {
  3049. "$count": 1072
  3050. },
  3051. "shadowOffsetX": {
  3052. "$count": 362
  3053. },
  3054. "shadowOffsetY": {
  3055. "$count": 281
  3056. },
  3057. "shadowBlur": {
  3058. "$count": 426
  3059. }
  3060. },
  3061. "polar": {
  3062. "$count": 6459,
  3063. "zlevel": {
  3064. "$count": 340
  3065. },
  3066. "radius": {
  3067. "$count": 418
  3068. },
  3069. "z": {
  3070. "$count": 187
  3071. },
  3072. "center": {
  3073. "$count": 334
  3074. }
  3075. },
  3076. "angleAxis": {
  3077. "$count": 4074,
  3078. "startAngle": {
  3079. "$count": 75
  3080. },
  3081. "type": {
  3082. "$count": 70
  3083. },
  3084. "data": {
  3085. "$count": 50,
  3086. "value": {
  3087. "$count": 17
  3088. },
  3089. "textStyle": {
  3090. "$count": 9,
  3091. "baseline": {
  3092. "$count": 6
  3093. },
  3094. "color": {
  3095. "$count": 3
  3096. },
  3097. "fontWeight": {
  3098. "$count": 1
  3099. }
  3100. }
  3101. },
  3102. "axisLabel": {
  3103. "formatter": {
  3104. "$count": 53
  3105. },
  3106. "interval": {
  3107. "$count": 5
  3108. },
  3109. "textStyle": {
  3110. "$count": 8,
  3111. "color": {
  3112. "$count": 2
  3113. },
  3114. "fontSize": {
  3115. "$count": 1
  3116. }
  3117. },
  3118. "$count": 41,
  3119. "margin": {
  3120. "$count": 7
  3121. },
  3122. "show": {
  3123. "$count": 4
  3124. },
  3125. "inside": {
  3126. "$count": 4
  3127. }
  3128. },
  3129. "axisLine": {
  3130. "lineStyle": {
  3131. "color": {
  3132. "$count": 11
  3133. },
  3134. "shadowColor": {
  3135. "$count": 4
  3136. },
  3137. "$count": 14,
  3138. "width": {
  3139. "$count": 5
  3140. },
  3141. "type": {
  3142. "$count": 5
  3143. },
  3144. "shadowBlur": {
  3145. "$count": 6
  3146. },
  3147. "shadowOffsetX": {
  3148. "$count": 1
  3149. },
  3150. "shadowOffsetY": {
  3151. "$count": 2
  3152. },
  3153. "opacity": {
  3154. "$count": 2
  3155. }
  3156. },
  3157. "$count": 56,
  3158. "show": {
  3159. "$count": 13
  3160. }
  3161. },
  3162. "axisTick": {
  3163. "lineStyle": {
  3164. "color": {
  3165. "$count": 2
  3166. },
  3167. "shadowColor": {
  3168. "$count": 1
  3169. },
  3170. "$count": 7,
  3171. "type": {
  3172. "$count": 1
  3173. }
  3174. },
  3175. "$count": 31,
  3176. "show": {
  3177. "$count": 9
  3178. },
  3179. "interval": {
  3180. "$count": 3
  3181. },
  3182. "inside": {
  3183. "$count": 3
  3184. },
  3185. "length": {
  3186. "$count": 1
  3187. }
  3188. },
  3189. "polarIndex": {
  3190. "$count": 77
  3191. },
  3192. "clockwise": {
  3193. "$count": 44
  3194. },
  3195. "splitArea": {
  3196. "areaStyle": {
  3197. "$count": 19,
  3198. "color": {
  3199. "$count": 14
  3200. },
  3201. "shadowBlur": {
  3202. "$count": 3
  3203. },
  3204. "shadowColor": {
  3205. "$count": 4
  3206. },
  3207. "shadowOffsetX": {
  3208. "$count": 1
  3209. },
  3210. "shadowOffsetY": {
  3211. "$count": 1
  3212. },
  3213. "opacity": {
  3214. "$count": 2
  3215. }
  3216. },
  3217. "$count": 31,
  3218. "interval": {
  3219. "$count": 6
  3220. },
  3221. "show": {
  3222. "$count": 4
  3223. }
  3224. },
  3225. "splitLine": {
  3226. "$count": 35,
  3227. "lineStyle": {
  3228. "type": {
  3229. "$count": 1
  3230. },
  3231. "shadowColor": {
  3232. "$count": 1
  3233. },
  3234. "$count": 7,
  3235. "shadowBlur": {
  3236. "$count": 2
  3237. },
  3238. "color": {
  3239. "$count": 1
  3240. },
  3241. "opacity": {
  3242. "$count": 1
  3243. }
  3244. },
  3245. "show": {
  3246. "$count": 3
  3247. },
  3248. "interval": {
  3249. "$count": 6
  3250. }
  3251. },
  3252. "boundaryGap": {
  3253. "$count": 50
  3254. },
  3255. "min": {
  3256. "$count": 39
  3257. },
  3258. "scale": {
  3259. "$count": 32
  3260. },
  3261. "interval": {
  3262. "$count": 39
  3263. },
  3264. "max": {
  3265. "$count": 28
  3266. },
  3267. "splitNumber": {
  3268. "$count": 38
  3269. }
  3270. },
  3271. "series-line": {
  3272. "$count": 4196,
  3273. "xAxisIndex": {
  3274. "$count": 679
  3275. },
  3276. "symbol": {
  3277. "$count": 1352
  3278. },
  3279. "smooth": {
  3280. "$count": 544
  3281. },
  3282. "showAllSymbol": {
  3283. "$count": 474
  3284. },
  3285. "symbolSize": {
  3286. "$count": 799
  3287. },
  3288. "yAxisIndex": {
  3289. "$count": 476
  3290. },
  3291. "coordinateSystem": {
  3292. "$count": 955
  3293. },
  3294. "itemStyle": {
  3295. "$count": 1086,
  3296. "normal": {
  3297. "$count": 450,
  3298. "borderWidth": {
  3299. "$count": 136
  3300. },
  3301. "color": {
  3302. "$count": 335
  3303. },
  3304. "borderColor": {
  3305. "$count": 161
  3306. },
  3307. "shadowBlur": {
  3308. "$count": 80
  3309. },
  3310. "shadowColor": {
  3311. "$count": 59
  3312. },
  3313. "opacity": {
  3314. "$count": 114
  3315. },
  3316. "shadowOffsetX": {
  3317. "$count": 49
  3318. },
  3319. "shadowOffsetY": {
  3320. "$count": 42
  3321. }
  3322. },
  3323. "emphasis": {
  3324. "opacity": {
  3325. "$count": 20
  3326. },
  3327. "$count": 217,
  3328. "color": {
  3329. "$count": 46
  3330. },
  3331. "borderColor": {
  3332. "$count": 23
  3333. },
  3334. "borderWidth": {
  3335. "$count": 24
  3336. },
  3337. "shadowBlur": {
  3338. "$count": 19
  3339. },
  3340. "shadowColor": {
  3341. "$count": 19
  3342. },
  3343. "shadowOffsetY": {
  3344. "$count": 16
  3345. },
  3346. "shadowOffsetX": {
  3347. "$count": 18
  3348. }
  3349. }
  3350. },
  3351. "data": {
  3352. "symbol": {
  3353. "$count": 282
  3354. },
  3355. "label": {
  3356. "$count": 229,
  3357. "emphasis": {
  3358. "$count": 49,
  3359. "position": {
  3360. "$count": 9
  3361. },
  3362. "show": {
  3363. "$count": 10
  3364. },
  3365. "textStyle": {
  3366. "$count": 6,
  3367. "color": {
  3368. "$count": 5
  3369. },
  3370. "fontStyle": {
  3371. "$count": 3
  3372. },
  3373. "fontWeight": {
  3374. "$count": 2
  3375. },
  3376. "fontFamily": {
  3377. "$count": 1
  3378. },
  3379. "fontSize": {
  3380. "$count": 1
  3381. }
  3382. }
  3383. },
  3384. "normal": {
  3385. "$count": 109,
  3386. "position": {
  3387. "$count": 66
  3388. },
  3389. "show": {
  3390. "$count": 49
  3391. },
  3392. "textStyle": {
  3393. "$count": 45,
  3394. "color": {
  3395. "$count": 22
  3396. },
  3397. "fontStyle": {
  3398. "$count": 10
  3399. },
  3400. "fontWeight": {
  3401. "$count": 11
  3402. },
  3403. "fontFamily": {
  3404. "$count": 9
  3405. },
  3406. "fontSize": {
  3407. "$count": 11
  3408. }
  3409. }
  3410. }
  3411. },
  3412. "symbolSize": {
  3413. "$count": 181
  3414. },
  3415. "value": {
  3416. "$count": 498
  3417. },
  3418. "$count": 1065,
  3419. "symbolOffset": {
  3420. "$count": 114
  3421. },
  3422. "symbolRotate": {
  3423. "$count": 112
  3424. },
  3425. "itemStyle": {
  3426. "$count": 213,
  3427. "emphasis": {
  3428. "barBorderColor": {
  3429. "$count": 4
  3430. },
  3431. "$count": 50,
  3432. "color": {
  3433. "$count": 14
  3434. },
  3435. "barBorderWidth": {
  3436. "$count": 2
  3437. },
  3438. "opacity": {
  3439. "$count": 3
  3440. },
  3441. "shadowOffsetX": {
  3442. "$count": 2
  3443. },
  3444. "shadowColor": {
  3445. "$count": 1
  3446. }
  3447. },
  3448. "normal": {
  3449. "color": {
  3450. "$count": 66
  3451. },
  3452. "$count": 95,
  3453. "barBorderColor": {
  3454. "$count": 40
  3455. },
  3456. "barBorderWidth": {
  3457. "$count": 24
  3458. },
  3459. "opacity": {
  3460. "$count": 16
  3461. },
  3462. "shadowColor": {
  3463. "$count": 12
  3464. },
  3465. "shadowBlur": {
  3466. "$count": 12
  3467. },
  3468. "shadowOffsetY": {
  3469. "$count": 7
  3470. },
  3471. "shadowOffsetX": {
  3472. "$count": 8
  3473. }
  3474. }
  3475. }
  3476. },
  3477. "markLine": {
  3478. "$count": 1082,
  3479. "symbol": {
  3480. "$count": 357
  3481. },
  3482. "data": {
  3483. "0": {
  3484. "x": {
  3485. "$count": 72
  3486. },
  3487. "$count": 166,
  3488. "type": {
  3489. "$count": 156
  3490. },
  3491. "label": {
  3492. "emphasis": {
  3493. "formatter": {
  3494. "$count": 6
  3495. },
  3496. "$count": 5
  3497. },
  3498. "normal": {
  3499. "$count": 11,
  3500. "formatter": {
  3501. "$count": 22
  3502. },
  3503. "position": {
  3504. "$count": 9
  3505. },
  3506. "show": {
  3507. "$count": 3
  3508. }
  3509. },
  3510. "$count": 34
  3511. },
  3512. "coord": {
  3513. "$count": 156
  3514. },
  3515. "valueIndex": {
  3516. "$count": 109
  3517. },
  3518. "symbol": {
  3519. "$count": 75
  3520. },
  3521. "symbolOffset": {
  3522. "$count": 18
  3523. },
  3524. "value": {
  3525. "$count": 95
  3526. },
  3527. "lineStyle": {
  3528. "emphasis": {
  3529. "$count": 10,
  3530. "type": {
  3531. "$count": 2
  3532. },
  3533. "shadowBlur": {
  3534. "$count": 2
  3535. },
  3536. "color": {
  3537. "$count": 2
  3538. },
  3539. "curveness": {
  3540. "$count": 3
  3541. },
  3542. "opacity": {
  3543. "$count": 2
  3544. },
  3545. "shadowOffsetY": {
  3546. "$count": 2
  3547. },
  3548. "width": {
  3549. "$count": 1
  3550. },
  3551. "shadowColor": {
  3552. "$count": 1
  3553. },
  3554. "shadowOffsetX": {
  3555. "$count": 1
  3556. }
  3557. },
  3558. "$count": 40,
  3559. "normal": {
  3560. "$count": 19,
  3561. "color": {
  3562. "$count": 10
  3563. },
  3564. "width": {
  3565. "$count": 6
  3566. },
  3567. "shadowOffsetX": {
  3568. "$count": 2
  3569. },
  3570. "curveness": {
  3571. "$count": 6
  3572. },
  3573. "type": {
  3574. "$count": 4
  3575. },
  3576. "shadowBlur": {
  3577. "$count": 1
  3578. }
  3579. }
  3580. },
  3581. "y": {
  3582. "$count": 39
  3583. },
  3584. "symbolSize": {
  3585. "$count": 30
  3586. },
  3587. "symbolRotate": {
  3588. "$count": 21
  3589. },
  3590. "valueDim": {
  3591. "$count": 6
  3592. }
  3593. },
  3594. "1": {
  3595. "$count": 75,
  3596. "label": {
  3597. "normal": {
  3598. "formatter": {
  3599. "$count": 6
  3600. },
  3601. "$count": 6,
  3602. "position": {
  3603. "$count": 4
  3604. },
  3605. "show": {
  3606. "$count": 2
  3607. }
  3608. },
  3609. "$count": 3,
  3610. "emphasis": {
  3611. "formatter": {
  3612. "$count": 1
  3613. },
  3614. "show": {
  3615. "$count": 1
  3616. },
  3617. "$count": 3,
  3618. "position": {
  3619. "$count": 1
  3620. }
  3621. }
  3622. },
  3623. "type": {
  3624. "$count": 27
  3625. },
  3626. "valueIndex": {
  3627. "$count": 12
  3628. },
  3629. "x": {
  3630. "$count": 13
  3631. },
  3632. "y": {
  3633. "$count": 10
  3634. },
  3635. "value": {
  3636. "$count": 16
  3637. },
  3638. "coord": {
  3639. "$count": 17
  3640. },
  3641. "lineStyle": {
  3642. "normal": {
  3643. "curveness": {
  3644. "$count": 1
  3645. },
  3646. "$count": 3,
  3647. "width": {
  3648. "$count": 2
  3649. }
  3650. },
  3651. "emphasis": {
  3652. "$count": 3
  3653. },
  3654. "$count": 7
  3655. },
  3656. "symbol": {
  3657. "$count": 12
  3658. },
  3659. "symbolRotate": {
  3660. "$count": 2
  3661. },
  3662. "symbolSize": {
  3663. "$count": 4
  3664. },
  3665. "symbolOffset": {
  3666. "$count": 1
  3667. },
  3668. "valueDim": {
  3669. "$count": 2
  3670. }
  3671. },
  3672. "$count": 397
  3673. },
  3674. "lineStyle": {
  3675. "$count": 220,
  3676. "normal": {
  3677. "$count": 88,
  3678. "type": {
  3679. "$count": 39
  3680. },
  3681. "color": {
  3682. "$count": 52
  3683. },
  3684. "width": {
  3685. "$count": 20
  3686. },
  3687. "shadowBlur": {
  3688. "$count": 17
  3689. },
  3690. "curveness": {
  3691. "$count": 32
  3692. },
  3693. "shadowColor": {
  3694. "$count": 10
  3695. },
  3696. "shadowOffsetX": {
  3697. "$count": 6
  3698. },
  3699. "opacity": {
  3700. "$count": 13
  3701. },
  3702. "shadowOffsetY": {
  3703. "$count": 4
  3704. }
  3705. },
  3706. "emphasis": {
  3707. "$count": 55,
  3708. "opacity": {
  3709. "$count": 7
  3710. },
  3711. "shadowBlur": {
  3712. "$count": 7
  3713. },
  3714. "shadowColor": {
  3715. "$count": 4
  3716. },
  3717. "shadowOffsetX": {
  3718. "$count": 4
  3719. },
  3720. "shadowOffsetY": {
  3721. "$count": 3
  3722. },
  3723. "color": {
  3724. "$count": 8
  3725. },
  3726. "type": {
  3727. "$count": 5
  3728. },
  3729. "width": {
  3730. "$count": 4
  3731. }
  3732. }
  3733. },
  3734. "animation": {
  3735. "$count": 46
  3736. },
  3737. "animationDuration": {
  3738. "$count": 13
  3739. },
  3740. "animationEasingUpdate": {
  3741. "$count": 11
  3742. },
  3743. "label": {
  3744. "$count": 172,
  3745. "normal": {
  3746. "formatter": {
  3747. "$count": 75
  3748. },
  3749. "$count": 72,
  3750. "position": {
  3751. "$count": 47
  3752. },
  3753. "show": {
  3754. "$count": 27
  3755. }
  3756. },
  3757. "emphasis": {
  3758. "formatter": {
  3759. "$count": 23
  3760. },
  3761. "$count": 45,
  3762. "position": {
  3763. "$count": 17
  3764. },
  3765. "show": {
  3766. "$count": 17
  3767. }
  3768. }
  3769. },
  3770. "symbolSize": {
  3771. "$count": 179
  3772. },
  3773. "animationEasing": {
  3774. "$count": 13
  3775. },
  3776. "animationDurationUpdate": {
  3777. "$count": 10
  3778. },
  3779. "precision": {
  3780. "$count": 128
  3781. }
  3782. },
  3783. "label": {
  3784. "emphasis": {
  3785. "$count": 219,
  3786. "formatter": {
  3787. "$count": 61
  3788. },
  3789. "position": {
  3790. "$count": 50
  3791. },
  3792. "show": {
  3793. "$count": 46
  3794. },
  3795. "textStyle": {
  3796. "$count": 26,
  3797. "fontStyle": {
  3798. "$count": 3
  3799. },
  3800. "fontWeight": {
  3801. "$count": 3
  3802. },
  3803. "fontFamily": {
  3804. "$count": 3
  3805. },
  3806. "fontSize": {
  3807. "$count": 4
  3808. },
  3809. "color": {
  3810. "$count": 8
  3811. }
  3812. }
  3813. },
  3814. "normal": {
  3815. "show": {
  3816. "$count": 211
  3817. },
  3818. "position": {
  3819. "$count": 314
  3820. },
  3821. "$count": 418,
  3822. "formatter": {
  3823. "$count": 458
  3824. },
  3825. "textStyle": {
  3826. "$count": 190,
  3827. "fontStyle": {
  3828. "$count": 39
  3829. },
  3830. "fontSize": {
  3831. "$count": 38
  3832. },
  3833. "fontFamily": {
  3834. "$count": 23
  3835. },
  3836. "color": {
  3837. "$count": 62
  3838. },
  3839. "fontWeight": {
  3840. "$count": 25
  3841. }
  3842. }
  3843. },
  3844. "$count": 894
  3845. },
  3846. "areaStyle": {
  3847. "$count": 889,
  3848. "emphasis": {
  3849. "$count": 140,
  3850. "color": {
  3851. "$count": 22
  3852. },
  3853. "opacity": {
  3854. "$count": 16
  3855. },
  3856. "shadowColor": {
  3857. "$count": 7
  3858. },
  3859. "shadowOffsetX": {
  3860. "$count": 8
  3861. },
  3862. "shadowOffsetY": {
  3863. "$count": 7
  3864. },
  3865. "shadowBlur": {
  3866. "$count": 12
  3867. }
  3868. },
  3869. "normal": {
  3870. "color": {
  3871. "$count": 247
  3872. },
  3873. "$count": 307,
  3874. "shadowBlur": {
  3875. "$count": 107
  3876. },
  3877. "shadowColor": {
  3878. "$count": 68
  3879. },
  3880. "opacity": {
  3881. "$count": 115
  3882. },
  3883. "shadowOffsetY": {
  3884. "$count": 46
  3885. },
  3886. "shadowOffsetX": {
  3887. "$count": 43
  3888. }
  3889. }
  3890. },
  3891. "markPoint": {
  3892. "symbol": {
  3893. "$count": 389
  3894. },
  3895. "$count": 1083,
  3896. "symbolSize": {
  3897. "$count": 231
  3898. },
  3899. "data": {
  3900. "$count": 316,
  3901. "coord": {
  3902. "$count": 133
  3903. },
  3904. "symbol": {
  3905. "$count": 84
  3906. },
  3907. "x": {
  3908. "$count": 70
  3909. },
  3910. "value": {
  3911. "$count": 121
  3912. },
  3913. "valueIndex": {
  3914. "$count": 120
  3915. },
  3916. "type": {
  3917. "$count": 182
  3918. },
  3919. "label": {
  3920. "$count": 65,
  3921. "normal": {
  3922. "$count": 40,
  3923. "show": {
  3924. "$count": 19
  3925. },
  3926. "position": {
  3927. "$count": 24
  3928. },
  3929. "textStyle": {
  3930. "$count": 13,
  3931. "color": {
  3932. "$count": 9
  3933. },
  3934. "fontStyle": {
  3935. "$count": 2
  3936. },
  3937. "fontWeight": {
  3938. "$count": 1
  3939. },
  3940. "fontFamily": {
  3941. "$count": 1
  3942. },
  3943. "fontSize": {
  3944. "$count": 8
  3945. }
  3946. }
  3947. },
  3948. "emphasis": {
  3949. "$count": 18,
  3950. "show": {
  3951. "$count": 3
  3952. },
  3953. "position": {
  3954. "$count": 1
  3955. },
  3956. "textStyle": {
  3957. "color": {
  3958. "$count": 1
  3959. }
  3960. }
  3961. }
  3962. },
  3963. "name": {
  3964. "$count": 123
  3965. },
  3966. "y": {
  3967. "$count": 36
  3968. },
  3969. "symbolOffset": {
  3970. "$count": 33
  3971. },
  3972. "symbolSize": {
  3973. "$count": 54
  3974. },
  3975. "symbolRotate": {
  3976. "$count": 31
  3977. },
  3978. "itemStyle": {
  3979. "normal": {
  3980. "color": {
  3981. "$count": 23
  3982. },
  3983. "$count": 25,
  3984. "shadowBlur": {
  3985. "$count": 5
  3986. },
  3987. "borderWidth": {
  3988. "$count": 8
  3989. },
  3990. "shadowColor": {
  3991. "$count": 2
  3992. },
  3993. "shadowOffsetX": {
  3994. "$count": 3
  3995. },
  3996. "shadowOffsetY": {
  3997. "$count": 3
  3998. },
  3999. "opacity": {
  4000. "$count": 7
  4001. },
  4002. "borderColor": {
  4003. "$count": 8
  4004. }
  4005. },
  4006. "$count": 47,
  4007. "emphasis": {
  4008. "color": {
  4009. "$count": 2
  4010. },
  4011. "borderColor": {
  4012. "$count": 1
  4013. },
  4014. "$count": 6
  4015. }
  4016. },
  4017. "valueDim": {
  4018. "$count": 10
  4019. }
  4020. },
  4021. "symbolRotate": {
  4022. "$count": 111
  4023. },
  4024. "symbolOffset": {
  4025. "$count": 104
  4026. },
  4027. "label": {
  4028. "normal": {
  4029. "formatter": {
  4030. "$count": 111
  4031. },
  4032. "show": {
  4033. "$count": 45
  4034. },
  4035. "$count": 97,
  4036. "textStyle": {
  4037. "$count": 32,
  4038. "fontSize": {
  4039. "$count": 10
  4040. },
  4041. "fontStyle": {
  4042. "$count": 7
  4043. },
  4044. "fontWeight": {
  4045. "$count": 3
  4046. },
  4047. "color": {
  4048. "$count": 10
  4049. },
  4050. "fontFamily": {
  4051. "$count": 1
  4052. }
  4053. },
  4054. "position": {
  4055. "$count": 52
  4056. }
  4057. },
  4058. "emphasis": {
  4059. "formatter": {
  4060. "$count": 16
  4061. },
  4062. "$count": 39,
  4063. "position": {
  4064. "$count": 10
  4065. },
  4066. "show": {
  4067. "$count": 6
  4068. },
  4069. "textStyle": {
  4070. "$count": 4,
  4071. "fontStyle": {
  4072. "$count": 2
  4073. },
  4074. "color": {
  4075. "$count": 1
  4076. },
  4077. "fontWeight": {
  4078. "$count": 2
  4079. },
  4080. "fontFamily": {
  4081. "$count": 2
  4082. },
  4083. "fontSize": {
  4084. "$count": 1
  4085. }
  4086. }
  4087. },
  4088. "$count": 205
  4089. },
  4090. "itemStyle": {
  4091. "$count": 170,
  4092. "normal": {
  4093. "borderWidth": {
  4094. "$count": 15
  4095. },
  4096. "borderColor": {
  4097. "$count": 24
  4098. },
  4099. "$count": 59,
  4100. "opacity": {
  4101. "$count": 13
  4102. },
  4103. "shadowBlur": {
  4104. "$count": 11
  4105. },
  4106. "color": {
  4107. "$count": 44
  4108. },
  4109. "shadowColor": {
  4110. "$count": 4
  4111. },
  4112. "shadowOffsetX": {
  4113. "$count": 5
  4114. },
  4115. "shadowOffsetY": {
  4116. "$count": 2
  4117. }
  4118. },
  4119. "emphasis": {
  4120. "$count": 24,
  4121. "color": {
  4122. "$count": 5
  4123. },
  4124. "borderColor": {
  4125. "$count": 1
  4126. }
  4127. }
  4128. },
  4129. "animation": {
  4130. "$count": 39
  4131. },
  4132. "animationDuration": {
  4133. "$count": 18
  4134. },
  4135. "animationEasingUpdate": {
  4136. "$count": 14
  4137. },
  4138. "animationDurationUpdate": {
  4139. "$count": 14
  4140. },
  4141. "animationEasing": {
  4142. "$count": 17
  4143. }
  4144. },
  4145. "showSymbol": {
  4146. "$count": 631
  4147. },
  4148. "stack": {
  4149. "$count": 999
  4150. },
  4151. "type": {
  4152. "$count": 1490
  4153. },
  4154. "hoverAnimation": {
  4155. "$count": 572
  4156. },
  4157. "symbolRotate": {
  4158. "$count": 489
  4159. },
  4160. "lineStyle": {
  4161. "$count": 1084,
  4162. "normal": {
  4163. "$count": 458,
  4164. "width": {
  4165. "$count": 152
  4166. },
  4167. "type": {
  4168. "$count": 154
  4169. },
  4170. "opacity": {
  4171. "$count": 82
  4172. },
  4173. "color": {
  4174. "$count": 290
  4175. },
  4176. "shadowBlur": {
  4177. "$count": 75
  4178. },
  4179. "shadowColor": {
  4180. "$count": 48
  4181. },
  4182. "shadowOffsetX": {
  4183. "$count": 33
  4184. },
  4185. "shadowOffsetY": {
  4186. "$count": 26
  4187. }
  4188. },
  4189. "emphasis": {
  4190. "$count": 233,
  4191. "type": {
  4192. "$count": 20
  4193. },
  4194. "color": {
  4195. "$count": 37
  4196. },
  4197. "shadowBlur": {
  4198. "$count": 10
  4199. },
  4200. "opacity": {
  4201. "$count": 10
  4202. },
  4203. "shadowOffsetY": {
  4204. "$count": 5
  4205. },
  4206. "shadowColor": {
  4207. "$count": 5
  4208. },
  4209. "width": {
  4210. "$count": 11
  4211. },
  4212. "shadowOffsetX": {
  4213. "$count": 4
  4214. }
  4215. }
  4216. },
  4217. "symbolOffset": {
  4218. "$count": 445
  4219. },
  4220. "clipOverflow": {
  4221. "$count": 523
  4222. },
  4223. "name": {
  4224. "$count": 875
  4225. },
  4226. "polarIndex": {
  4227. "$count": 486
  4228. },
  4229. "legendHoverLink": {
  4230. "$count": 506
  4231. },
  4232. "animation": {
  4233. "$count": 167
  4234. },
  4235. "animationEasing": {
  4236. "$count": 79
  4237. },
  4238. "animationEasingUpdate": {
  4239. "$count": 70
  4240. },
  4241. "animationDurationUpdate": {
  4242. "$count": 56
  4243. },
  4244. "animationDuration": {
  4245. "$count": 85
  4246. },
  4247. "smoothMonotone": {
  4248. "$count": 34
  4249. },
  4250. "zlevel": {
  4251. "$count": 18
  4252. },
  4253. "z": {
  4254. "$count": 16
  4255. }
  4256. },
  4257. "animation": {
  4258. "$count": 2869
  4259. },
  4260. "animationDuration": {
  4261. "$count": 2312
  4262. },
  4263. "animationEasing": {
  4264. "$count": 2041
  4265. },
  4266. "animationEasingUpdate": {
  4267. "$count": 1715
  4268. },
  4269. "animationDurationUpdate": {
  4270. "$count": 1821
  4271. },
  4272. "color": {
  4273. "$count": 5879
  4274. },
  4275. "series": {
  4276. "$count": 11427
  4277. },
  4278. "series-bar": {
  4279. "itemStyle": {
  4280. "normal": {
  4281. "opacity": {
  4282. "$count": 204
  4283. },
  4284. "$count": 636,
  4285. "color": {
  4286. "$count": 613
  4287. },
  4288. "shadowBlur": {
  4289. "$count": 160
  4290. },
  4291. "shadowOffsetY": {
  4292. "$count": 112
  4293. },
  4294. "shadowOffsetX": {
  4295. "$count": 110
  4296. },
  4297. "shadowColor": {
  4298. "$count": 143
  4299. },
  4300. "barBorderWidth": {
  4301. "$count": 211
  4302. },
  4303. "barBorderColor": {
  4304. "$count": 274
  4305. },
  4306. "barBorderRadius": {
  4307. "$count": 38
  4308. }
  4309. },
  4310. "$count": 1093,
  4311. "emphasis": {
  4312. "$count": 280,
  4313. "opacity": {
  4314. "$count": 32
  4315. },
  4316. "shadowOffsetX": {
  4317. "$count": 13
  4318. },
  4319. "shadowOffsetY": {
  4320. "$count": 16
  4321. },
  4322. "shadowColor": {
  4323. "$count": 16
  4324. },
  4325. "shadowBlur": {
  4326. "$count": 14
  4327. },
  4328. "barBorderWidth": {
  4329. "$count": 24
  4330. },
  4331. "barBorderColor": {
  4332. "$count": 26
  4333. },
  4334. "color": {
  4335. "$count": 83
  4336. }
  4337. }
  4338. },
  4339. "label": {
  4340. "emphasis": {
  4341. "$count": 209,
  4342. "show": {
  4343. "$count": 32
  4344. },
  4345. "position": {
  4346. "$count": 36
  4347. },
  4348. "formatter": {
  4349. "$count": 54
  4350. },
  4351. "textStyle": {
  4352. "$count": 22,
  4353. "color": {
  4354. "$count": 8
  4355. },
  4356. "fontStyle": {
  4357. "$count": 4
  4358. },
  4359. "fontWeight": {
  4360. "$count": 2
  4361. },
  4362. "fontFamily": {
  4363. "$count": 3
  4364. },
  4365. "fontSize": {
  4366. "$count": 3
  4367. }
  4368. }
  4369. },
  4370. "normal": {
  4371. "formatter": {
  4372. "$count": 458
  4373. },
  4374. "textStyle": {
  4375. "fontStyle": {
  4376. "$count": 28
  4377. },
  4378. "fontFamily": {
  4379. "$count": 19
  4380. },
  4381. "fontSize": {
  4382. "$count": 41
  4383. },
  4384. "color": {
  4385. "$count": 62
  4386. },
  4387. "$count": 186,
  4388. "fontWeight": {
  4389. "$count": 25
  4390. }
  4391. },
  4392. "position": {
  4393. "$count": 445
  4394. },
  4395. "$count": 413,
  4396. "show": {
  4397. "$count": 220
  4398. }
  4399. },
  4400. "$count": 864
  4401. },
  4402. "coordinateSystem": {
  4403. "$count": 494
  4404. },
  4405. "barGap": {
  4406. "$count": 528
  4407. },
  4408. "barCategoryGap": {
  4409. "$count": 400
  4410. },
  4411. "barMaxWidth": {
  4412. "$count": 365
  4413. },
  4414. "data": {
  4415. "label": {
  4416. "$count": 287,
  4417. "normal": {
  4418. "$count": 158,
  4419. "show": {
  4420. "$count": 71
  4421. },
  4422. "position": {
  4423. "$count": 86
  4424. },
  4425. "textStyle": {
  4426. "$count": 73,
  4427. "color": {
  4428. "$count": 38
  4429. },
  4430. "fontSize": {
  4431. "$count": 27
  4432. },
  4433. "fontStyle": {
  4434. "$count": 21
  4435. },
  4436. "fontWeight": {
  4437. "$count": 17
  4438. },
  4439. "fontFamily": {
  4440. "$count": 20
  4441. }
  4442. }
  4443. },
  4444. "emphasis": {
  4445. "$count": 60,
  4446. "position": {
  4447. "$count": 27
  4448. },
  4449. "show": {
  4450. "$count": 28
  4451. },
  4452. "textStyle": {
  4453. "color": {
  4454. "$count": 9
  4455. },
  4456. "$count": 14,
  4457. "fontStyle": {
  4458. "$count": 4
  4459. },
  4460. "fontWeight": {
  4461. "$count": 5
  4462. },
  4463. "fontFamily": {
  4464. "$count": 4
  4465. },
  4466. "fontSize": {
  4467. "$count": 2
  4468. }
  4469. }
  4470. }
  4471. },
  4472. "$count": 644,
  4473. "value": {
  4474. "$count": 411
  4475. },
  4476. "itemStyle": {
  4477. "normal": {
  4478. "barBorderColor": {
  4479. "$count": 58
  4480. },
  4481. "color": {
  4482. "$count": 134
  4483. },
  4484. "barBorderWidth": {
  4485. "$count": 37
  4486. },
  4487. "shadowBlur": {
  4488. "$count": 34
  4489. },
  4490. "shadowOffsetX": {
  4491. "$count": 23
  4492. },
  4493. "$count": 160,
  4494. "shadowColor": {
  4495. "$count": 25
  4496. },
  4497. "opacity": {
  4498. "$count": 37
  4499. },
  4500. "shadowOffsetY": {
  4501. "$count": 18
  4502. },
  4503. "barBorderRadius": {
  4504. "$count": 1
  4505. }
  4506. },
  4507. "$count": 283,
  4508. "emphasis": {
  4509. "$count": 67,
  4510. "color": {
  4511. "$count": 24
  4512. },
  4513. "shadowColor": {
  4514. "$count": 8
  4515. },
  4516. "opacity": {
  4517. "$count": 12
  4518. },
  4519. "shadowOffsetY": {
  4520. "$count": 5
  4521. },
  4522. "shadowOffsetX": {
  4523. "$count": 3
  4524. },
  4525. "shadowBlur": {
  4526. "$count": 8
  4527. },
  4528. "barBorderWidth": {
  4529. "$count": 7
  4530. },
  4531. "barBorderColor": {
  4532. "$count": 11
  4533. }
  4534. }
  4535. }
  4536. },
  4537. "markLine": {
  4538. "$count": 550,
  4539. "data": {
  4540. "0": {
  4541. "type": {
  4542. "$count": 70
  4543. },
  4544. "$count": 107,
  4545. "valueIndex": {
  4546. "$count": 46
  4547. },
  4548. "coord": {
  4549. "$count": 63
  4550. },
  4551. "x": {
  4552. "$count": 45
  4553. },
  4554. "lineStyle": {
  4555. "normal": {
  4556. "color": {
  4557. "$count": 5
  4558. },
  4559. "type": {
  4560. "$count": 13
  4561. },
  4562. "width": {
  4563. "$count": 2
  4564. },
  4565. "shadowBlur": {
  4566. "$count": 4
  4567. },
  4568. "$count": 4,
  4569. "shadowColor": {
  4570. "$count": 1
  4571. },
  4572. "shadowOffsetX": {
  4573. "$count": 2
  4574. },
  4575. "shadowOffsetY": {
  4576. "$count": 1
  4577. },
  4578. "curveness": {
  4579. "$count": 1
  4580. },
  4581. "opacity": {
  4582. "$count": 1
  4583. }
  4584. },
  4585. "$count": 24,
  4586. "emphasis": {
  4587. "shadowBlur": {
  4588. "$count": 1
  4589. },
  4590. "$count": 2,
  4591. "color": {
  4592. "$count": 1
  4593. }
  4594. }
  4595. },
  4596. "label": {
  4597. "$count": 23,
  4598. "normal": {
  4599. "formatter": {
  4600. "$count": 15
  4601. },
  4602. "position": {
  4603. "$count": 10
  4604. },
  4605. "$count": 7,
  4606. "show": {
  4607. "$count": 3
  4608. }
  4609. },
  4610. "emphasis": {
  4611. "formatter": {
  4612. "$count": 2
  4613. },
  4614. "position": {
  4615. "$count": 1
  4616. },
  4617. "$count": 1,
  4618. "show": {
  4619. "$count": 1
  4620. }
  4621. }
  4622. },
  4623. "y": {
  4624. "$count": 24
  4625. },
  4626. "value": {
  4627. "$count": 41
  4628. },
  4629. "symbol": {
  4630. "$count": 56
  4631. },
  4632. "symbolSize": {
  4633. "$count": 24
  4634. },
  4635. "symbolOffset": {
  4636. "$count": 21
  4637. },
  4638. "symbolRotate": {
  4639. "$count": 16
  4640. },
  4641. "valueDim": {
  4642. "$count": 5
  4643. }
  4644. },
  4645. "1": {
  4646. "$count": 41,
  4647. "symbolSize": {
  4648. "$count": 1
  4649. },
  4650. "lineStyle": {
  4651. "normal": {
  4652. "shadowBlur": {
  4653. "$count": 1
  4654. },
  4655. "width": {
  4656. "$count": 1
  4657. },
  4658. "$count": 1
  4659. },
  4660. "emphasis": {
  4661. "shadowBlur": {
  4662. "$count": 1
  4663. },
  4664. "width": {
  4665. "$count": 1
  4666. }
  4667. },
  4668. "$count": 1
  4669. },
  4670. "type": {
  4671. "$count": 5
  4672. },
  4673. "symbol": {
  4674. "$count": 4
  4675. },
  4676. "label": {
  4677. "normal": {
  4678. "formatter": {
  4679. "$count": 2
  4680. }
  4681. },
  4682. "emphasis": {
  4683. "formatter": {
  4684. "$count": 1
  4685. },
  4686. "show": {
  4687. "$count": 1
  4688. }
  4689. }
  4690. },
  4691. "valueIndex": {
  4692. "$count": 2
  4693. },
  4694. "x": {
  4695. "$count": 6
  4696. },
  4697. "y": {
  4698. "$count": 2
  4699. },
  4700. "value": {
  4701. "$count": 2
  4702. },
  4703. "coord": {
  4704. "$count": 3
  4705. }
  4706. },
  4707. "$count": 178
  4708. },
  4709. "lineStyle": {
  4710. "$count": 107,
  4711. "normal": {
  4712. "shadowColor": {
  4713. "$count": 7
  4714. },
  4715. "shadowBlur": {
  4716. "$count": 10
  4717. },
  4718. "shadowOffsetX": {
  4719. "$count": 6
  4720. },
  4721. "opacity": {
  4722. "$count": 13
  4723. },
  4724. "curveness": {
  4725. "$count": 12
  4726. },
  4727. "color": {
  4728. "$count": 25
  4729. },
  4730. "width": {
  4731. "$count": 18
  4732. },
  4733. "type": {
  4734. "$count": 31
  4735. },
  4736. "$count": 40,
  4737. "shadowOffsetY": {
  4738. "$count": 3
  4739. }
  4740. },
  4741. "emphasis": {
  4742. "$count": 26,
  4743. "shadowBlur": {
  4744. "$count": 7
  4745. },
  4746. "width": {
  4747. "$count": 3
  4748. },
  4749. "shadowOffsetX": {
  4750. "$count": 5
  4751. },
  4752. "shadowOffsetY": {
  4753. "$count": 3
  4754. },
  4755. "type": {
  4756. "$count": 8
  4757. },
  4758. "color": {
  4759. "$count": 3
  4760. },
  4761. "opacity": {
  4762. "$count": 3
  4763. },
  4764. "shadowColor": {
  4765. "$count": 3
  4766. }
  4767. }
  4768. },
  4769. "label": {
  4770. "normal": {
  4771. "position": {
  4772. "$count": 36
  4773. },
  4774. "formatter": {
  4775. "$count": 32
  4776. },
  4777. "$count": 41,
  4778. "show": {
  4779. "$count": 27
  4780. }
  4781. },
  4782. "$count": 92,
  4783. "emphasis": {
  4784. "$count": 19,
  4785. "show": {
  4786. "$count": 3
  4787. },
  4788. "position": {
  4789. "$count": 3
  4790. },
  4791. "formatter": {
  4792. "$count": 6
  4793. }
  4794. }
  4795. },
  4796. "symbol": {
  4797. "$count": 141
  4798. },
  4799. "symbolSize": {
  4800. "$count": 70
  4801. },
  4802. "precision": {
  4803. "$count": 36
  4804. },
  4805. "animationEasingUpdate": {
  4806. "$count": 8
  4807. },
  4808. "animation": {
  4809. "$count": 15
  4810. },
  4811. "animationDuration": {
  4812. "$count": 8
  4813. },
  4814. "animationDurationUpdate": {
  4815. "$count": 6
  4816. },
  4817. "animationEasing": {
  4818. "$count": 5
  4819. }
  4820. },
  4821. "$count": 3196,
  4822. "barWidth": {
  4823. "$count": 693
  4824. },
  4825. "type": {
  4826. "$count": 590
  4827. },
  4828. "legendHoverLink": {
  4829. "$count": 484
  4830. },
  4831. "name": {
  4832. "$count": 420
  4833. },
  4834. "barMinHeight": {
  4835. "$count": 261
  4836. },
  4837. "markPoint": {
  4838. "itemStyle": {
  4839. "$count": 79,
  4840. "normal": {
  4841. "$count": 32,
  4842. "borderColor": {
  4843. "$count": 14
  4844. },
  4845. "borderWidth": {
  4846. "$count": 5
  4847. },
  4848. "color": {
  4849. "$count": 23
  4850. },
  4851. "shadowBlur": {
  4852. "$count": 3
  4853. },
  4854. "opacity": {
  4855. "$count": 7
  4856. },
  4857. "shadowOffsetY": {
  4858. "$count": 2
  4859. },
  4860. "shadowOffsetX": {
  4861. "$count": 1
  4862. },
  4863. "shadowColor": {
  4864. "$count": 2
  4865. }
  4866. },
  4867. "emphasis": {
  4868. "color": {
  4869. "$count": 4
  4870. },
  4871. "shadowBlur": {
  4872. "$count": 1
  4873. },
  4874. "$count": 10
  4875. }
  4876. },
  4877. "data": {
  4878. "type": {
  4879. "$count": 112
  4880. },
  4881. "$count": 125,
  4882. "value": {
  4883. "$count": 63
  4884. },
  4885. "name": {
  4886. "$count": 69
  4887. },
  4888. "symbolSize": {
  4889. "$count": 27
  4890. },
  4891. "valueIndex": {
  4892. "$count": 71
  4893. },
  4894. "x": {
  4895. "$count": 41
  4896. },
  4897. "y": {
  4898. "$count": 33
  4899. },
  4900. "symbol": {
  4901. "$count": 62
  4902. },
  4903. "itemStyle": {
  4904. "$count": 41,
  4905. "normal": {
  4906. "borderWidth": {
  4907. "$count": 1
  4908. },
  4909. "borderColor": {
  4910. "$count": 5
  4911. },
  4912. "$count": 16,
  4913. "color": {
  4914. "$count": 6
  4915. },
  4916. "opacity": {
  4917. "$count": 1
  4918. }
  4919. },
  4920. "emphasis": {
  4921. "color": {
  4922. "$count": 1
  4923. },
  4924. "$count": 5,
  4925. "shadowOffsetX": {
  4926. "$count": 1
  4927. },
  4928. "shadowBlur": {
  4929. "$count": 1
  4930. }
  4931. }
  4932. },
  4933. "coord": {
  4934. "$count": 50
  4935. },
  4936. "symbolRotate": {
  4937. "$count": 16
  4938. },
  4939. "label": {
  4940. "$count": 25,
  4941. "emphasis": {
  4942. "$count": 8,
  4943. "position": {
  4944. "$count": 3
  4945. },
  4946. "show": {
  4947. "$count": 2
  4948. },
  4949. "textStyle": {
  4950. "color": {
  4951. "$count": 1
  4952. }
  4953. }
  4954. },
  4955. "normal": {
  4956. "$count": 13,
  4957. "textStyle": {
  4958. "$count": 3,
  4959. "color": {
  4960. "$count": 2
  4961. },
  4962. "fontStyle": {
  4963. "$count": 1
  4964. },
  4965. "fontFamily": {
  4966. "$count": 1
  4967. },
  4968. "fontSize": {
  4969. "$count": 1
  4970. }
  4971. },
  4972. "position": {
  4973. "$count": 13
  4974. },
  4975. "show": {
  4976. "$count": 7
  4977. }
  4978. }
  4979. },
  4980. "symbolOffset": {
  4981. "$count": 21
  4982. },
  4983. "valueDim": {
  4984. "$count": 4
  4985. }
  4986. },
  4987. "$count": 522,
  4988. "label": {
  4989. "$count": 88,
  4990. "normal": {
  4991. "formatter": {
  4992. "$count": 40
  4993. },
  4994. "$count": 46,
  4995. "position": {
  4996. "$count": 37
  4997. },
  4998. "textStyle": {
  4999. "$count": 16,
  5000. "color": {
  5001. "$count": 4
  5002. },
  5003. "fontSize": {
  5004. "$count": 2
  5005. }
  5006. },
  5007. "show": {
  5008. "$count": 26
  5009. }
  5010. },
  5011. "emphasis": {
  5012. "$count": 20,
  5013. "show": {
  5014. "$count": 5
  5015. },
  5016. "position": {
  5017. "$count": 4
  5018. },
  5019. "textStyle": {
  5020. "$count": 2,
  5021. "fontSize": {
  5022. "$count": 1
  5023. },
  5024. "color": {
  5025. "$count": 1
  5026. }
  5027. },
  5028. "formatter": {
  5029. "$count": 1
  5030. }
  5031. }
  5032. },
  5033. "symbolSize": {
  5034. "$count": 87
  5035. },
  5036. "symbol": {
  5037. "$count": 162
  5038. },
  5039. "symbolRotate": {
  5040. "$count": 58
  5041. },
  5042. "symbolOffset": {
  5043. "$count": 67
  5044. },
  5045. "animation": {
  5046. "$count": 13
  5047. },
  5048. "animationDuration": {
  5049. "$count": 7
  5050. },
  5051. "animationEasing": {
  5052. "$count": 7
  5053. },
  5054. "animationDurationUpdate": {
  5055. "$count": 8
  5056. },
  5057. "animationEasingUpdate": {
  5058. "$count": 12
  5059. }
  5060. },
  5061. "xAxisIndex": {
  5062. "$count": 453
  5063. },
  5064. "yAxisIndex": {
  5065. "$count": 314
  5066. },
  5067. "animation": {
  5068. "$count": 123
  5069. },
  5070. "animationDuration": {
  5071. "$count": 81
  5072. },
  5073. "animationDurationUpdate": {
  5074. "$count": 64
  5075. },
  5076. "animationEasingUpdate": {
  5077. "$count": 66
  5078. },
  5079. "stack": {
  5080. "$count": 509
  5081. },
  5082. "animationEasing": {
  5083. "$count": 67
  5084. },
  5085. "z": {
  5086. "$count": 15
  5087. },
  5088. "zlevel": {
  5089. "$count": 16
  5090. }
  5091. },
  5092. "series-pie": {
  5093. "center": {
  5094. "$count": 512
  5095. },
  5096. "data": {
  5097. "label": {
  5098. "$count": 342,
  5099. "normal": {
  5100. "position": {
  5101. "$count": 118
  5102. },
  5103. "textStyle": {
  5104. "$count": 84,
  5105. "color": {
  5106. "$count": 26
  5107. },
  5108. "fontSize": {
  5109. "$count": 20
  5110. },
  5111. "fontFamily": {
  5112. "$count": 16
  5113. },
  5114. "fontWeight": {
  5115. "$count": 11
  5116. },
  5117. "fontStyle": {
  5118. "$count": 13
  5119. }
  5120. },
  5121. "$count": 157,
  5122. "show": {
  5123. "$count": 98
  5124. }
  5125. },
  5126. "emphasis": {
  5127. "$count": 73,
  5128. "textStyle": {
  5129. "fontSize": {
  5130. "$count": 7
  5131. },
  5132. "$count": 22,
  5133. "color": {
  5134. "$count": 11
  5135. },
  5136. "fontStyle": {
  5137. "$count": 7
  5138. },
  5139. "fontWeight": {
  5140. "$count": 7
  5141. },
  5142. "fontFamily": {
  5143. "$count": 4
  5144. }
  5145. },
  5146. "show": {
  5147. "$count": 27
  5148. }
  5149. }
  5150. },
  5151. "$count": 533,
  5152. "itemStyle": {
  5153. "$count": 294,
  5154. "normal": {
  5155. "$count": 166,
  5156. "color": {
  5157. "$count": 131
  5158. },
  5159. "borderWidth": {
  5160. "$count": 26
  5161. },
  5162. "borderColor": {
  5163. "$count": 31
  5164. },
  5165. "shadowColor": {
  5166. "$count": 25
  5167. },
  5168. "shadowOffsetX": {
  5169. "$count": 8
  5170. },
  5171. "shadowBlur": {
  5172. "$count": 28
  5173. },
  5174. "shadowOffsetY": {
  5175. "$count": 11
  5176. },
  5177. "opacity": {
  5178. "$count": 23
  5179. }
  5180. },
  5181. "emphasis": {
  5182. "$count": 80,
  5183. "color": {
  5184. "$count": 26
  5185. },
  5186. "borderColor": {
  5187. "$count": 8
  5188. },
  5189. "shadowBlur": {
  5190. "$count": 10
  5191. },
  5192. "shadowColor": {
  5193. "$count": 9
  5194. },
  5195. "borderWidth": {
  5196. "$count": 6
  5197. },
  5198. "opacity": {
  5199. "$count": 12
  5200. },
  5201. "shadowOffsetX": {
  5202. "$count": 3
  5203. },
  5204. "shadowOffsetY": {
  5205. "$count": 6
  5206. }
  5207. }
  5208. },
  5209. "selected": {
  5210. "$count": 239
  5211. },
  5212. "name": {
  5213. "$count": 265
  5214. },
  5215. "labelLine": {
  5216. "normal": {
  5217. "show": {
  5218. "$count": 19
  5219. },
  5220. "$count": 30,
  5221. "length": {
  5222. "$count": 17
  5223. },
  5224. "lineStyle": {
  5225. "$count": 16,
  5226. "width": {
  5227. "$count": 5
  5228. },
  5229. "color": {
  5230. "$count": 4
  5231. },
  5232. "shadowBlur": {
  5233. "$count": 3
  5234. },
  5235. "shadowColor": {
  5236. "$count": 2
  5237. },
  5238. "shadowOffsetY": {
  5239. "$count": 1
  5240. },
  5241. "shadowOffsetX": {
  5242. "$count": 3
  5243. },
  5244. "type": {
  5245. "$count": 3
  5246. }
  5247. },
  5248. "length2": {
  5249. "$count": 9
  5250. },
  5251. "smooth": {
  5252. "$count": 13
  5253. }
  5254. },
  5255. "$count": 163,
  5256. "emphasis": {
  5257. "$count": 12,
  5258. "show": {
  5259. "$count": 6
  5260. },
  5261. "lineStyle": {
  5262. "$count": 4,
  5263. "color": {
  5264. "$count": 2
  5265. }
  5266. }
  5267. }
  5268. },
  5269. "value": {
  5270. "$count": 248
  5271. }
  5272. },
  5273. "type": {
  5274. "$count": 586
  5275. },
  5276. "$count": 2477,
  5277. "radius": {
  5278. "$count": 548
  5279. },
  5280. "label": {
  5281. "$count": 1025,
  5282. "normal": {
  5283. "position": {
  5284. "$count": 548
  5285. },
  5286. "textStyle": {
  5287. "$count": 243,
  5288. "fontFamily": {
  5289. "$count": 61
  5290. },
  5291. "fontWeight": {
  5292. "$count": 61
  5293. },
  5294. "color": {
  5295. "$count": 93
  5296. },
  5297. "fontStyle": {
  5298. "$count": 68
  5299. },
  5300. "fontSize": {
  5301. "$count": 85
  5302. }
  5303. },
  5304. "formatter": {
  5305. "$count": 562
  5306. },
  5307. "$count": 490,
  5308. "show": {
  5309. "$count": 278
  5310. }
  5311. },
  5312. "emphasis": {
  5313. "$count": 282,
  5314. "formatter": {
  5315. "$count": 124
  5316. },
  5317. "textStyle": {
  5318. "$count": 58,
  5319. "fontSize": {
  5320. "$count": 11
  5321. },
  5322. "color": {
  5323. "$count": 17
  5324. },
  5325. "fontStyle": {
  5326. "$count": 8
  5327. },
  5328. "fontWeight": {
  5329. "$count": 10
  5330. },
  5331. "fontFamily": {
  5332. "$count": 9
  5333. }
  5334. },
  5335. "show": {
  5336. "$count": 84
  5337. }
  5338. }
  5339. },
  5340. "legendHoverLink": {
  5341. "$count": 583
  5342. },
  5343. "hoverAnimation": {
  5344. "$count": 466
  5345. },
  5346. "selectedOffset": {
  5347. "$count": 352
  5348. },
  5349. "clockwise": {
  5350. "$count": 353
  5351. },
  5352. "startAngle": {
  5353. "$count": 348
  5354. },
  5355. "minAngle": {
  5356. "$count": 290
  5357. },
  5358. "roseType": {
  5359. "$count": 558
  5360. },
  5361. "avoidLabelOverlap": {
  5362. "$count": 456
  5363. },
  5364. "name": {
  5365. "$count": 482
  5366. },
  5367. "itemStyle": {
  5368. "$count": 665,
  5369. "normal": {
  5370. "color": {
  5371. "$count": 306
  5372. },
  5373. "$count": 283,
  5374. "borderWidth": {
  5375. "$count": 78
  5376. },
  5377. "borderColor": {
  5378. "$count": 120
  5379. },
  5380. "shadowBlur": {
  5381. "$count": 78
  5382. },
  5383. "shadowColor": {
  5384. "$count": 55
  5385. },
  5386. "shadowOffsetX": {
  5387. "$count": 57
  5388. },
  5389. "opacity": {
  5390. "$count": 73
  5391. },
  5392. "shadowOffsetY": {
  5393. "$count": 38
  5394. }
  5395. },
  5396. "emphasis": {
  5397. "$count": 170,
  5398. "color": {
  5399. "$count": 71
  5400. },
  5401. "opacity": {
  5402. "$count": 28
  5403. },
  5404. "borderColor": {
  5405. "$count": 29
  5406. },
  5407. "shadowOffsetY": {
  5408. "$count": 13
  5409. },
  5410. "shadowOffsetX": {
  5411. "$count": 24
  5412. },
  5413. "shadowColor": {
  5414. "$count": 35
  5415. },
  5416. "shadowBlur": {
  5417. "$count": 36
  5418. },
  5419. "borderWidth": {
  5420. "$count": 23
  5421. }
  5422. }
  5423. },
  5424. "markLine": {
  5425. "$count": 217,
  5426. "symbol": {
  5427. "$count": 37
  5428. },
  5429. "data": {
  5430. "0": {
  5431. "symbolOffset": {
  5432. "$count": 1
  5433. },
  5434. "symbolRotate": {
  5435. "$count": 3
  5436. },
  5437. "symbol": {
  5438. "$count": 9
  5439. },
  5440. "symbolSize": {
  5441. "$count": 2
  5442. },
  5443. "x": {
  5444. "$count": 2
  5445. },
  5446. "y": {
  5447. "$count": 2
  5448. },
  5449. "$count": 16,
  5450. "value": {
  5451. "$count": 5
  5452. },
  5453. "label": {
  5454. "normal": {
  5455. "formatter": {
  5456. "$count": 2
  5457. },
  5458. "$count": 1
  5459. },
  5460. "$count": 3,
  5461. "emphasis": {
  5462. "formatter": {
  5463. "$count": 2
  5464. },
  5465. "$count": 1
  5466. }
  5467. },
  5468. "lineStyle": {
  5469. "normal": {
  5470. "color": {
  5471. "$count": 2
  5472. }
  5473. },
  5474. "$count": 2
  5475. }
  5476. },
  5477. "1": {
  5478. "$count": 6,
  5479. "value": {
  5480. "$count": 2
  5481. },
  5482. "lineStyle": {
  5483. "emphasis": {
  5484. "shadowBlur": {
  5485. "$count": 1
  5486. }
  5487. }
  5488. },
  5489. "label": {
  5490. "emphasis": {
  5491. "position": {
  5492. "$count": 1
  5493. },
  5494. "formatter": {
  5495. "$count": 3
  5496. }
  5497. },
  5498. "normal": {
  5499. "formatter": {
  5500. "$count": 2
  5501. },
  5502. "$count": 1
  5503. },
  5504. "$count": 1
  5505. },
  5506. "symbolRotate": {
  5507. "$count": 1
  5508. }
  5509. },
  5510. "$count": 21
  5511. },
  5512. "symbolSize": {
  5513. "$count": 21
  5514. },
  5515. "label": {
  5516. "normal": {
  5517. "$count": 3,
  5518. "formatter": {
  5519. "$count": 4
  5520. },
  5521. "position": {
  5522. "$count": 3
  5523. },
  5524. "show": {
  5525. "$count": 6
  5526. }
  5527. },
  5528. "$count": 17,
  5529. "emphasis": {
  5530. "formatter": {
  5531. "$count": 1
  5532. },
  5533. "$count": 2
  5534. }
  5535. },
  5536. "lineStyle": {
  5537. "$count": 11,
  5538. "normal": {
  5539. "$count": 4,
  5540. "color": {
  5541. "$count": 2
  5542. }
  5543. },
  5544. "emphasis": {
  5545. "$count": 1,
  5546. "shadowOffsetY": {
  5547. "$count": 1
  5548. },
  5549. "shadowOffsetX": {
  5550. "$count": 1
  5551. },
  5552. "shadowColor": {
  5553. "$count": 1
  5554. },
  5555. "shadowBlur": {
  5556. "$count": 1
  5557. },
  5558. "type": {
  5559. "$count": 1
  5560. }
  5561. }
  5562. },
  5563. "precision": {
  5564. "$count": 13
  5565. },
  5566. "animationEasingUpdate": {
  5567. "$count": 1
  5568. },
  5569. "animation": {
  5570. "$count": 4
  5571. }
  5572. },
  5573. "selectedMode": {
  5574. "$count": 449
  5575. },
  5576. "animation": {
  5577. "$count": 115
  5578. },
  5579. "animationDuration": {
  5580. "$count": 63
  5581. },
  5582. "animationEasing": {
  5583. "$count": 57
  5584. },
  5585. "animationDurationUpdate": {
  5586. "$count": 43
  5587. },
  5588. "animationEasingUpdate": {
  5589. "$count": 53
  5590. },
  5591. "labelLine": {
  5592. "$count": 627,
  5593. "normal": {
  5594. "$count": 178,
  5595. "show": {
  5596. "$count": 163
  5597. },
  5598. "lineStyle": {
  5599. "color": {
  5600. "$count": 25
  5601. },
  5602. "$count": 84,
  5603. "type": {
  5604. "$count": 28
  5605. },
  5606. "width": {
  5607. "$count": 20
  5608. },
  5609. "shadowBlur": {
  5610. "$count": 19
  5611. },
  5612. "shadowColor": {
  5613. "$count": 12
  5614. },
  5615. "opacity": {
  5616. "$count": 20
  5617. },
  5618. "shadowOffsetY": {
  5619. "$count": 10
  5620. },
  5621. "shadowOffsetX": {
  5622. "$count": 12
  5623. }
  5624. },
  5625. "length": {
  5626. "$count": 181
  5627. },
  5628. "length2": {
  5629. "$count": 95
  5630. },
  5631. "smooth": {
  5632. "$count": 88
  5633. }
  5634. },
  5635. "emphasis": {
  5636. "$count": 71,
  5637. "show": {
  5638. "$count": 28
  5639. },
  5640. "lineStyle": {
  5641. "$count": 17,
  5642. "color": {
  5643. "$count": 7
  5644. },
  5645. "type": {
  5646. "$count": 1
  5647. },
  5648. "shadowBlur": {
  5649. "$count": 1
  5650. },
  5651. "opacity": {
  5652. "$count": 1
  5653. },
  5654. "width": {
  5655. "$count": 2
  5656. }
  5657. }
  5658. }
  5659. },
  5660. "markPoint": {
  5661. "$count": 305,
  5662. "symbol": {
  5663. "$count": 84
  5664. },
  5665. "symbolSize": {
  5666. "$count": 40
  5667. },
  5668. "data": {
  5669. "symbolSize": {
  5670. "$count": 12
  5671. },
  5672. "$count": 66,
  5673. "itemStyle": {
  5674. "$count": 11,
  5675. "emphasis": {
  5676. "color": {
  5677. "$count": 1
  5678. },
  5679. "$count": 1
  5680. },
  5681. "normal": {
  5682. "color": {
  5683. "$count": 2
  5684. }
  5685. }
  5686. },
  5687. "label": {
  5688. "$count": 14,
  5689. "normal": {
  5690. "position": {
  5691. "$count": 4
  5692. },
  5693. "textStyle": {
  5694. "$count": 3
  5695. },
  5696. "$count": 1,
  5697. "show": {
  5698. "$count": 2
  5699. }
  5700. }
  5701. },
  5702. "name": {
  5703. "$count": 28
  5704. },
  5705. "x": {
  5706. "$count": 16
  5707. },
  5708. "y": {
  5709. "$count": 10
  5710. },
  5711. "value": {
  5712. "$count": 22
  5713. },
  5714. "symbolOffset": {
  5715. "$count": 7
  5716. },
  5717. "symbol": {
  5718. "$count": 11
  5719. },
  5720. "symbolRotate": {
  5721. "$count": 6
  5722. }
  5723. },
  5724. "symbolRotate": {
  5725. "$count": 28
  5726. },
  5727. "symbolOffset": {
  5728. "$count": 24
  5729. },
  5730. "label": {
  5731. "$count": 45,
  5732. "normal": {
  5733. "$count": 16,
  5734. "show": {
  5735. "$count": 14
  5736. },
  5737. "position": {
  5738. "$count": 16
  5739. },
  5740. "formatter": {
  5741. "$count": 12
  5742. },
  5743. "textStyle": {
  5744. "$count": 7,
  5745. "color": {
  5746. "$count": 1
  5747. }
  5748. }
  5749. },
  5750. "emphasis": {
  5751. "show": {
  5752. "$count": 1
  5753. },
  5754. "$count": 5,
  5755. "formatter": {
  5756. "$count": 1
  5757. },
  5758. "position": {
  5759. "$count": 1
  5760. }
  5761. }
  5762. },
  5763. "itemStyle": {
  5764. "$count": 29,
  5765. "normal": {
  5766. "$count": 5,
  5767. "color": {
  5768. "$count": 1
  5769. }
  5770. }
  5771. },
  5772. "animation": {
  5773. "$count": 11
  5774. },
  5775. "animationDuration": {
  5776. "$count": 4
  5777. },
  5778. "animationEasing": {
  5779. "$count": 4
  5780. },
  5781. "animationDurationUpdate": {
  5782. "$count": 4
  5783. },
  5784. "animationEasingUpdate": {
  5785. "$count": 4
  5786. }
  5787. },
  5788. "z": {
  5789. "$count": 97
  5790. },
  5791. "zlevel": {
  5792. "$count": 136
  5793. }
  5794. },
  5795. "backgroundColor": {
  5796. "$count": 3583
  5797. },
  5798. "series-treemap": {
  5799. "$count": 964,
  5800. "levels": {
  5801. "$count": 91,
  5802. "label": {
  5803. "normal": {
  5804. "position": {
  5805. "$count": 4
  5806. },
  5807. "textStyle": {
  5808. "baseline": {
  5809. "$count": 4
  5810. },
  5811. "$count": 2,
  5812. "ellipsis": {
  5813. "$count": 2
  5814. },
  5815. "color": {
  5816. "$count": 1
  5817. },
  5818. "fontStyle": {
  5819. "$count": 3
  5820. },
  5821. "fontWeight": {
  5822. "$count": 2
  5823. },
  5824. "fontFamily": {
  5825. "$count": 2
  5826. },
  5827. "fontSize": {
  5828. "$count": 1
  5829. },
  5830. "align": {
  5831. "$count": 2
  5832. }
  5833. },
  5834. "show": {
  5835. "$count": 2
  5836. },
  5837. "$count": 1
  5838. },
  5839. "emphasis": {
  5840. "textStyle": {
  5841. "baseline": {
  5842. "$count": 1
  5843. },
  5844. "ellipsis": {
  5845. "$count": 1
  5846. },
  5847. "fontStyle": {
  5848. "$count": 1
  5849. }
  5850. },
  5851. "$count": 2,
  5852. "show": {
  5853. "$count": 1
  5854. },
  5855. "position": {
  5856. "$count": 1
  5857. }
  5858. },
  5859. "$count": 5
  5860. },
  5861. "colorAlpha": {
  5862. "$count": 11
  5863. },
  5864. "itemStyle": {
  5865. "normal": {
  5866. "borderWidth": {
  5867. "$count": 4
  5868. },
  5869. "borderColor": {
  5870. "$count": 4
  5871. },
  5872. "gapWidth": {
  5873. "$count": 3
  5874. },
  5875. "$count": 6,
  5876. "color": {
  5877. "$count": 5
  5878. },
  5879. "colorAlpha": {
  5880. "$count": 2
  5881. },
  5882. "colorSaturation": {
  5883. "$count": 2
  5884. },
  5885. "borderColorSaturation": {
  5886. "$count": 2
  5887. }
  5888. },
  5889. "$count": 4,
  5890. "emphasis": {
  5891. "color": {
  5892. "$count": 1
  5893. },
  5894. "colorAlpha": {
  5895. "$count": 1
  5896. },
  5897. "borderWidth": {
  5898. "$count": 1
  5899. },
  5900. "gapWidth": {
  5901. "$count": 1
  5902. },
  5903. "borderColorSaturation": {
  5904. "$count": 1
  5905. },
  5906. "$count": 1
  5907. }
  5908. },
  5909. "colorSaturation": {
  5910. "$count": 11
  5911. },
  5912. "childrenVisibleMin": {
  5913. "$count": 6
  5914. },
  5915. "visibleMin": {
  5916. "$count": 4
  5917. },
  5918. "colorMappingBy": {
  5919. "$count": 14
  5920. },
  5921. "color": {
  5922. "$count": 17
  5923. },
  5924. "visualDimension": {
  5925. "$count": 20
  5926. }
  5927. },
  5928. "zoomToNodeRatio": {
  5929. "$count": 56
  5930. },
  5931. "data": {
  5932. "$count": 54,
  5933. "value": {
  5934. "$count": 25
  5935. },
  5936. "label": {
  5937. "normal": {
  5938. "position": {
  5939. "$count": 2
  5940. },
  5941. "$count": 2,
  5942. "show": {
  5943. "$count": 1
  5944. }
  5945. },
  5946. "$count": 7,
  5947. "emphasis": {
  5948. "$count": 1
  5949. }
  5950. },
  5951. "children": {
  5952. "$count": 20
  5953. },
  5954. "name": {
  5955. "$count": 16
  5956. },
  5957. "itemStyle": {
  5958. "$count": 11,
  5959. "normal": {
  5960. "$count": 1
  5961. }
  5962. },
  5963. "childrenVisibleMin": {
  5964. "$count": 11
  5965. },
  5966. "colorMappingBy": {
  5967. "$count": 22
  5968. },
  5969. "color": {
  5970. "$count": 15
  5971. },
  5972. "colorAlpha": {
  5973. "$count": 7
  5974. },
  5975. "colorSaturation": {
  5976. "$count": 8
  5977. },
  5978. "visibleMin": {
  5979. "$count": 8
  5980. },
  5981. "link": {
  5982. "$count": 37
  5983. },
  5984. "target": {
  5985. "$count": 19
  5986. },
  5987. "id": {
  5988. "$count": 16
  5989. },
  5990. "visualDimension": {
  5991. "$count": 16
  5992. }
  5993. },
  5994. "width": {
  5995. "$count": 13
  5996. },
  5997. "type": {
  5998. "$count": 76
  5999. },
  6000. "roam": {
  6001. "$count": 53
  6002. },
  6003. "breadcrumb": {
  6004. "$count": 23,
  6005. "emptyItemWidth": {
  6006. "$count": 5
  6007. },
  6008. "itemStyle": {
  6009. "emphasis": {
  6010. "color": {
  6011. "$count": 3
  6012. },
  6013. "borderWidth": {
  6014. "$count": 1
  6015. },
  6016. "opacity": {
  6017. "$count": 1
  6018. },
  6019. "shadowOffsetY": {
  6020. "$count": 1
  6021. },
  6022. "shadowOffsetX": {
  6023. "$count": 1
  6024. }
  6025. },
  6026. "$count": 6,
  6027. "normal": {
  6028. "$count": 3,
  6029. "color": {
  6030. "$count": 2
  6031. },
  6032. "opacity": {
  6033. "$count": 3
  6034. },
  6035. "shadowOffsetY": {
  6036. "$count": 4
  6037. },
  6038. "shadowOffsetX": {
  6039. "$count": 3
  6040. },
  6041. "shadowColor": {
  6042. "$count": 2
  6043. },
  6044. "shadowBlur": {
  6045. "$count": 1
  6046. },
  6047. "borderWidth": {
  6048. "$count": 1
  6049. },
  6050. "textStyle": {
  6051. "$count": 1
  6052. }
  6053. }
  6054. },
  6055. "show": {
  6056. "$count": 1
  6057. },
  6058. "bottom": {
  6059. "$count": 1
  6060. },
  6061. "height": {
  6062. "$count": 2
  6063. },
  6064. "left": {
  6065. "$count": 2
  6066. }
  6067. },
  6068. "zlevel": {
  6069. "$count": 18
  6070. },
  6071. "label": {
  6072. "normal": {
  6073. "position": {
  6074. "$count": 9
  6075. },
  6076. "$count": 10,
  6077. "show": {
  6078. "$count": 5
  6079. },
  6080. "textStyle": {
  6081. "$count": 4,
  6082. "ellipsis": {
  6083. "$count": 4
  6084. },
  6085. "color": {
  6086. "$count": 4
  6087. },
  6088. "fontStyle": {
  6089. "$count": 2
  6090. },
  6091. "fontWeight": {
  6092. "$count": 2
  6093. },
  6094. "fontSize": {
  6095. "$count": 1
  6096. },
  6097. "align": {
  6098. "$count": 2
  6099. },
  6100. "baseline": {
  6101. "$count": 4
  6102. },
  6103. "fontFamily": {
  6104. "$count": 1
  6105. }
  6106. }
  6107. },
  6108. "$count": 24,
  6109. "emphasis": {
  6110. "$count": 6,
  6111. "show": {
  6112. "$count": 1
  6113. },
  6114. "position": {
  6115. "$count": 1
  6116. },
  6117. "textStyle": {
  6118. "$count": 1,
  6119. "align": {
  6120. "$count": 1
  6121. }
  6122. }
  6123. }
  6124. },
  6125. "height": {
  6126. "$count": 18
  6127. },
  6128. "itemStyle": {
  6129. "$count": 13,
  6130. "normal": {
  6131. "gapWidth": {
  6132. "$count": 4
  6133. },
  6134. "borderWidth": {
  6135. "$count": 3
  6136. },
  6137. "$count": 4,
  6138. "borderColorSaturation": {
  6139. "$count": 2
  6140. },
  6141. "colorAlpha": {
  6142. "$count": 2
  6143. },
  6144. "colorSaturation": {
  6145. "$count": 1
  6146. },
  6147. "borderColor": {
  6148. "$count": 1
  6149. },
  6150. "color": {
  6151. "$count": 3
  6152. }
  6153. },
  6154. "emphasis": {
  6155. "$count": 1
  6156. }
  6157. },
  6158. "squareRatio": {
  6159. "$count": 40
  6160. },
  6161. "z": {
  6162. "$count": 13
  6163. },
  6164. "left": {
  6165. "$count": 22
  6166. },
  6167. "top": {
  6168. "$count": 15
  6169. },
  6170. "right": {
  6171. "$count": 9
  6172. },
  6173. "bottom": {
  6174. "$count": 10
  6175. },
  6176. "visualDimension": {
  6177. "$count": 31
  6178. },
  6179. "visibleMin": {
  6180. "$count": 10
  6181. },
  6182. "childrenVisibleMin": {
  6183. "$count": 14
  6184. },
  6185. "animationEasing": {
  6186. "$count": 16
  6187. },
  6188. "animationDuration": {
  6189. "$count": 21
  6190. },
  6191. "colorMappingBy": {
  6192. "$count": 18
  6193. },
  6194. "colorSaturation": {
  6195. "$count": 19
  6196. },
  6197. "colorAlpha": {
  6198. "$count": 14
  6199. },
  6200. "color": {
  6201. "$count": 22
  6202. },
  6203. "nodeClick": {
  6204. "$count": 140
  6205. }
  6206. },
  6207. "series-map": {
  6208. "$count": 2073,
  6209. "mapValueCalculation": {
  6210. "$count": 420
  6211. },
  6212. "roam": {
  6213. "$count": 470
  6214. },
  6215. "selectedMode": {
  6216. "$count": 438
  6217. },
  6218. "type": {
  6219. "$count": 634
  6220. },
  6221. "itemStyle": {
  6222. "$count": 540,
  6223. "normal": {
  6224. "areaColor": {
  6225. "$count": 223
  6226. },
  6227. "$count": 243,
  6228. "borderColor": {
  6229. "$count": 80
  6230. },
  6231. "borderWidth": {
  6232. "$count": 59
  6233. },
  6234. "color": {
  6235. "$count": 138
  6236. },
  6237. "opacity": {
  6238. "$count": 74
  6239. },
  6240. "shadowBlur": {
  6241. "$count": 55
  6242. },
  6243. "shadowColor": {
  6244. "$count": 31
  6245. },
  6246. "shadowOffsetX": {
  6247. "$count": 36
  6248. },
  6249. "shadowOffsetY": {
  6250. "$count": 28
  6251. }
  6252. },
  6253. "emphasis": {
  6254. "$count": 161,
  6255. "color": {
  6256. "$count": 107
  6257. },
  6258. "opacity": {
  6259. "$count": 44
  6260. },
  6261. "shadowBlur": {
  6262. "$count": 33
  6263. },
  6264. "borderColor": {
  6265. "$count": 49
  6266. },
  6267. "borderWidth": {
  6268. "$count": 31
  6269. },
  6270. "shadowOffsetY": {
  6271. "$count": 18
  6272. },
  6273. "shadowColor": {
  6274. "$count": 34
  6275. },
  6276. "shadowOffsetX": {
  6277. "$count": 19
  6278. }
  6279. },
  6280. "zlevel": {
  6281. "$count": 83
  6282. },
  6283. "z": {
  6284. "$count": 57
  6285. },
  6286. "bottom": {
  6287. "$count": 46
  6288. },
  6289. "left": {
  6290. "$count": 95
  6291. },
  6292. "top": {
  6293. "$count": 60
  6294. },
  6295. "right": {
  6296. "$count": 44
  6297. }
  6298. },
  6299. "showLegendSymbol": {
  6300. "$count": 414
  6301. },
  6302. "name": {
  6303. "$count": 350
  6304. },
  6305. "map": {
  6306. "$count": 651
  6307. },
  6308. "data": {
  6309. "$count": 503,
  6310. "name": {
  6311. "$count": 371
  6312. },
  6313. "value": {
  6314. "$count": 290
  6315. }
  6316. },
  6317. "label": {
  6318. "$count": 464,
  6319. "emphasis": {
  6320. "$count": 119,
  6321. "textStyle": {
  6322. "$count": 19,
  6323. "color": {
  6324. "$count": 8
  6325. },
  6326. "fontStyle": {
  6327. "$count": 8
  6328. },
  6329. "fontFamily": {
  6330. "$count": 7
  6331. },
  6332. "fontSize": {
  6333. "$count": 3
  6334. },
  6335. "fontWeight": {
  6336. "$count": 7
  6337. }
  6338. },
  6339. "show": {
  6340. "$count": 25
  6341. }
  6342. },
  6343. "normal": {
  6344. "$count": 223,
  6345. "show": {
  6346. "$count": 88
  6347. },
  6348. "textStyle": {
  6349. "$count": 90,
  6350. "color": {
  6351. "$count": 38
  6352. },
  6353. "fontStyle": {
  6354. "$count": 26
  6355. },
  6356. "fontWeight": {
  6357. "$count": 26
  6358. },
  6359. "fontFamily": {
  6360. "$count": 24
  6361. },
  6362. "fontSize": {
  6363. "$count": 26
  6364. }
  6365. }
  6366. }
  6367. },
  6368. "bottom": {
  6369. "$count": 10
  6370. },
  6371. "right": {
  6372. "$count": 4
  6373. },
  6374. "top": {
  6375. "$count": 6
  6376. },
  6377. "left": {
  6378. "$count": 14
  6379. },
  6380. "zlevel": {
  6381. "$count": 15
  6382. },
  6383. "z": {
  6384. "$count": 11
  6385. }
  6386. },
  6387. "series-funnel": {
  6388. "$count": 825,
  6389. "type": {
  6390. "$count": 41
  6391. },
  6392. "label": {
  6393. "$count": 30,
  6394. "normal": {
  6395. "$count": 15,
  6396. "position": {
  6397. "$count": 16
  6398. },
  6399. "textStyle": {
  6400. "$count": 9,
  6401. "color": {
  6402. "$count": 3
  6403. },
  6404. "fontSize": {
  6405. "$count": 1
  6406. },
  6407. "fontFamily": {
  6408. "$count": 1
  6409. },
  6410. "fontStyle": {
  6411. "$count": 1
  6412. }
  6413. },
  6414. "formatter": {
  6415. "$count": 20
  6416. },
  6417. "show": {
  6418. "$count": 6
  6419. }
  6420. },
  6421. "emphasis": {
  6422. "formatter": {
  6423. "$count": 2
  6424. },
  6425. "$count": 6,
  6426. "show": {
  6427. "$count": 2
  6428. }
  6429. }
  6430. },
  6431. "labelLine": {
  6432. "$count": 26,
  6433. "normal": {
  6434. "$count": 5,
  6435. "lineStyle": {
  6436. "$count": 4,
  6437. "color": {
  6438. "$count": 1
  6439. },
  6440. "width": {
  6441. "$count": 1
  6442. },
  6443. "type": {
  6444. "$count": 1
  6445. },
  6446. "shadowBlur": {
  6447. "$count": 1
  6448. }
  6449. },
  6450. "show": {
  6451. "$count": 4
  6452. },
  6453. "length": {
  6454. "$count": 3
  6455. }
  6456. },
  6457. "emphasis": {
  6458. "show": {
  6459. "$count": 1
  6460. }
  6461. }
  6462. },
  6463. "itemStyle": {
  6464. "$count": 22,
  6465. "normal": {
  6466. "$count": 10,
  6467. "color": {
  6468. "$count": 7
  6469. },
  6470. "borderWidth": {
  6471. "$count": 2
  6472. },
  6473. "opacity": {
  6474. "$count": 4
  6475. },
  6476. "shadowOffsetY": {
  6477. "$count": 2
  6478. },
  6479. "shadowColor": {
  6480. "$count": 2
  6481. },
  6482. "shadowBlur": {
  6483. "$count": 2
  6484. },
  6485. "borderColor": {
  6486. "$count": 1
  6487. },
  6488. "shadowOffsetX": {
  6489. "$count": 1
  6490. }
  6491. },
  6492. "emphasis": {
  6493. "$count": 6,
  6494. "opacity": {
  6495. "$count": 2
  6496. },
  6497. "color": {
  6498. "$count": 1
  6499. }
  6500. }
  6501. },
  6502. "data": {
  6503. "$count": 24,
  6504. "value": {
  6505. "$count": 11
  6506. },
  6507. "name": {
  6508. "$count": 7
  6509. },
  6510. "labelLine": {
  6511. "$count": 4,
  6512. "normal": {
  6513. "lineStyle": {
  6514. "width": {
  6515. "$count": 1
  6516. },
  6517. "opacity": {
  6518. "$count": 1
  6519. }
  6520. },
  6521. "length": {
  6522. "$count": 1
  6523. },
  6524. "show": {
  6525. "$count": 1
  6526. }
  6527. }
  6528. },
  6529. "label": {
  6530. "normal": {
  6531. "position": {
  6532. "$count": 2
  6533. },
  6534. "$count": 3,
  6535. "textStyle": {
  6536. "color": {
  6537. "$count": 1
  6538. },
  6539. "$count": 2,
  6540. "fontSize": {
  6541. "$count": 1
  6542. },
  6543. "fontWeight": {
  6544. "$count": 1
  6545. },
  6546. "fontStyle": {
  6547. "$count": 1
  6548. }
  6549. },
  6550. "show": {
  6551. "$count": 1
  6552. }
  6553. },
  6554. "$count": 12,
  6555. "emphasis": {
  6556. "show": {
  6557. "$count": 1
  6558. },
  6559. "$count": 2
  6560. }
  6561. },
  6562. "itemStyle": {
  6563. "$count": 4,
  6564. "normal": {
  6565. "color": {
  6566. "$count": 2
  6567. },
  6568. "borderColor": {
  6569. "$count": 1
  6570. },
  6571. "borderWidth": {
  6572. "$count": 1
  6573. },
  6574. "$count": 3
  6575. }
  6576. }
  6577. },
  6578. "funnelAlign": {
  6579. "$count": 32
  6580. },
  6581. "markLine": {
  6582. "$count": 20,
  6583. "data": {
  6584. "0": {
  6585. "label": {
  6586. "emphasis": {
  6587. "formatter": {
  6588. "$count": 1
  6589. }
  6590. }
  6591. },
  6592. "x": {
  6593. "$count": 1
  6594. },
  6595. "symbol": {
  6596. "$count": 1
  6597. }
  6598. },
  6599. "1": {
  6600. "lineStyle": {
  6601. "normal": {
  6602. "type": {
  6603. "$count": 1
  6604. }
  6605. },
  6606. "$count": 1
  6607. }
  6608. },
  6609. "$count": 3
  6610. },
  6611. "symbolSize": {
  6612. "$count": 1
  6613. },
  6614. "symbol": {
  6615. "$count": 4
  6616. },
  6617. "label": {
  6618. "$count": 2
  6619. }
  6620. },
  6621. "markPoint": {
  6622. "label": {
  6623. "normal": {
  6624. "position": {
  6625. "$count": 1
  6626. }
  6627. },
  6628. "$count": 1
  6629. },
  6630. "$count": 14,
  6631. "itemStyle": {
  6632. "normal": {
  6633. "color": {
  6634. "$count": 2
  6635. },
  6636. "$count": 1
  6637. }
  6638. },
  6639. "symbol": {
  6640. "$count": 1
  6641. },
  6642. "data": {
  6643. "itemStyle": {
  6644. "$count": 1
  6645. },
  6646. "symbol": {
  6647. "$count": 1
  6648. },
  6649. "symbolRotate": {
  6650. "$count": 1
  6651. },
  6652. "$count": 1
  6653. },
  6654. "symbolRotate": {
  6655. "$count": 1
  6656. }
  6657. },
  6658. "sort": {
  6659. "$count": 43
  6660. },
  6661. "name": {
  6662. "$count": 15
  6663. },
  6664. "min": {
  6665. "$count": 12
  6666. },
  6667. "max": {
  6668. "$count": 10
  6669. },
  6670. "minSize": {
  6671. "$count": 14
  6672. },
  6673. "maxSize": {
  6674. "$count": 9
  6675. },
  6676. "gap": {
  6677. "$count": 22
  6678. },
  6679. "legendHoverLink": {
  6680. "$count": 19
  6681. },
  6682. "animation": {
  6683. "$count": 6
  6684. },
  6685. "animationDuration": {
  6686. "$count": 5
  6687. },
  6688. "animationEasing": {
  6689. "$count": 1
  6690. },
  6691. "animationDurationUpdate": {
  6692. "$count": 1
  6693. },
  6694. "animationEasingUpdate": {
  6695. "$count": 2
  6696. }
  6697. },
  6698. "series-effectScatter": {
  6699. "$count": 1209,
  6700. "effectType": {
  6701. "$count": 148
  6702. },
  6703. "showEffectOn": {
  6704. "$count": 145
  6705. },
  6706. "rippleEffect": {
  6707. "$count": 175,
  6708. "brushType": {
  6709. "$count": 87
  6710. },
  6711. "period": {
  6712. "$count": 83
  6713. },
  6714. "scale": {
  6715. "$count": 65
  6716. }
  6717. },
  6718. "data": {
  6719. "$count": 124,
  6720. "itemStyle": {
  6721. "$count": 22,
  6722. "normal": {
  6723. "shadowOffsetY": {
  6724. "$count": 1
  6725. },
  6726. "shadowOffsetX": {
  6727. "$count": 1
  6728. },
  6729. "opacity": {
  6730. "$count": 3
  6731. },
  6732. "color": {
  6733. "$count": 6
  6734. },
  6735. "$count": 8,
  6736. "borderWidth": {
  6737. "$count": 1
  6738. },
  6739. "borderColor": {
  6740. "$count": 1
  6741. }
  6742. },
  6743. "emphasis": {
  6744. "$count": 2,
  6745. "color": {
  6746. "$count": 1
  6747. },
  6748. "opacity": {
  6749. "$count": 1
  6750. }
  6751. }
  6752. },
  6753. "symbol": {
  6754. "$count": 43
  6755. },
  6756. "symbolSize": {
  6757. "$count": 24
  6758. },
  6759. "symbolRotate": {
  6760. "$count": 18
  6761. },
  6762. "symbolOffset": {
  6763. "$count": 16
  6764. },
  6765. "label": {
  6766. "$count": 28,
  6767. "normal": {
  6768. "$count": 9,
  6769. "position": {
  6770. "$count": 5
  6771. },
  6772. "textStyle": {
  6773. "color": {
  6774. "$count": 1
  6775. },
  6776. "fontStyle": {
  6777. "$count": 1
  6778. },
  6779. "fontSize": {
  6780. "$count": 1
  6781. },
  6782. "$count": 2
  6783. },
  6784. "show": {
  6785. "$count": 2
  6786. }
  6787. },
  6788. "emphasis": {
  6789. "$count": 5,
  6790. "show": {
  6791. "$count": 1
  6792. }
  6793. }
  6794. }
  6795. },
  6796. "markPoint": {
  6797. "$count": 69,
  6798. "itemStyle": {
  6799. "$count": 3,
  6800. "normal": {
  6801. "$count": 1,
  6802. "borderWidth": {
  6803. "$count": 1
  6804. }
  6805. },
  6806. "emphasis": {
  6807. "$count": 1
  6808. }
  6809. },
  6810. "label": {
  6811. "$count": 8,
  6812. "normal": {
  6813. "position": {
  6814. "$count": 2
  6815. },
  6816. "show": {
  6817. "$count": 1
  6818. },
  6819. "formatter": {
  6820. "$count": 1
  6821. },
  6822. "$count": 1
  6823. },
  6824. "emphasis": {
  6825. "$count": 2
  6826. }
  6827. },
  6828. "data": {
  6829. "$count": 8,
  6830. "type": {
  6831. "$count": 8
  6832. },
  6833. "name": {
  6834. "$count": 2
  6835. },
  6836. "valueIndex": {
  6837. "$count": 1
  6838. },
  6839. "coord": {
  6840. "$count": 3
  6841. },
  6842. "x": {
  6843. "$count": 2
  6844. },
  6845. "y": {
  6846. "$count": 2
  6847. },
  6848. "value": {
  6849. "$count": 1
  6850. },
  6851. "symbol": {
  6852. "$count": 3
  6853. },
  6854. "symbolSize": {
  6855. "$count": 2
  6856. },
  6857. "symbolRotate": {
  6858. "$count": 1
  6859. },
  6860. "symbolOffset": {
  6861. "$count": 1
  6862. },
  6863. "label": {
  6864. "emphasis": {
  6865. "textStyle": {
  6866. "$count": 1
  6867. },
  6868. "show": {
  6869. "$count": 1
  6870. }
  6871. }
  6872. }
  6873. },
  6874. "symbol": {
  6875. "$count": 27
  6876. },
  6877. "animationEasingUpdate": {
  6878. "$count": 4
  6879. },
  6880. "animationDurationUpdate": {
  6881. "$count": 3
  6882. },
  6883. "animationEasing": {
  6884. "$count": 2
  6885. },
  6886. "animationDuration": {
  6887. "$count": 3
  6888. },
  6889. "animation": {
  6890. "$count": 5
  6891. },
  6892. "symbolSize": {
  6893. "$count": 10
  6894. },
  6895. "symbolRotate": {
  6896. "$count": 6
  6897. },
  6898. "symbolOffset": {
  6899. "$count": 4
  6900. }
  6901. },
  6902. "markLine": {
  6903. "$count": 29,
  6904. "data": {
  6905. "0": {
  6906. "symbol": {
  6907. "$count": 2
  6908. },
  6909. "$count": 1,
  6910. "symbolSize": {
  6911. "$count": 1
  6912. }
  6913. },
  6914. "1": {
  6915. "symbolSize": {
  6916. "$count": 1
  6917. }
  6918. },
  6919. "$count": 3
  6920. },
  6921. "label": {
  6922. "emphasis": {
  6923. "formatter": {
  6924. "$count": 1
  6925. },
  6926. "$count": 1
  6927. },
  6928. "$count": 1
  6929. },
  6930. "symbolSize": {
  6931. "$count": 2
  6932. },
  6933. "precision": {
  6934. "$count": 3
  6935. },
  6936. "lineStyle": {
  6937. "$count": 1,
  6938. "normal": {
  6939. "width": {
  6940. "$count": 1
  6941. },
  6942. "curveness": {
  6943. "$count": 1
  6944. }
  6945. }
  6946. },
  6947. "symbol": {
  6948. "$count": 5
  6949. }
  6950. },
  6951. "animation": {
  6952. "$count": 24
  6953. },
  6954. "animationDuration": {
  6955. "$count": 17
  6956. },
  6957. "animationEasing": {
  6958. "$count": 12
  6959. },
  6960. "animationDurationUpdate": {
  6961. "$count": 15
  6962. },
  6963. "animationEasingUpdate": {
  6964. "$count": 14
  6965. },
  6966. "type": {
  6967. "$count": 197
  6968. },
  6969. "legendHoverLink": {
  6970. "$count": 66
  6971. },
  6972. "name": {
  6973. "$count": 58
  6974. },
  6975. "geoIndex": {
  6976. "$count": 42
  6977. },
  6978. "label": {
  6979. "normal": {
  6980. "$count": 37,
  6981. "formatter": {
  6982. "$count": 40
  6983. },
  6984. "position": {
  6985. "$count": 26
  6986. },
  6987. "textStyle": {
  6988. "$count": 17,
  6989. "color": {
  6990. "$count": 5
  6991. },
  6992. "fontStyle": {
  6993. "$count": 4
  6994. },
  6995. "fontWeight": {
  6996. "$count": 2
  6997. },
  6998. "fontFamily": {
  6999. "$count": 3
  7000. },
  7001. "fontSize": {
  7002. "$count": 2
  7003. }
  7004. },
  7005. "show": {
  7006. "$count": 10
  7007. }
  7008. },
  7009. "$count": 62,
  7010. "emphasis": {
  7011. "$count": 21,
  7012. "show": {
  7013. "$count": 6
  7014. },
  7015. "position": {
  7016. "$count": 6
  7017. },
  7018. "formatter": {
  7019. "$count": 9
  7020. }
  7021. }
  7022. },
  7023. "coordinateSystem": {
  7024. "$count": 98
  7025. },
  7026. "yAxisIndex": {
  7027. "$count": 22
  7028. },
  7029. "polarIndex": {
  7030. "$count": 25
  7031. },
  7032. "symbolSize": {
  7033. "$count": 82
  7034. },
  7035. "symbol": {
  7036. "$count": 108
  7037. },
  7038. "itemStyle": {
  7039. "$count": 46,
  7040. "normal": {
  7041. "shadowBlur": {
  7042. "$count": 15
  7043. },
  7044. "shadowColor": {
  7045. "$count": 10
  7046. },
  7047. "opacity": {
  7048. "$count": 7
  7049. },
  7050. "$count": 20,
  7051. "color": {
  7052. "$count": 11
  7053. },
  7054. "shadowOffsetY": {
  7055. "$count": 4
  7056. },
  7057. "borderColor": {
  7058. "$count": 7
  7059. },
  7060. "borderWidth": {
  7061. "$count": 5
  7062. },
  7063. "shadowOffsetX": {
  7064. "$count": 3
  7065. }
  7066. },
  7067. "emphasis": {
  7068. "$count": 8,
  7069. "opacity": {
  7070. "$count": 1
  7071. },
  7072. "shadowOffsetY": {
  7073. "$count": 1
  7074. },
  7075. "shadowOffsetX": {
  7076. "$count": 1
  7077. },
  7078. "shadowColor": {
  7079. "$count": 1
  7080. },
  7081. "borderWidth": {
  7082. "$count": 1
  7083. },
  7084. "borderColor": {
  7085. "$count": 1
  7086. }
  7087. }
  7088. },
  7089. "xAxisIndex": {
  7090. "$count": 37
  7091. },
  7092. "symbolRotate": {
  7093. "$count": 35
  7094. },
  7095. "symbolOffset": {
  7096. "$count": 36
  7097. },
  7098. "z": {
  7099. "$count": 1
  7100. },
  7101. "zlevel": {
  7102. "$count": 1
  7103. }
  7104. },
  7105. "series-graph": {
  7106. "$count": 1317,
  7107. "lineStyle": {
  7108. "$count": 169,
  7109. "normal": {
  7110. "curveness": {
  7111. "$count": 30
  7112. },
  7113. "$count": 54,
  7114. "color": {
  7115. "$count": 21
  7116. },
  7117. "width": {
  7118. "$count": 26
  7119. },
  7120. "type": {
  7121. "$count": 35
  7122. },
  7123. "shadowBlur": {
  7124. "$count": 18
  7125. },
  7126. "shadowColor": {
  7127. "$count": 11
  7128. },
  7129. "shadowOffsetX": {
  7130. "$count": 9
  7131. },
  7132. "opacity": {
  7133. "$count": 21
  7134. },
  7135. "shadowOffsetY": {
  7136. "$count": 4
  7137. }
  7138. },
  7139. "emphasis": {
  7140. "$count": 24,
  7141. "shadowOffsetY": {
  7142. "$count": 3
  7143. },
  7144. "shadowOffsetX": {
  7145. "$count": 5
  7146. },
  7147. "shadowColor": {
  7148. "$count": 4
  7149. },
  7150. "shadowBlur": {
  7151. "$count": 4
  7152. },
  7153. "opacity": {
  7154. "$count": 8
  7155. },
  7156. "color": {
  7157. "$count": 2
  7158. },
  7159. "width": {
  7160. "$count": 2
  7161. },
  7162. "type": {
  7163. "$count": 4
  7164. }
  7165. }
  7166. },
  7167. "links": {
  7168. "$count": 430,
  7169. "target": {
  7170. "$count": 96
  7171. },
  7172. "lineStyle": {
  7173. "$count": 161,
  7174. "normal": {
  7175. "$count": 99,
  7176. "color": {
  7177. "$count": 50
  7178. },
  7179. "width": {
  7180. "$count": 55
  7181. },
  7182. "type": {
  7183. "$count": 70
  7184. },
  7185. "curveness": {
  7186. "$count": 36
  7187. },
  7188. "shadowBlur": {
  7189. "$count": 31
  7190. },
  7191. "shadowColor": {
  7192. "$count": 22
  7193. },
  7194. "shadowOffsetX": {
  7195. "$count": 21
  7196. },
  7197. "shadowOffsetY": {
  7198. "$count": 16
  7199. },
  7200. "opacity": {
  7201. "$count": 33
  7202. }
  7203. },
  7204. "emphasis": {
  7205. "$count": 63,
  7206. "color": {
  7207. "$count": 8
  7208. },
  7209. "type": {
  7210. "$count": 11
  7211. },
  7212. "shadowOffsetX": {
  7213. "$count": 4
  7214. },
  7215. "shadowOffsetY": {
  7216. "$count": 5
  7217. },
  7218. "opacity": {
  7219. "$count": 12
  7220. },
  7221. "shadowBlur": {
  7222. "$count": 8
  7223. },
  7224. "shadowColor": {
  7225. "$count": 4
  7226. },
  7227. "width": {
  7228. "$count": 8
  7229. }
  7230. }
  7231. },
  7232. "source": {
  7233. "$count": 140
  7234. }
  7235. },
  7236. "edges": {
  7237. "$count": 171
  7238. },
  7239. "layout": {
  7240. "$count": 282
  7241. },
  7242. "force": {
  7243. "$count": 291,
  7244. "repulsion": {
  7245. "$count": 100
  7246. },
  7247. "layoutAnimation": {
  7248. "$count": 47
  7249. },
  7250. "initLayout": {
  7251. "$count": 128
  7252. },
  7253. "gravity": {
  7254. "$count": 60
  7255. },
  7256. "edgeLength": {
  7257. "$count": 66
  7258. }
  7259. },
  7260. "data": {
  7261. "$count": 559,
  7262. "name": {
  7263. "$count": 228
  7264. },
  7265. "label": {
  7266. "$count": 109,
  7267. "normal": {
  7268. "position": {
  7269. "$count": 36
  7270. },
  7271. "$count": 49,
  7272. "show": {
  7273. "$count": 40
  7274. },
  7275. "textStyle": {
  7276. "$count": 20,
  7277. "fontWeight": {
  7278. "$count": 1
  7279. },
  7280. "color": {
  7281. "$count": 1
  7282. },
  7283. "fontStyle": {
  7284. "$count": 1
  7285. },
  7286. "fontFamily": {
  7287. "$count": 1
  7288. }
  7289. }
  7290. },
  7291. "emphasis": {
  7292. "$count": 20,
  7293. "show": {
  7294. "$count": 3
  7295. },
  7296. "textStyle": {
  7297. "$count": 3
  7298. },
  7299. "position": {
  7300. "$count": 3
  7301. }
  7302. }
  7303. },
  7304. "symbol": {
  7305. "$count": 146
  7306. },
  7307. "itemStyle": {
  7308. "$count": 95,
  7309. "emphasis": {
  7310. "color": {
  7311. "$count": 2
  7312. },
  7313. "$count": 14,
  7314. "borderColor": {
  7315. "$count": 1
  7316. },
  7317. "shadowBlur": {
  7318. "$count": 3
  7319. },
  7320. "shadowColor": {
  7321. "$count": 2
  7322. },
  7323. "shadowOffsetX": {
  7324. "$count": 2
  7325. },
  7326. "shadowOffsetY": {
  7327. "$count": 1
  7328. },
  7329. "opacity": {
  7330. "$count": 1
  7331. }
  7332. },
  7333. "normal": {
  7334. "$count": 38,
  7335. "color": {
  7336. "$count": 21
  7337. },
  7338. "opacity": {
  7339. "$count": 9
  7340. },
  7341. "shadowBlur": {
  7342. "$count": 8
  7343. },
  7344. "borderColor": {
  7345. "$count": 10
  7346. },
  7347. "borderWidth": {
  7348. "$count": 9
  7349. },
  7350. "shadowColor": {
  7351. "$count": 8
  7352. },
  7353. "shadowOffsetX": {
  7354. "$count": 9
  7355. },
  7356. "shadowOffsetY": {
  7357. "$count": 7
  7358. }
  7359. }
  7360. },
  7361. "value": {
  7362. "$count": 151
  7363. },
  7364. "category": {
  7365. "$count": 181
  7366. },
  7367. "symbolRotate": {
  7368. "$count": 65
  7369. },
  7370. "symbolSize": {
  7371. "$count": 106
  7372. },
  7373. "symbolOffset": {
  7374. "$count": 68
  7375. }
  7376. },
  7377. "nodes": {
  7378. "$count": 316
  7379. },
  7380. "symbolOffset": {
  7381. "$count": 61
  7382. },
  7383. "label": {
  7384. "$count": 169,
  7385. "normal": {
  7386. "show": {
  7387. "$count": 34
  7388. },
  7389. "$count": 52,
  7390. "formatter": {
  7391. "$count": 98
  7392. },
  7393. "position": {
  7394. "$count": 46
  7395. },
  7396. "textStyle": {
  7397. "$count": 31,
  7398. "color": {
  7399. "$count": 6
  7400. },
  7401. "fontStyle": {
  7402. "$count": 5
  7403. },
  7404. "fontWeight": {
  7405. "$count": 6
  7406. },
  7407. "fontFamily": {
  7408. "$count": 4
  7409. },
  7410. "fontSize": {
  7411. "$count": 10
  7412. }
  7413. }
  7414. },
  7415. "emphasis": {
  7416. "$count": 19,
  7417. "show": {
  7418. "$count": 5
  7419. },
  7420. "position": {
  7421. "$count": 7
  7422. },
  7423. "textStyle": {
  7424. "$count": 5,
  7425. "fontStyle": {
  7426. "$count": 1
  7427. },
  7428. "fontWeight": {
  7429. "$count": 1
  7430. },
  7431. "fontFamily": {
  7432. "$count": 1
  7433. },
  7434. "fontSize": {
  7435. "$count": 1
  7436. }
  7437. },
  7438. "formatter": {
  7439. "$count": 11
  7440. }
  7441. }
  7442. },
  7443. "zlevel": {
  7444. "$count": 31
  7445. },
  7446. "width": {
  7447. "$count": 45
  7448. },
  7449. "animation": {
  7450. "$count": 40
  7451. },
  7452. "type": {
  7453. "$count": 244
  7454. },
  7455. "legendHoverLink": {
  7456. "$count": 135
  7457. },
  7458. "hoverAnimation": {
  7459. "$count": 112
  7460. },
  7461. "itemStyle": {
  7462. "$count": 157,
  7463. "emphasis": {
  7464. "$count": 18,
  7465. "shadowOffsetY": {
  7466. "$count": 1
  7467. },
  7468. "color": {
  7469. "$count": 1
  7470. },
  7471. "borderWidth": {
  7472. "$count": 1
  7473. }
  7474. },
  7475. "normal": {
  7476. "borderColor": {
  7477. "$count": 13
  7478. },
  7479. "color": {
  7480. "$count": 17
  7481. },
  7482. "opacity": {
  7483. "$count": 6
  7484. },
  7485. "$count": 38,
  7486. "borderWidth": {
  7487. "$count": 11
  7488. },
  7489. "shadowBlur": {
  7490. "$count": 6
  7491. },
  7492. "shadowColor": {
  7493. "$count": 2
  7494. },
  7495. "shadowOffsetX": {
  7496. "$count": 3
  7497. },
  7498. "shadowOffsetY": {
  7499. "$count": 2
  7500. }
  7501. }
  7502. },
  7503. "name": {
  7504. "$count": 135
  7505. },
  7506. "categories": {
  7507. "$count": 211,
  7508. "symbol": {
  7509. "$count": 44
  7510. },
  7511. "itemStyle": {
  7512. "$count": 16,
  7513. "normal": {
  7514. "shadowBlur": {
  7515. "$count": 2
  7516. },
  7517. "$count": 7,
  7518. "color": {
  7519. "$count": 13
  7520. },
  7521. "borderWidth": {
  7522. "$count": 2
  7523. },
  7524. "borderColor": {
  7525. "$count": 3
  7526. },
  7527. "shadowColor": {
  7528. "$count": 1
  7529. },
  7530. "shadowOffsetY": {
  7531. "$count": 1
  7532. },
  7533. "opacity": {
  7534. "$count": 1
  7535. }
  7536. },
  7537. "emphasis": {
  7538. "color": {
  7539. "$count": 1
  7540. },
  7541. "$count": 1
  7542. }
  7543. },
  7544. "symbolSize": {
  7545. "$count": 18
  7546. },
  7547. "name": {
  7548. "$count": 50
  7549. },
  7550. "symbolRotate": {
  7551. "$count": 11
  7552. },
  7553. "label": {
  7554. "$count": 8,
  7555. "normal": {
  7556. "formatter": {
  7557. "$count": 3
  7558. },
  7559. "$count": 2
  7560. }
  7561. },
  7562. "symbolOffset": {
  7563. "$count": 9
  7564. }
  7565. },
  7566. "roam": {
  7567. "$count": 138
  7568. },
  7569. "symbolRotate": {
  7570. "$count": 65
  7571. },
  7572. "symbolSize": {
  7573. "$count": 94
  7574. },
  7575. "left": {
  7576. "$count": 35
  7577. },
  7578. "top": {
  7579. "$count": 27
  7580. },
  7581. "symbol": {
  7582. "$count": 136
  7583. },
  7584. "nodeScaleRatio": {
  7585. "$count": 98
  7586. },
  7587. "animationEasingUpdate": {
  7588. "$count": 30
  7589. },
  7590. "animationEasing": {
  7591. "$count": 24
  7592. },
  7593. "color": {
  7594. "$count": 39
  7595. },
  7596. "height": {
  7597. "$count": 30
  7598. },
  7599. "bottom": {
  7600. "$count": 18
  7601. },
  7602. "markLine": {
  7603. "$count": 159,
  7604. "symbol": {
  7605. "$count": 57
  7606. },
  7607. "lineStyle": {
  7608. "$count": 17,
  7609. "normal": {
  7610. "$count": 2,
  7611. "curveness": {
  7612. "$count": 3
  7613. },
  7614. "type": {
  7615. "$count": 6
  7616. },
  7617. "shadowBlur": {
  7618. "$count": 2
  7619. },
  7620. "shadowColor": {
  7621. "$count": 2
  7622. },
  7623. "shadowOffsetX": {
  7624. "$count": 2
  7625. },
  7626. "color": {
  7627. "$count": 2
  7628. },
  7629. "width": {
  7630. "$count": 2
  7631. },
  7632. "opacity": {
  7633. "$count": 1
  7634. }
  7635. },
  7636. "emphasis": {
  7637. "type": {
  7638. "$count": 2
  7639. },
  7640. "shadowBlur": {
  7641. "$count": 1
  7642. },
  7643. "$count": 1
  7644. }
  7645. },
  7646. "data": {
  7647. "0": {
  7648. "$count": 17,
  7649. "symbol": {
  7650. "$count": 24
  7651. },
  7652. "x": {
  7653. "$count": 8
  7654. },
  7655. "y": {
  7656. "$count": 5
  7657. },
  7658. "value": {
  7659. "$count": 8
  7660. },
  7661. "symbolSize": {
  7662. "$count": 6
  7663. },
  7664. "lineStyle": {
  7665. "$count": 8,
  7666. "normal": {
  7667. "$count": 1,
  7668. "type": {
  7669. "$count": 1
  7670. }
  7671. }
  7672. },
  7673. "label": {
  7674. "normal": {
  7675. "position": {
  7676. "$count": 1
  7677. },
  7678. "formatter": {
  7679. "$count": 2
  7680. },
  7681. "$count": 1
  7682. },
  7683. "emphasis": {
  7684. "position": {
  7685. "$count": 1
  7686. },
  7687. "formatter": {
  7688. "$count": 2
  7689. }
  7690. },
  7691. "$count": 4
  7692. },
  7693. "symbolOffset": {
  7694. "$count": 3
  7695. },
  7696. "symbolRotate": {
  7697. "$count": 2
  7698. }
  7699. },
  7700. "1": {
  7701. "$count": 8,
  7702. "lineStyle": {
  7703. "normal": {
  7704. "color": {
  7705. "$count": 2
  7706. },
  7707. "$count": 1,
  7708. "shadowBlur": {
  7709. "$count": 1
  7710. }
  7711. }
  7712. },
  7713. "value": {
  7714. "$count": 1
  7715. },
  7716. "symbolRotate": {
  7717. "$count": 1
  7718. },
  7719. "label": {
  7720. "emphasis": {
  7721. "position": {
  7722. "$count": 1
  7723. },
  7724. "formatter": {
  7725. "$count": 1
  7726. }
  7727. },
  7728. "normal": {
  7729. "position": {
  7730. "$count": 1
  7731. },
  7732. "formatter": {
  7733. "$count": 3
  7734. }
  7735. },
  7736. "$count": 1
  7737. },
  7738. "x": {
  7739. "$count": 3
  7740. },
  7741. "symbol": {
  7742. "$count": 2
  7743. }
  7744. },
  7745. "$count": 47
  7746. },
  7747. "symbolSize": {
  7748. "$count": 19
  7749. },
  7750. "precision": {
  7751. "$count": 11
  7752. },
  7753. "label": {
  7754. "$count": 19,
  7755. "normal": {
  7756. "$count": 6,
  7757. "formatter": {
  7758. "$count": 5
  7759. },
  7760. "show": {
  7761. "$count": 7
  7762. },
  7763. "position": {
  7764. "$count": 9
  7765. }
  7766. },
  7767. "emphasis": {
  7768. "$count": 1,
  7769. "formatter": {
  7770. "$count": 1
  7771. }
  7772. }
  7773. },
  7774. "animationEasing": {
  7775. "$count": 1
  7776. },
  7777. "animation": {
  7778. "$count": 1
  7779. }
  7780. },
  7781. "z": {
  7782. "$count": 22
  7783. },
  7784. "right": {
  7785. "$count": 14
  7786. },
  7787. "markPoint": {
  7788. "$count": 120,
  7789. "symbol": {
  7790. "$count": 22
  7791. },
  7792. "symbolRotate": {
  7793. "$count": 6
  7794. },
  7795. "data": {
  7796. "x": {
  7797. "$count": 3
  7798. },
  7799. "$count": 24,
  7800. "name": {
  7801. "$count": 3
  7802. },
  7803. "itemStyle": {
  7804. "normal": {
  7805. "color": {
  7806. "$count": 1
  7807. }
  7808. },
  7809. "$count": 5
  7810. },
  7811. "label": {
  7812. "$count": 3,
  7813. "normal": {
  7814. "$count": 3,
  7815. "textStyle": {
  7816. "$count": 1
  7817. },
  7818. "show": {
  7819. "$count": 1
  7820. },
  7821. "position": {
  7822. "$count": 1
  7823. }
  7824. },
  7825. "emphasis": {
  7826. "$count": 1,
  7827. "textStyle": {
  7828. "fontFamily": {
  7829. "$count": 1
  7830. }
  7831. }
  7832. }
  7833. },
  7834. "y": {
  7835. "$count": 1
  7836. },
  7837. "value": {
  7838. "$count": 3
  7839. },
  7840. "symbol": {
  7841. "$count": 3
  7842. },
  7843. "symbolSize": {
  7844. "$count": 1
  7845. },
  7846. "symbolRotate": {
  7847. "$count": 1
  7848. },
  7849. "symbolOffset": {
  7850. "$count": 1
  7851. }
  7852. },
  7853. "label": {
  7854. "normal": {
  7855. "textStyle": {
  7856. "color": {
  7857. "$count": 1
  7858. },
  7859. "$count": 2
  7860. },
  7861. "$count": 12,
  7862. "formatter": {
  7863. "$count": 9
  7864. },
  7865. "show": {
  7866. "$count": 2
  7867. },
  7868. "position": {
  7869. "$count": 5
  7870. }
  7871. },
  7872. "$count": 19,
  7873. "emphasis": {
  7874. "$count": 4,
  7875. "formatter": {
  7876. "$count": 1
  7877. }
  7878. }
  7879. },
  7880. "animationEasingUpdate": {
  7881. "$count": 2
  7882. },
  7883. "animationDurationUpdate": {
  7884. "$count": 2
  7885. },
  7886. "animationEasing": {
  7887. "$count": 3
  7888. },
  7889. "animationDuration": {
  7890. "$count": 4
  7891. },
  7892. "animation": {
  7893. "$count": 7
  7894. },
  7895. "symbolSize": {
  7896. "$count": 9
  7897. },
  7898. "itemStyle": {
  7899. "$count": 4,
  7900. "normal": {
  7901. "shadowOffsetY": {
  7902. "$count": 1
  7903. },
  7904. "opacity": {
  7905. "$count": 1
  7906. },
  7907. "shadowOffsetX": {
  7908. "$count": 1
  7909. },
  7910. "shadowColor": {
  7911. "$count": 1
  7912. },
  7913. "shadowBlur": {
  7914. "$count": 1
  7915. },
  7916. "borderWidth": {
  7917. "$count": 1
  7918. },
  7919. "borderColor": {
  7920. "$count": 2
  7921. },
  7922. "color": {
  7923. "$count": 1
  7924. }
  7925. },
  7926. "emphasis": {
  7927. "color": {
  7928. "$count": 1
  7929. }
  7930. }
  7931. },
  7932. "symbolOffset": {
  7933. "$count": 3
  7934. }
  7935. },
  7936. "animationDurationUpdate": {
  7937. "$count": 22
  7938. },
  7939. "animationDuration": {
  7940. "$count": 30
  7941. }
  7942. },
  7943. "series-gauge": {
  7944. "$count": 1161,
  7945. "detail": {
  7946. "$count": 173,
  7947. "show": {
  7948. "$count": 26
  7949. },
  7950. "width": {
  7951. "$count": 31
  7952. },
  7953. "height": {
  7954. "$count": 22
  7955. },
  7956. "backgroundColor": {
  7957. "$count": 29
  7958. },
  7959. "textStyle": {
  7960. "$count": 44,
  7961. "fontWeight": {
  7962. "$count": 12
  7963. },
  7964. "color": {
  7965. "$count": 12
  7966. },
  7967. "fontStyle": {
  7968. "$count": 12
  7969. },
  7970. "fontFamily": {
  7971. "$count": 9
  7972. },
  7973. "fontSize": {
  7974. "$count": 22
  7975. }
  7976. },
  7977. "offsetCenter": {
  7978. "$count": 55
  7979. },
  7980. "borderWidth": {
  7981. "$count": 14
  7982. },
  7983. "borderColor": {
  7984. "$count": 15
  7985. }
  7986. },
  7987. "itemStyle": {
  7988. "$count": 148,
  7989. "normal": {
  7990. "$count": 46,
  7991. "borderWidth": {
  7992. "$count": 9
  7993. },
  7994. "shadowBlur": {
  7995. "$count": 6
  7996. },
  7997. "shadowColor": {
  7998. "$count": 6
  7999. },
  8000. "shadowOffsetX": {
  8001. "$count": 5
  8002. },
  8003. "shadowOffsetY": {
  8004. "$count": 5
  8005. },
  8006. "opacity": {
  8007. "$count": 9
  8008. },
  8009. "color": {
  8010. "$count": 21
  8011. },
  8012. "borderColor": {
  8013. "$count": 9
  8014. }
  8015. },
  8016. "emphasis": {
  8017. "color": {
  8018. "$count": 11
  8019. },
  8020. "borderColor": {
  8021. "$count": 6
  8022. },
  8023. "borderWidth": {
  8024. "$count": 5
  8025. },
  8026. "shadowBlur": {
  8027. "$count": 5
  8028. },
  8029. "shadowColor": {
  8030. "$count": 5
  8031. },
  8032. "shadowOffsetX": {
  8033. "$count": 4
  8034. },
  8035. "shadowOffsetY": {
  8036. "$count": 4
  8037. },
  8038. "opacity": {
  8039. "$count": 6
  8040. },
  8041. "$count": 25
  8042. }
  8043. },
  8044. "title": {
  8045. "$count": 109,
  8046. "textStyle": {
  8047. "fontFamily": {
  8048. "$count": 2
  8049. },
  8050. "fontStyle": {
  8051. "$count": 2
  8052. },
  8053. "fontSize": {
  8054. "$count": 4
  8055. },
  8056. "$count": 20,
  8057. "fontWeight": {
  8058. "$count": 2
  8059. },
  8060. "color": {
  8061. "$count": 3
  8062. }
  8063. },
  8064. "show": {
  8065. "$count": 10
  8066. },
  8067. "offsetCenter": {
  8068. "$count": 37
  8069. }
  8070. },
  8071. "radius": {
  8072. "$count": 164
  8073. },
  8074. "min": {
  8075. "$count": 83
  8076. },
  8077. "pointer": {
  8078. "$count": 147,
  8079. "show": {
  8080. "$count": 21
  8081. },
  8082. "length": {
  8083. "$count": 19
  8084. },
  8085. "width": {
  8086. "$count": 19
  8087. }
  8088. },
  8089. "markPoint": {
  8090. "$count": 116,
  8091. "symbol": {
  8092. "$count": 28
  8093. },
  8094. "symbolSize": {
  8095. "$count": 12
  8096. },
  8097. "data": {
  8098. "$count": 19,
  8099. "symbolRotate": {
  8100. "$count": 4
  8101. },
  8102. "name": {
  8103. "$count": 11
  8104. },
  8105. "x": {
  8106. "$count": 9
  8107. },
  8108. "y": {
  8109. "$count": 5
  8110. },
  8111. "value": {
  8112. "$count": 15
  8113. },
  8114. "symbolSize": {
  8115. "$count": 11
  8116. },
  8117. "label": {
  8118. "$count": 7,
  8119. "emphasis": {
  8120. "$count": 3
  8121. },
  8122. "normal": {
  8123. "$count": 3,
  8124. "position": {
  8125. "$count": 4
  8126. }
  8127. }
  8128. },
  8129. "symbol": {
  8130. "$count": 9
  8131. },
  8132. "itemStyle": {
  8133. "$count": 13,
  8134. "normal": {
  8135. "$count": 6
  8136. },
  8137. "emphasis": {
  8138. "$count": 3,
  8139. "borderWidth": {
  8140. "$count": 1
  8141. }
  8142. }
  8143. },
  8144. "symbolOffset": {
  8145. "$count": 4
  8146. }
  8147. },
  8148. "itemStyle": {
  8149. "$count": 6,
  8150. "emphasis": {
  8151. "$count": 2,
  8152. "opacity": {
  8153. "$count": 1
  8154. },
  8155. "shadowOffsetY": {
  8156. "$count": 1
  8157. },
  8158. "shadowOffsetX": {
  8159. "$count": 1
  8160. }
  8161. }
  8162. },
  8163. "label": {
  8164. "$count": 14,
  8165. "normal": {
  8166. "$count": 5,
  8167. "textStyle": {
  8168. "$count": 2,
  8169. "color": {
  8170. "$count": 1
  8171. },
  8172. "fontSize": {
  8173. "$count": 1
  8174. }
  8175. },
  8176. "formatter": {
  8177. "$count": 9
  8178. },
  8179. "position": {
  8180. "$count": 5
  8181. },
  8182. "show": {
  8183. "$count": 2
  8184. }
  8185. },
  8186. "emphasis": {
  8187. "$count": 7,
  8188. "position": {
  8189. "$count": 3
  8190. },
  8191. "formatter": {
  8192. "$count": 1
  8193. }
  8194. }
  8195. },
  8196. "symbolRotate": {
  8197. "$count": 9
  8198. },
  8199. "symbolOffset": {
  8200. "$count": 10
  8201. },
  8202. "animation": {
  8203. "$count": 2
  8204. },
  8205. "animationDuration": {
  8206. "$count": 3
  8207. },
  8208. "animationEasingUpdate": {
  8209. "$count": 2
  8210. },
  8211. "animationDurationUpdate": {
  8212. "$count": 3
  8213. },
  8214. "animationEasing": {
  8215. "$count": 1
  8216. }
  8217. },
  8218. "splitLine": {
  8219. "lineStyle": {
  8220. "type": {
  8221. "$count": 8
  8222. },
  8223. "width": {
  8224. "$count": 9
  8225. },
  8226. "color": {
  8227. "$count": 14
  8228. },
  8229. "$count": 36,
  8230. "opacity": {
  8231. "$count": 4
  8232. },
  8233. "shadowOffsetX": {
  8234. "$count": 4
  8235. },
  8236. "shadowOffsetY": {
  8237. "$count": 3
  8238. },
  8239. "shadowBlur": {
  8240. "$count": 3
  8241. },
  8242. "shadowColor": {
  8243. "$count": 2
  8244. }
  8245. },
  8246. "$count": 174,
  8247. "show": {
  8248. "$count": 18
  8249. },
  8250. "length": {
  8251. "$count": 24
  8252. }
  8253. },
  8254. "splitNumber": {
  8255. "$count": 135
  8256. },
  8257. "axisLabel": {
  8258. "$count": 159,
  8259. "textStyle": {
  8260. "$count": 38,
  8261. "fontWeight": {
  8262. "$count": 6
  8263. },
  8264. "fontFamily": {
  8265. "$count": 4
  8266. },
  8267. "fontStyle": {
  8268. "$count": 8
  8269. },
  8270. "color": {
  8271. "$count": 5
  8272. },
  8273. "fontSize": {
  8274. "$count": 12
  8275. }
  8276. },
  8277. "color": {
  8278. "$count": 15
  8279. },
  8280. "formatter": {
  8281. "$count": 61
  8282. },
  8283. "show": {
  8284. "$count": 24
  8285. }
  8286. },
  8287. "axisTick": {
  8288. "lineStyle": {
  8289. "$count": 28,
  8290. "type": {
  8291. "$count": 9
  8292. },
  8293. "color": {
  8294. "$count": 14
  8295. },
  8296. "shadowBlur": {
  8297. "$count": 7
  8298. },
  8299. "width": {
  8300. "$count": 8
  8301. },
  8302. "opacity": {
  8303. "$count": 5
  8304. },
  8305. "shadowOffsetX": {
  8306. "$count": 6
  8307. },
  8308. "shadowColor": {
  8309. "$count": 5
  8310. },
  8311. "shadowOffsetY": {
  8312. "$count": 2
  8313. }
  8314. },
  8315. "$count": 174,
  8316. "show": {
  8317. "$count": 23
  8318. },
  8319. "splitNumber": {
  8320. "$count": 35
  8321. },
  8322. "length": {
  8323. "$count": 26
  8324. }
  8325. },
  8326. "type": {
  8327. "$count": 147
  8328. },
  8329. "axisLine": {
  8330. "$count": 249,
  8331. "lineStyle": {
  8332. "width": {
  8333. "$count": 70,
  8334. "shadowBlur": {
  8335. "$count": 35
  8336. },
  8337. "shadowColor": {
  8338. "$count": 20
  8339. },
  8340. "shadowOffsetX": {
  8341. "$count": 17
  8342. },
  8343. "shadowOffsetY": {
  8344. "$count": 10
  8345. },
  8346. "opacity": {
  8347. "$count": 14
  8348. }
  8349. },
  8350. "color": {
  8351. "$count": 124
  8352. },
  8353. "$count": 86,
  8354. "shadowBlur": {
  8355. "$count": 5
  8356. },
  8357. "shadowColor": {
  8358. "$count": 5
  8359. },
  8360. "shadowOffsetX": {
  8361. "$count": 2
  8362. },
  8363. "shadowOffsetY": {
  8364. "$count": 2
  8365. },
  8366. "opacity": {
  8367. "$count": 2
  8368. }
  8369. },
  8370. "show": {
  8371. "$count": 42
  8372. }
  8373. },
  8374. "startAngle": {
  8375. "$count": 121
  8376. },
  8377. "max": {
  8378. "$count": 67
  8379. },
  8380. "markLine": {
  8381. "$count": 78,
  8382. "symbol": {
  8383. "$count": 8
  8384. },
  8385. "label": {
  8386. "$count": 5,
  8387. "normal": {
  8388. "$count": 6,
  8389. "position": {
  8390. "$count": 2
  8391. },
  8392. "formatter": {
  8393. "$count": 2
  8394. }
  8395. },
  8396. "emphasis": {
  8397. "$count": 4,
  8398. "formatter": {
  8399. "$count": 3
  8400. },
  8401. "position": {
  8402. "$count": 2
  8403. },
  8404. "show": {
  8405. "$count": 1
  8406. }
  8407. }
  8408. },
  8409. "lineStyle": {
  8410. "$count": 4,
  8411. "normal": {
  8412. "$count": 1,
  8413. "color": {
  8414. "$count": 1
  8415. }
  8416. },
  8417. "emphasis": {
  8418. "$count": 1
  8419. }
  8420. },
  8421. "precision": {
  8422. "$count": 5
  8423. },
  8424. "symbolSize": {
  8425. "$count": 6
  8426. },
  8427. "data": {
  8428. "0": {
  8429. "label": {
  8430. "emphasis": {
  8431. "formatter": {
  8432. "$count": 1
  8433. }
  8434. },
  8435. "normal": {
  8436. "formatter": {
  8437. "$count": 2
  8438. }
  8439. }
  8440. },
  8441. "$count": 2,
  8442. "lineStyle": {
  8443. "normal": {
  8444. "color": {
  8445. "$count": 1
  8446. },
  8447. "$count": 1
  8448. },
  8449. "$count": 3
  8450. },
  8451. "y": {
  8452. "$count": 1
  8453. },
  8454. "value": {
  8455. "$count": 1
  8456. }
  8457. },
  8458. "1": {
  8459. "label": {
  8460. "emphasis": {
  8461. "formatter": {
  8462. "$count": 1
  8463. }
  8464. },
  8465. "normal": {
  8466. "formatter": {
  8467. "$count": 1
  8468. }
  8469. }
  8470. },
  8471. "$count": 1,
  8472. "lineStyle": {
  8473. "emphasis": {
  8474. "type": {
  8475. "$count": 1
  8476. }
  8477. }
  8478. }
  8479. },
  8480. "$count": 6
  8481. }
  8482. },
  8483. "clockwise": {
  8484. "$count": 107
  8485. },
  8486. "name": {
  8487. "$count": 96
  8488. },
  8489. "animation": {
  8490. "$count": 25
  8491. },
  8492. "endAngle": {
  8493. "$count": 74
  8494. },
  8495. "animationEasingUpdate": {
  8496. "$count": 17
  8497. },
  8498. "animationDurationUpdate": {
  8499. "$count": 21
  8500. },
  8501. "animationEasing": {
  8502. "$count": 15
  8503. },
  8504. "animationDuration": {
  8505. "$count": 23
  8506. }
  8507. },
  8508. "dataZoom-slider": {
  8509. "$count": 910,
  8510. "end": {
  8511. "$count": 48
  8512. },
  8513. "start": {
  8514. "$count": 121
  8515. },
  8516. "xAxisIndex": {
  8517. "$count": 104
  8518. },
  8519. "type": {
  8520. "$count": 335
  8521. },
  8522. "show": {
  8523. "$count": 114
  8524. },
  8525. "realtime": {
  8526. "$count": 173
  8527. },
  8528. "zoomLock": {
  8529. "$count": 84
  8530. },
  8531. "backgroundColor": {
  8532. "$count": 165
  8533. },
  8534. "filterMode": {
  8535. "$count": 95
  8536. },
  8537. "showDataShadow": {
  8538. "$count": 96
  8539. },
  8540. "showDetail": {
  8541. "$count": 111
  8542. },
  8543. "bottom": {
  8544. "$count": 76
  8545. },
  8546. "orient": {
  8547. "$count": 89
  8548. },
  8549. "throttle": {
  8550. "$count": 78
  8551. },
  8552. "zlevel": {
  8553. "$count": 63
  8554. },
  8555. "z": {
  8556. "$count": 56
  8557. },
  8558. "dataBackgroundColor": {
  8559. "$count": 108
  8560. },
  8561. "handleColor": {
  8562. "$count": 96
  8563. },
  8564. "fillerColor": {
  8565. "$count": 91
  8566. },
  8567. "labelFormatter": {
  8568. "$count": 169
  8569. },
  8570. "handleSize": {
  8571. "$count": 130
  8572. },
  8573. "labelPrecision": {
  8574. "$count": 119
  8575. },
  8576. "yAxisIndex": {
  8577. "$count": 64
  8578. },
  8579. "startValue": {
  8580. "$count": 98
  8581. },
  8582. "angleAxisIndex": {
  8583. "$count": 50
  8584. },
  8585. "top": {
  8586. "$count": 83
  8587. },
  8588. "left": {
  8589. "$count": 85
  8590. },
  8591. "right": {
  8592. "$count": 46
  8593. },
  8594. "textStyle": {
  8595. "$count": 97,
  8596. "color": {
  8597. "$count": 20
  8598. },
  8599. "fontStyle": {
  8600. "$count": 12
  8601. },
  8602. "fontWeight": {
  8603. "$count": 14
  8604. },
  8605. "fontFamily": {
  8606. "$count": 10
  8607. },
  8608. "fontSize": {
  8609. "$count": 17
  8610. }
  8611. },
  8612. "endValue": {
  8613. "$count": 45
  8614. },
  8615. "radiusAxisIndex": {
  8616. "$count": 52
  8617. }
  8618. },
  8619. "timeline": {
  8620. "$count": 4025,
  8621. "itemStyle": {
  8622. "$count": 128,
  8623. "normal": {
  8624. "$count": 33,
  8625. "color": {
  8626. "$count": 25
  8627. },
  8628. "borderColor": {
  8629. "$count": 13
  8630. },
  8631. "borderWidth": {
  8632. "$count": 13
  8633. },
  8634. "shadowBlur": {
  8635. "$count": 6
  8636. },
  8637. "shadowColor": {
  8638. "$count": 5
  8639. },
  8640. "shadowOffsetY": {
  8641. "$count": 6
  8642. },
  8643. "opacity": {
  8644. "$count": 9
  8645. },
  8646. "shadowOffsetX": {
  8647. "$count": 5
  8648. }
  8649. },
  8650. "emphasis": {
  8651. "$count": 14,
  8652. "color": {
  8653. "$count": 5
  8654. },
  8655. "shadowColor": {
  8656. "$count": 2
  8657. },
  8658. "opacity": {
  8659. "$count": 2
  8660. }
  8661. }
  8662. },
  8663. "symbolSize": {
  8664. "$count": 125
  8665. },
  8666. "checkpointStyle": {
  8667. "$count": 88,
  8668. "symbolOffset": {
  8669. "$count": 12
  8670. },
  8671. "symbolSize": {
  8672. "$count": 31
  8673. },
  8674. "symbol": {
  8675. "$count": 45
  8676. },
  8677. "borderWidth": {
  8678. "$count": 9
  8679. },
  8680. "animationEasing: 'quinticInOut'": {
  8681. "$count": 10
  8682. },
  8683. "symbolRotate": {
  8684. "$count": 16
  8685. },
  8686. "borderColor": {
  8687. "$count": 6
  8688. },
  8689. "animation": {
  8690. "$count": 14
  8691. },
  8692. "animationDuration": {
  8693. "$count": 12
  8694. },
  8695. "color": {
  8696. "$count": 10
  8697. }
  8698. },
  8699. "symbol": {
  8700. "$count": 184
  8701. },
  8702. "symbolOffset": {
  8703. "$count": 68
  8704. },
  8705. "label": {
  8706. "position": {
  8707. "$count": 87
  8708. },
  8709. "normal": {
  8710. "formatter": {
  8711. "$count": 67
  8712. },
  8713. "$count": 43,
  8714. "textStyle": {
  8715. "$count": 19,
  8716. "color": {
  8717. "$count": 6
  8718. },
  8719. "fontStyle": {
  8720. "$count": 5
  8721. },
  8722. "fontWeight": {
  8723. "$count": 4
  8724. },
  8725. "fontFamily": {
  8726. "$count": 3
  8727. },
  8728. "fontSize": {
  8729. "$count": 7
  8730. }
  8731. },
  8732. "rotate": {
  8733. "$count": 17
  8734. },
  8735. "show": {
  8736. "$count": 14
  8737. },
  8738. "interval": {
  8739. "$count": 15
  8740. }
  8741. },
  8742. "emphasis": {
  8743. "formatter": {
  8744. "$count": 17
  8745. },
  8746. "$count": 32,
  8747. "show": {
  8748. "$count": 4
  8749. },
  8750. "textStyle": {
  8751. "$count": 2,
  8752. "color": {
  8753. "$count": 2
  8754. }
  8755. },
  8756. "rotate": {
  8757. "$count": 1
  8758. }
  8759. },
  8760. "$count": 155
  8761. },
  8762. "controlStyle": {
  8763. "position": {
  8764. "$count": 28
  8765. },
  8766. "showPlayBtn": {
  8767. "$count": 19
  8768. },
  8769. "$count": 78,
  8770. "show": {
  8771. "$count": 12
  8772. },
  8773. "showPrevBtn": {
  8774. "$count": 7
  8775. },
  8776. "showNextBtn": {
  8777. "$count": 4
  8778. },
  8779. "itemSize": {
  8780. "$count": 13
  8781. },
  8782. "itemGap": {
  8783. "$count": 12
  8784. },
  8785. "playIcon": {
  8786. "$count": 25
  8787. },
  8788. "stopIcon": {
  8789. "$count": 9
  8790. },
  8791. "normal": {
  8792. "$count": 10,
  8793. "borderWidth": {
  8794. "$count": 2
  8795. },
  8796. "borderColor": {
  8797. "$count": 3
  8798. },
  8799. "color": {
  8800. "$count": 3
  8801. }
  8802. },
  8803. "emphasis": {
  8804. "$count": 5,
  8805. "color": {
  8806. "$count": 2
  8807. }
  8808. },
  8809. "prevIcon": {
  8810. "$count": 10
  8811. },
  8812. "nextIcon": {
  8813. "$count": 8
  8814. }
  8815. },
  8816. "show": {
  8817. "$count": 246
  8818. },
  8819. "axisType": {
  8820. "$count": 177
  8821. },
  8822. "autoPlay": {
  8823. "$count": 86
  8824. },
  8825. "loop": {
  8826. "$count": 67
  8827. },
  8828. "type": {
  8829. "$count": 171
  8830. },
  8831. "currentIndex": {
  8832. "$count": 103
  8833. },
  8834. "data": {
  8835. "$count": 140
  8836. },
  8837. "rewind": {
  8838. "$count": 75
  8839. },
  8840. "playInterval": {
  8841. "$count": 83
  8842. },
  8843. "realtime: true,": {
  8844. "$count": 81
  8845. },
  8846. "orient": {
  8847. "$count": 77
  8848. },
  8849. "inverse": {
  8850. "$count": 70
  8851. },
  8852. "controlPosition": {
  8853. "$count": 89
  8854. },
  8855. "symbolRotate": {
  8856. "$count": 73
  8857. },
  8858. "top": {
  8859. "$count": 35
  8860. },
  8861. "left": {
  8862. "$count": 70
  8863. },
  8864. "lineStyle": {
  8865. "$count": 94,
  8866. "type": {
  8867. "$count": 16
  8868. },
  8869. "color": {
  8870. "$count": 11
  8871. },
  8872. "opacity": {
  8873. "$count": 13
  8874. },
  8875. "width": {
  8876. "$count": 11
  8877. },
  8878. "shadowBlur": {
  8879. "$count": 12
  8880. },
  8881. "shadowColor": {
  8882. "$count": 9
  8883. },
  8884. "shadowOffsetX": {
  8885. "$count": 6
  8886. },
  8887. "shadowOffsetY": {
  8888. "$count": 5
  8889. },
  8890. "show": {
  8891. "$count": 11
  8892. }
  8893. },
  8894. "zlevel": {
  8895. "$count": 53
  8896. },
  8897. "z": {
  8898. "$count": 35
  8899. },
  8900. "padding": {
  8901. "$count": 48
  8902. },
  8903. "right": {
  8904. "$count": 31
  8905. },
  8906. "bottom": {
  8907. "$count": 41
  8908. }
  8909. },
  8910. "parallelAxis": {
  8911. "$count": 2817,
  8912. "axisLabel": {
  8913. "formatter": {
  8914. "$count": 11
  8915. },
  8916. "$count": 22,
  8917. "show": {
  8918. "$count": 3
  8919. },
  8920. "margin": {
  8921. "$count": 2
  8922. },
  8923. "rotate": {
  8924. "$count": 6
  8925. },
  8926. "interval": {
  8927. "$count": 1
  8928. },
  8929. "textStyle": {
  8930. "color": {
  8931. "$count": 2
  8932. },
  8933. "$count": 1,
  8934. "fontSize": {
  8935. "$count": 1
  8936. }
  8937. },
  8938. "inside": {
  8939. "$count": 1
  8940. }
  8941. },
  8942. "parallelIndex": {
  8943. "$count": 43
  8944. },
  8945. "dim": {
  8946. "$count": 49
  8947. },
  8948. "type": {
  8949. "$count": 22
  8950. },
  8951. "data": {
  8952. "$count": 14,
  8953. "textStyle": {
  8954. "color": {
  8955. "$count": 1
  8956. },
  8957. "baseline": {
  8958. "$count": 1
  8959. },
  8960. "align": {
  8961. "$count": 1
  8962. },
  8963. "$count": 1
  8964. },
  8965. "value": {
  8966. "$count": 4
  8967. }
  8968. },
  8969. "axisTick": {
  8970. "$count": 19,
  8971. "lineStyle": {
  8972. "$count": 2,
  8973. "color": {
  8974. "$count": 2
  8975. },
  8976. "width": {
  8977. "$count": 1
  8978. },
  8979. "type": {
  8980. "$count": 1
  8981. },
  8982. "shadowBlur": {
  8983. "$count": 1
  8984. },
  8985. "opacity": {
  8986. "$count": 1
  8987. },
  8988. "shadowOffsetY": {
  8989. "$count": 1
  8990. }
  8991. },
  8992. "inside": {
  8993. "$count": 2
  8994. },
  8995. "interval": {
  8996. "$count": 2
  8997. }
  8998. },
  8999. "min": {
  9000. "$count": 9
  9001. },
  9002. "max": {
  9003. "$count": 5
  9004. },
  9005. "scale": {
  9006. "$count": 10
  9007. },
  9008. "splitNumber": {
  9009. "$count": 9
  9010. },
  9011. "interval": {
  9012. "$count": 11
  9013. },
  9014. "name": {
  9015. "$count": 12
  9016. },
  9017. "axisLine": {
  9018. "$count": 27,
  9019. "lineStyle": {
  9020. "$count": 9,
  9021. "color": {
  9022. "$count": 1
  9023. }
  9024. },
  9025. "show": {
  9026. "$count": 2
  9027. }
  9028. },
  9029. "areaSelectStyle": {
  9030. "$count": 37,
  9031. "width": {
  9032. "$count": 4
  9033. },
  9034. "opacity": {
  9035. "$count": 2
  9036. },
  9037. "borderWidth": {
  9038. "$count": 1
  9039. },
  9040. "borderColor": {
  9041. "$count": 2
  9042. },
  9043. "color": {
  9044. "$count": 1
  9045. }
  9046. },
  9047. "nameLocation": {
  9048. "$count": 10
  9049. },
  9050. "boundaryGap": {
  9051. "$count": 15
  9052. },
  9053. "nameTextStyle": {
  9054. "$count": 14,
  9055. "color": {
  9056. "$count": 2
  9057. }
  9058. },
  9059. "inverse": {
  9060. "$count": 9
  9061. },
  9062. "nameGap": {
  9063. "$count": 8
  9064. }
  9065. },
  9066. "textStyle": {
  9067. "$count": 3717,
  9068. "fontFamily": {
  9069. "$count": 207
  9070. },
  9071. "fontWeight": {
  9072. "$count": 209
  9073. },
  9074. "color": {
  9075. "$count": 411
  9076. },
  9077. "fontStyle": {
  9078. "$count": 254
  9079. },
  9080. "fontSize": {
  9081. "$count": 210
  9082. }
  9083. },
  9084. "series-candlestick": {
  9085. "type": {
  9086. "$count": 78
  9087. },
  9088. "coordinateSystem": {
  9089. "$count": 52
  9090. },
  9091. "xAxisIndex": {
  9092. "$count": 38
  9093. },
  9094. "legendHoverLink": {
  9095. "$count": 36
  9096. },
  9097. "layout": {
  9098. "$count": 35
  9099. },
  9100. "itemStyle": {
  9101. "normal": {
  9102. "$count": 39,
  9103. "color": {
  9104. "$count": 65
  9105. },
  9106. "borderWidth": {
  9107. "$count": 14
  9108. },
  9109. "borderColor": {
  9110. "$count": 20
  9111. },
  9112. "color0": {
  9113. "$count": 37
  9114. },
  9115. "shadowBlur": {
  9116. "$count": 9
  9117. },
  9118. "shadowColor": {
  9119. "$count": 9
  9120. },
  9121. "shadowOffsetX": {
  9122. "$count": 10
  9123. },
  9124. "shadowOffsetY": {
  9125. "$count": 12
  9126. },
  9127. "opacity": {
  9128. "$count": 15
  9129. },
  9130. "borderColor0": {
  9131. "$count": 6
  9132. }
  9133. },
  9134. "$count": 64,
  9135. "emphasis": {
  9136. "$count": 26,
  9137. "color": {
  9138. "$count": 6
  9139. },
  9140. "color0": {
  9141. "$count": 3
  9142. },
  9143. "borderColor": {
  9144. "$count": 1
  9145. }
  9146. }
  9147. },
  9148. "$count": 860,
  9149. "markLine": {
  9150. "animationEasingUpdate": {
  9151. "$count": 1
  9152. },
  9153. "label": {
  9154. "normal": {
  9155. "position": {
  9156. "$count": 1
  9157. },
  9158. "$count": 4,
  9159. "show": {
  9160. "$count": 1
  9161. }
  9162. },
  9163. "$count": 5,
  9164. "emphasis": {
  9165. "$count": 3,
  9166. "formatter": {
  9167. "$count": 1
  9168. }
  9169. }
  9170. },
  9171. "data": {
  9172. "0": {
  9173. "label": {
  9174. "normal": {
  9175. "position": {
  9176. "$count": 2
  9177. },
  9178. "formatter": {
  9179. "$count": 1
  9180. }
  9181. },
  9182. "$count": 1
  9183. },
  9184. "$count": 8,
  9185. "valueIndex": {
  9186. "$count": 5
  9187. },
  9188. "coord": {
  9189. "$count": 12
  9190. },
  9191. "value": {
  9192. "$count": 3
  9193. },
  9194. "y": {
  9195. "$count": 2
  9196. },
  9197. "x": {
  9198. "$count": 4
  9199. },
  9200. "symbol": {
  9201. "$count": 1
  9202. },
  9203. "lineStyle": {
  9204. "$count": 2
  9205. },
  9206. "valueDim": {
  9207. "$count": 1
  9208. }
  9209. },
  9210. "1": {
  9211. "label": {
  9212. "normal": {
  9213. "position": {
  9214. "$count": 1
  9215. },
  9216. "formatter": {
  9217. "$count": 1
  9218. }
  9219. }
  9220. },
  9221. "$count": 4,
  9222. "valueIndex": {
  9223. "$count": 1
  9224. },
  9225. "coord": {
  9226. "$count": 1
  9227. },
  9228. "x": {
  9229. "$count": 1
  9230. },
  9231. "symbolSize": {
  9232. "$count": 2
  9233. },
  9234. "symbol": {
  9235. "$count": 1
  9236. }
  9237. },
  9238. "$count": 23
  9239. },
  9240. "$count": 51,
  9241. "symbol": {
  9242. "$count": 19
  9243. },
  9244. "symbolSize": {
  9245. "$count": 12
  9246. },
  9247. "lineStyle": {
  9248. "$count": 8,
  9249. "normal": {
  9250. "$count": 3,
  9251. "type": {
  9252. "$count": 1
  9253. }
  9254. }
  9255. },
  9256. "precision": {
  9257. "$count": 11
  9258. },
  9259. "animation": {
  9260. "$count": 3
  9261. },
  9262. "animationDuration": {
  9263. "$count": 1
  9264. }
  9265. },
  9266. "data": {
  9267. "$count": 65,
  9268. "value": {
  9269. "$count": 28
  9270. },
  9271. "itemStyle": {
  9272. "$count": 11,
  9273. "color": {
  9274. "$count": 10
  9275. },
  9276. "normal": {
  9277. "$count": 10
  9278. },
  9279. "color0": {
  9280. "$count": 6
  9281. },
  9282. "borderColor": {
  9283. "$count": 7
  9284. },
  9285. "shadowBlur": {
  9286. "$count": 5
  9287. },
  9288. "borderWidth": {
  9289. "$count": 4
  9290. },
  9291. "shadowColor": {
  9292. "$count": 4
  9293. },
  9294. "opacity": {
  9295. "$count": 4
  9296. },
  9297. "shadowOffsetY": {
  9298. "$count": 2
  9299. },
  9300. "borderColor0": {
  9301. "$count": 5
  9302. },
  9303. "emphasis": {
  9304. "$count": 6
  9305. },
  9306. "shadowOffsetX": {
  9307. "$count": 2
  9308. }
  9309. },
  9310. "name": {
  9311. "$count": 26
  9312. }
  9313. },
  9314. "animationDuration": {
  9315. "$count": 9
  9316. },
  9317. "animationEasing": {
  9318. "$count": 11
  9319. },
  9320. "hoverAnimation": {
  9321. "$count": 27
  9322. },
  9323. "name": {
  9324. "$count": 44
  9325. },
  9326. "yAxisIndex": {
  9327. "$count": 29
  9328. },
  9329. "markPoint": {
  9330. "label": {
  9331. "normal": {
  9332. "position": {
  9333. "$count": 12
  9334. },
  9335. "formatter": {
  9336. "$count": 11
  9337. },
  9338. "show": {
  9339. "$count": 5
  9340. },
  9341. "textStyle": {
  9342. "$count": 3,
  9343. "color": {
  9344. "$count": 2
  9345. },
  9346. "fontWeight": {
  9347. "$count": 1
  9348. },
  9349. "fontSize": {
  9350. "$count": 1
  9351. }
  9352. },
  9353. "$count": 2
  9354. },
  9355. "$count": 13,
  9356. "emphasis": {
  9357. "show": {
  9358. "$count": 1
  9359. },
  9360. "position": {
  9361. "$count": 3
  9362. },
  9363. "formatter": {
  9364. "$count": 1
  9365. },
  9366. "textStyle": {
  9367. "$count": 1
  9368. },
  9369. "$count": 5
  9370. }
  9371. },
  9372. "data": {
  9373. "label": {
  9374. "normal": {
  9375. "position": {
  9376. "$count": 3
  9377. },
  9378. "$count": 2,
  9379. "show": {
  9380. "$count": 1
  9381. },
  9382. "textStyle": {
  9383. "$count": 1
  9384. }
  9385. },
  9386. "$count": 3
  9387. },
  9388. "symbol": {
  9389. "$count": 13
  9390. },
  9391. "coord": {
  9392. "$count": 20
  9393. },
  9394. "valueIndex": {
  9395. "$count": 11
  9396. },
  9397. "name": {
  9398. "$count": 11
  9399. },
  9400. "symbolRotate": {
  9401. "$count": 3
  9402. },
  9403. "symbolSize": {
  9404. "$count": 6
  9405. },
  9406. "value": {
  9407. "$count": 10
  9408. },
  9409. "y": {
  9410. "$count": 3
  9411. },
  9412. "x": {
  9413. "$count": 7
  9414. },
  9415. "symbolOffset": {
  9416. "$count": 6
  9417. },
  9418. "itemStyle": {
  9419. "normal": {
  9420. "$count": 1
  9421. },
  9422. "$count": 4
  9423. },
  9424. "$count": 31
  9425. },
  9426. "$count": 77,
  9427. "symbol": {
  9428. "$count": 28
  9429. },
  9430. "symbolRotate": {
  9431. "$count": 12
  9432. },
  9433. "itemStyle": {
  9434. "$count": 12,
  9435. "normal": {
  9436. "color": {
  9437. "$count": 2
  9438. },
  9439. "$count": 3
  9440. },
  9441. "emphasis": {
  9442. "$count": 1
  9443. }
  9444. },
  9445. "symbolOffset": {
  9446. "$count": 13
  9447. },
  9448. "symbolSize": {
  9449. "$count": 10
  9450. },
  9451. "animation": {
  9452. "$count": 2
  9453. },
  9454. "animationDurationUpdate": {
  9455. "$count": 1
  9456. }
  9457. },
  9458. "z": {
  9459. "$count": 1
  9460. },
  9461. "zlevel": {
  9462. "$count": 2
  9463. }
  9464. },
  9465. "series-lines": {
  9466. "$count": 1436,
  9467. "effect": {
  9468. "$count": 153,
  9469. "symbol": {
  9470. "$count": 127
  9471. },
  9472. "trailLength": {
  9473. "$count": 54
  9474. },
  9475. "show": {
  9476. "$count": 51
  9477. },
  9478. "period": {
  9479. "$count": 57
  9480. },
  9481. "color": {
  9482. "$count": 37
  9483. },
  9484. "symbolSize": {
  9485. "$count": 37
  9486. }
  9487. },
  9488. "label": {
  9489. "$count": 69,
  9490. "normal": {
  9491. "$count": 24,
  9492. "formatter": {
  9493. "$count": 24
  9494. },
  9495. "position": {
  9496. "$count": 16
  9497. },
  9498. "show": {
  9499. "$count": 6
  9500. }
  9501. }
  9502. },
  9503. "geoIndex": {
  9504. "$count": 53
  9505. },
  9506. "type": {
  9507. "$count": 192
  9508. },
  9509. "name": {
  9510. "$count": 56
  9511. },
  9512. "coordinateSystem": {
  9513. "$count": 94
  9514. },
  9515. "xAxisIndex": {
  9516. "$count": 45
  9517. },
  9518. "yAxisIndex": {
  9519. "$count": 30
  9520. },
  9521. "lineStyle": {
  9522. "$count": 107,
  9523. "emphasis": {
  9524. "$count": 22,
  9525. "color": {
  9526. "$count": 6
  9527. },
  9528. "shadowOffsetX": {
  9529. "$count": 1
  9530. },
  9531. "opacity": {
  9532. "$count": 2
  9533. },
  9534. "shadowBlur": {
  9535. "$count": 1
  9536. },
  9537. "shadowOffsetY": {
  9538. "$count": 1
  9539. },
  9540. "type": {
  9541. "$count": 1
  9542. }
  9543. },
  9544. "normal": {
  9545. "type": {
  9546. "$count": 24
  9547. },
  9548. "$count": 48,
  9549. "color": {
  9550. "$count": 38
  9551. },
  9552. "opacity": {
  9553. "$count": 14
  9554. },
  9555. "shadowColor": {
  9556. "$count": 9
  9557. },
  9558. "shadowBlur": {
  9559. "$count": 11
  9560. },
  9561. "width": {
  9562. "$count": 19
  9563. },
  9564. "shadowOffsetX": {
  9565. "$count": 7
  9566. },
  9567. "shadowOffsetY": {
  9568. "$count": 5
  9569. }
  9570. }
  9571. },
  9572. "markPoint": {
  9573. "symbol": {
  9574. "$count": 27
  9575. },
  9576. "symbolRotate": {
  9577. "$count": 9
  9578. },
  9579. "symbolOffset": {
  9580. "$count": 7
  9581. },
  9582. "$count": 86,
  9583. "label": {
  9584. "normal": {
  9585. "position": {
  9586. "$count": 3
  9587. },
  9588. "formatter": {
  9589. "$count": 6
  9590. },
  9591. "$count": 1,
  9592. "textStyle": {
  9593. "$count": 1,
  9594. "color": {
  9595. "$count": 2
  9596. },
  9597. "fontSize": {
  9598. "$count": 1
  9599. },
  9600. "fontFamily": {
  9601. "$count": 1
  9602. },
  9603. "fontWeight": {
  9604. "$count": 1
  9605. },
  9606. "fontStyle": {
  9607. "$count": 1
  9608. }
  9609. },
  9610. "show": {
  9611. "$count": 1
  9612. }
  9613. },
  9614. "$count": 5,
  9615. "emphasis": {
  9616. "formatter": {
  9617. "$count": 1
  9618. },
  9619. "$count": 2
  9620. }
  9621. },
  9622. "data": {
  9623. "label": {
  9624. "normal": {
  9625. "position": {
  9626. "$count": 1
  9627. }
  9628. }
  9629. },
  9630. "$count": 9,
  9631. "name": {
  9632. "$count": 1
  9633. },
  9634. "x": {
  9635. "$count": 1
  9636. },
  9637. "y": {
  9638. "$count": 1
  9639. },
  9640. "symbolSize": {
  9641. "$count": 2
  9642. },
  9643. "symbolRotate": {
  9644. "$count": 1
  9645. },
  9646. "itemStyle": {
  9647. "normal": {
  9648. "$count": 2
  9649. }
  9650. }
  9651. },
  9652. "symbolSize": {
  9653. "$count": 14
  9654. },
  9655. "itemStyle": {
  9656. "$count": 4,
  9657. "normal": {
  9658. "shadowColor": {
  9659. "$count": 2
  9660. },
  9661. "opacity": {
  9662. "$count": 2
  9663. },
  9664. "borderColor": {
  9665. "$count": 2
  9666. },
  9667. "color": {
  9668. "$count": 1
  9669. },
  9670. "borderWidth": {
  9671. "$count": 1
  9672. },
  9673. "shadowBlur": {
  9674. "$count": 1
  9675. }
  9676. },
  9677. "emphasis": {
  9678. "opacity": {
  9679. "$count": 1
  9680. }
  9681. }
  9682. },
  9683. "animation": {
  9684. "$count": 5
  9685. },
  9686. "animationDuration": {
  9687. "$count": 4
  9688. },
  9689. "animationEasing": {
  9690. "$count": 3
  9691. },
  9692. "animationEasingUpdate": {
  9693. "$count": 3
  9694. },
  9695. "animationDurationUpdate": {
  9696. "$count": 3
  9697. }
  9698. },
  9699. "animationEasingUpdate": {
  9700. "$count": 17
  9701. },
  9702. "data": {
  9703. "0": {
  9704. "$count": 56,
  9705. "name": {
  9706. "$count": 20
  9707. },
  9708. "lineStyle": {
  9709. "$count": 18,
  9710. "emphasis": {
  9711. "$count": 4,
  9712. "curveness": {
  9713. "$count": 1
  9714. }
  9715. },
  9716. "normal": {
  9717. "$count": 6,
  9718. "curveness": {
  9719. "$count": 6
  9720. },
  9721. "opacity": {
  9722. "$count": 2
  9723. },
  9724. "width": {
  9725. "$count": 1
  9726. },
  9727. "shadowBlur": {
  9728. "$count": 2
  9729. }
  9730. }
  9731. },
  9732. "value": {
  9733. "$count": 14
  9734. },
  9735. "coord": {
  9736. "$count": 34
  9737. }
  9738. },
  9739. "1": {
  9740. "$count": 19,
  9741. "coord": {
  9742. "$count": 10
  9743. },
  9744. "name": {
  9745. "$count": 6
  9746. },
  9747. "lineStyle": {
  9748. "normal": {
  9749. "$count": 1
  9750. },
  9751. "$count": 1
  9752. }
  9753. },
  9754. "$count": 97
  9755. },
  9756. "markLine": {
  9757. "$count": 102,
  9758. "symbol": {
  9759. "$count": 20
  9760. },
  9761. "label": {
  9762. "normal": {
  9763. "formatter": {
  9764. "$count": 1
  9765. },
  9766. "$count": 1,
  9767. "position": {
  9768. "$count": 1
  9769. }
  9770. },
  9771. "$count": 8,
  9772. "emphasis": {
  9773. "formatter": {
  9774. "$count": 1
  9775. }
  9776. }
  9777. },
  9778. "lineStyle": {
  9779. "normal": {
  9780. "shadowBlur": {
  9781. "$count": 2
  9782. },
  9783. "width": {
  9784. "$count": 3
  9785. },
  9786. "$count": 5,
  9787. "curveness": {
  9788. "$count": 4
  9789. },
  9790. "type": {
  9791. "$count": 3
  9792. },
  9793. "color": {
  9794. "$count": 1
  9795. }
  9796. },
  9797. "$count": 14,
  9798. "emphasis": {
  9799. "$count": 1,
  9800. "color": {
  9801. "$count": 1
  9802. }
  9803. }
  9804. },
  9805. "animation": {
  9806. "$count": 12
  9807. },
  9808. "data": {
  9809. "0": {
  9810. "label": {
  9811. "normal": {
  9812. "position": {
  9813. "$count": 1
  9814. }
  9815. },
  9816. "$count": 1
  9817. },
  9818. "lineStyle": {
  9819. "$count": 6,
  9820. "emphasis": {
  9821. "$count": 2
  9822. },
  9823. "normal": {
  9824. "$count": 3
  9825. }
  9826. },
  9827. "$count": 6,
  9828. "x": {
  9829. "$count": 10
  9830. },
  9831. "value": {
  9832. "$count": 8
  9833. },
  9834. "symbolOffset": {
  9835. "$count": 3
  9836. },
  9837. "symbol": {
  9838. "$count": 8
  9839. },
  9840. "y": {
  9841. "$count": 6
  9842. },
  9843. "symbolSize": {
  9844. "$count": 1
  9845. },
  9846. "symbolRotate": {
  9847. "$count": 2
  9848. }
  9849. },
  9850. "1": {
  9851. "label": {
  9852. "normal": {
  9853. "position": {
  9854. "$count": 1
  9855. }
  9856. }
  9857. },
  9858. "$count": 3
  9859. },
  9860. "$count": 25
  9861. },
  9862. "animationDuration": {
  9863. "$count": 5
  9864. },
  9865. "animationEasingUpdate": {
  9866. "$count": 2
  9867. },
  9868. "animationDurationUpdate": {
  9869. "$count": 3
  9870. },
  9871. "animationEasing": {
  9872. "$count": 2
  9873. },
  9874. "precision": {
  9875. "$count": 7
  9876. },
  9877. "symbolSize": {
  9878. "$count": 3
  9879. }
  9880. },
  9881. "animation": {
  9882. "$count": 39
  9883. },
  9884. "animationDuration": {
  9885. "$count": 22
  9886. },
  9887. "animationEasing": {
  9888. "$count": 14
  9889. },
  9890. "animationDurationUpdate": {
  9891. "$count": 14
  9892. },
  9893. "zlevel": {
  9894. "$count": 4
  9895. },
  9896. "z": {
  9897. "$count": 2
  9898. }
  9899. },
  9900. "series-boxplot": {
  9901. "$count": 794,
  9902. "data": {
  9903. "$count": 38,
  9904. "name": {
  9905. "$count": 8
  9906. },
  9907. "value": {
  9908. "$count": 8
  9909. },
  9910. "itemStyle": {
  9911. "$count": 5,
  9912. "shadowBlur": {
  9913. "$count": 1
  9914. }
  9915. }
  9916. },
  9917. "animationEasing": {
  9918. "$count": 6
  9919. },
  9920. "type": {
  9921. "$count": 27
  9922. },
  9923. "markPoint": {
  9924. "label": {
  9925. "normal": {
  9926. "formatter": {
  9927. "$count": 2
  9928. },
  9929. "position": {
  9930. "$count": 3
  9931. },
  9932. "$count": 1,
  9933. "show": {
  9934. "$count": 1
  9935. },
  9936. "textStyle": {
  9937. "$count": 1,
  9938. "color": {
  9939. "$count": 1
  9940. },
  9941. "fontStyle": {
  9942. "$count": 1
  9943. }
  9944. }
  9945. },
  9946. "$count": 1
  9947. },
  9948. "data": {
  9949. "label": {
  9950. "normal": {
  9951. "position": {
  9952. "$count": 1
  9953. }
  9954. }
  9955. },
  9956. "coord": {
  9957. "$count": 2
  9958. },
  9959. "valueIndex": {
  9960. "$count": 1
  9961. },
  9962. "$count": 2,
  9963. "valueDim": {
  9964. "$count": 1
  9965. }
  9966. },
  9967. "$count": 14,
  9968. "symbol": {
  9969. "$count": 3
  9970. },
  9971. "symbolSize": {
  9972. "$count": 2
  9973. },
  9974. "symbolRotate": {
  9975. "$count": 1
  9976. },
  9977. "symbolOffset": {
  9978. "$count": 1
  9979. }
  9980. },
  9981. "markLine": {
  9982. "label": {
  9983. "normal": {
  9984. "position": {
  9985. "$count": 1
  9986. }
  9987. },
  9988. "emphasis": {
  9989. "formatter": {
  9990. "$count": 1
  9991. }
  9992. }
  9993. },
  9994. "data": {
  9995. "0": {
  9996. "label": {
  9997. "normal": {
  9998. "position": {
  9999. "$count": 3
  10000. }
  10001. },
  10002. "emphasis": {
  10003. "formatter": {
  10004. "$count": 1
  10005. }
  10006. }
  10007. }
  10008. },
  10009. "1": {
  10010. "label": {
  10011. "normal": {
  10012. "position": {
  10013. "$count": 2
  10014. }
  10015. }
  10016. }
  10017. },
  10018. "$count": 2
  10019. },
  10020. "$count": 16,
  10021. "symbol": {
  10022. "$count": 2
  10023. },
  10024. "lineStyle": {
  10025. "normal": {
  10026. "type": {
  10027. "$count": 1
  10028. },
  10029. "curveness": {
  10030. "$count": 1
  10031. }
  10032. },
  10033. "$count": 1
  10034. },
  10035. "symbolSize": {
  10036. "$count": 1
  10037. }
  10038. },
  10039. "layout": {
  10040. "$count": 16
  10041. },
  10042. "coordinateSystem": {
  10043. "$count": 21
  10044. },
  10045. "itemStyle": {
  10046. "$count": 28,
  10047. "normal": {
  10048. "shadowBlur": {
  10049. "$count": 8
  10050. },
  10051. "$count": 10,
  10052. "color": {
  10053. "$count": 9
  10054. },
  10055. "shadowColor": {
  10056. "$count": 3
  10057. },
  10058. "opacity": {
  10059. "$count": 4
  10060. },
  10061. "shadowOffsetY": {
  10062. "$count": 3
  10063. },
  10064. "shadowOffsetX": {
  10065. "$count": 4
  10066. },
  10067. "borderWidth": {
  10068. "$count": 6
  10069. },
  10070. "borderColor": {
  10071. "$count": 7
  10072. }
  10073. },
  10074. "emphasis": {
  10075. "shadowOffsetX": {
  10076. "$count": 1
  10077. },
  10078. "color": {
  10079. "$count": 1
  10080. },
  10081. "$count": 4
  10082. }
  10083. },
  10084. "boxWidth": {
  10085. "$count": 16
  10086. },
  10087. "legendHoverLink": {
  10088. "$count": 21
  10089. },
  10090. "xAxisIndex": {
  10091. "$count": 13
  10092. },
  10093. "name": {
  10094. "$count": 11
  10095. },
  10096. "yAxisIndex": {
  10097. "$count": 7
  10098. },
  10099. "hoverAnimation": {
  10100. "$count": 10
  10101. },
  10102. "animationDuration": {
  10103. "$count": 6
  10104. },
  10105. "z": {
  10106. "$count": 1
  10107. }
  10108. },
  10109. "series-heatmap": {
  10110. "$count": 1010,
  10111. "type": {
  10112. "$count": 113
  10113. },
  10114. "name": {
  10115. "$count": 68
  10116. },
  10117. "coordinateSystem": {
  10118. "$count": 88
  10119. },
  10120. "xAxisIndex": {
  10121. "$count": 47
  10122. },
  10123. "yAxisIndex": {
  10124. "$count": 33
  10125. },
  10126. "geoIndex": {
  10127. "$count": 68
  10128. },
  10129. "blurSize": {
  10130. "$count": 71
  10131. },
  10132. "data": {
  10133. "$count": 114,
  10134. "name": {
  10135. "$count": 67
  10136. },
  10137. "value": {
  10138. "$count": 77
  10139. },
  10140. "itemStyle": {
  10141. "normal": {
  10142. "color": {
  10143. "$count": 17
  10144. },
  10145. "borderColor": {
  10146. "$count": 10
  10147. },
  10148. "$count": 25,
  10149. "borderWidth": {
  10150. "$count": 6
  10151. },
  10152. "shadowBlur": {
  10153. "$count": 5
  10154. },
  10155. "shadowColor": {
  10156. "$count": 3
  10157. },
  10158. "shadowOffsetX": {
  10159. "$count": 5
  10160. },
  10161. "opacity": {
  10162. "$count": 5
  10163. }
  10164. },
  10165. "$count": 39,
  10166. "emphasis": {
  10167. "$count": 12,
  10168. "opacity": {
  10169. "$count": 3
  10170. },
  10171. "shadowOffsetX": {
  10172. "$count": 1
  10173. },
  10174. "shadowOffsetY": {
  10175. "$count": 1
  10176. },
  10177. "shadowColor": {
  10178. "$count": 4
  10179. },
  10180. "shadowBlur": {
  10181. "$count": 6
  10182. },
  10183. "borderWidth": {
  10184. "$count": 2
  10185. },
  10186. "borderColor": {
  10187. "$count": 5
  10188. },
  10189. "color": {
  10190. "$count": 8
  10191. }
  10192. }
  10193. },
  10194. "label": {
  10195. "normal": {
  10196. "position": {
  10197. "$count": 6
  10198. },
  10199. "$count": 30,
  10200. "show": {
  10201. "$count": 10
  10202. },
  10203. "textStyle": {
  10204. "$count": 7,
  10205. "color": {
  10206. "$count": 1
  10207. }
  10208. }
  10209. },
  10210. "$count": 58,
  10211. "emphasis": {
  10212. "$count": 22,
  10213. "show": {
  10214. "$count": 1
  10215. },
  10216. "position": {
  10217. "$count": 2
  10218. },
  10219. "textStyle": {
  10220. "$count": 1
  10221. }
  10222. }
  10223. }
  10224. },
  10225. "markLine": {
  10226. "symbolSize": {
  10227. "$count": 1
  10228. }
  10229. },
  10230. "markPoint": {
  10231. "itemStyle": {
  10232. "$count": 1
  10233. },
  10234. "symbolRotate": {
  10235. "$count": 1
  10236. },
  10237. "$count": 2
  10238. }
  10239. },
  10240. "series-parallel": {
  10241. "$count": 792,
  10242. "type": {
  10243. "$count": 17
  10244. },
  10245. "coordinateSystem": {
  10246. "$count": 14
  10247. },
  10248. "lineStyle": {
  10249. "$count": 14,
  10250. "normal": {
  10251. "color": {
  10252. "$count": 2
  10253. },
  10254. "$count": 4,
  10255. "width": {
  10256. "$count": 2
  10257. }
  10258. },
  10259. "emphasis": {
  10260. "$count": 2,
  10261. "type": {
  10262. "$count": 1
  10263. },
  10264. "shadowBlur": {
  10265. "$count": 1
  10266. },
  10267. "shadowColor": {
  10268. "$count": 1
  10269. },
  10270. "opacity": {
  10271. "$count": 1
  10272. }
  10273. }
  10274. },
  10275. "animationEasing": {
  10276. "$count": 3
  10277. },
  10278. "data": {
  10279. "$count": 18,
  10280. "value": {
  10281. "$count": 6
  10282. },
  10283. "lineStyle": {
  10284. "$count": 4,
  10285. "width": {
  10286. "$count": 2
  10287. },
  10288. "type": {
  10289. "$count": 2
  10290. },
  10291. "shadowBlur": {
  10292. "$count": 1
  10293. },
  10294. "shadowColor": {
  10295. "$count": 1
  10296. },
  10297. "shadowOffsetY": {
  10298. "$count": 1
  10299. },
  10300. "opacity": {
  10301. "$count": 1
  10302. },
  10303. "emphasis": {
  10304. "$count": 3
  10305. },
  10306. "normal": {
  10307. "$count": 2
  10308. },
  10309. "color": {
  10310. "$count": 1
  10311. }
  10312. },
  10313. "name": {
  10314. "$count": 3
  10315. }
  10316. },
  10317. "animation": {
  10318. "$count": 3
  10319. },
  10320. "parallelIndex": {
  10321. "$count": 10
  10322. },
  10323. "name": {
  10324. "$count": 6
  10325. },
  10326. "inactiveOpacity": {
  10327. "$count": 5
  10328. },
  10329. "activeOpacity": {
  10330. "$count": 7
  10331. },
  10332. "animationDuration": {
  10333. "$count": 2
  10334. },
  10335. "animationDurationUpdate": {
  10336. "$count": 1
  10337. },
  10338. "animationEasingUpdate": {
  10339. "$count": 1
  10340. }
  10341. },
  10342. "series-sankey": {
  10343. "$count": 497,
  10344. "lineStyle": {
  10345. "$count": 11,
  10346. "normal": {
  10347. "color": {
  10348. "$count": 7
  10349. },
  10350. "opacity": {
  10351. "$count": 1
  10352. },
  10353. "shadowColor": {
  10354. "$count": 1
  10355. },
  10356. "shadowBlur": {
  10357. "$count": 1
  10358. },
  10359. "$count": 2
  10360. },
  10361. "emphasis": {
  10362. "$count": 2,
  10363. "color": {
  10364. "$count": 2
  10365. }
  10366. }
  10367. },
  10368. "itemStyle": {
  10369. "$count": 25,
  10370. "normal": {
  10371. "color": {
  10372. "$count": 19
  10373. },
  10374. "borderColor": {
  10375. "$count": 10
  10376. },
  10377. "borderWidth": {
  10378. "$count": 7
  10379. },
  10380. "shadowBlur": {
  10381. "$count": 6
  10382. },
  10383. "shadowColor": {
  10384. "$count": 4
  10385. },
  10386. "shadowOffsetX": {
  10387. "$count": 5
  10388. },
  10389. "shadowOffsetY": {
  10390. "$count": 3
  10391. },
  10392. "opacity": {
  10393. "$count": 8
  10394. },
  10395. "$count": 9
  10396. },
  10397. "emphasis": {
  10398. "$count": 8,
  10399. "borderColor": {
  10400. "$count": 1
  10401. },
  10402. "color": {
  10403. "$count": 3
  10404. }
  10405. }
  10406. },
  10407. "type": {
  10408. "$count": 15
  10409. },
  10410. "data": {
  10411. "$count": 45,
  10412. "value": {
  10413. "$count": 14
  10414. },
  10415. "name": {
  10416. "$count": 9
  10417. },
  10418. "itemStyle": {
  10419. "normal": {
  10420. "color": {
  10421. "$count": 15
  10422. },
  10423. "borderColor": {
  10424. "$count": 8
  10425. },
  10426. "borderWidth": {
  10427. "$count": 8
  10428. },
  10429. "shadowBlur": {
  10430. "$count": 4
  10431. },
  10432. "shadowColor": {
  10433. "$count": 4
  10434. },
  10435. "shadowOffsetX": {
  10436. "$count": 4
  10437. },
  10438. "shadowOffsetY": {
  10439. "$count": 2
  10440. },
  10441. "opacity": {
  10442. "$count": 2
  10443. },
  10444. "$count": 8
  10445. },
  10446. "$count": 16,
  10447. "emphasis": {
  10448. "color": {
  10449. "$count": 3
  10450. },
  10451. "borderColor": {
  10452. "$count": 2
  10453. },
  10454. "opacity": {
  10455. "$count": 2
  10456. },
  10457. "shadowOffsetY": {
  10458. "$count": 1
  10459. },
  10460. "shadowOffsetX": {
  10461. "$count": 1
  10462. },
  10463. "shadowBlur": {
  10464. "$count": 1
  10465. },
  10466. "borderWidth": {
  10467. "$count": 1
  10468. }
  10469. }
  10470. },
  10471. "label": {
  10472. "normal": {
  10473. "$count": 2,
  10474. "position": {
  10475. "$count": 2
  10476. },
  10477. "show": {
  10478. "$count": 1
  10479. },
  10480. "textStyle": {
  10481. "color": {
  10482. "$count": 2
  10483. },
  10484. "fontStyle": {
  10485. "$count": 1
  10486. }
  10487. }
  10488. },
  10489. "$count": 10
  10490. }
  10491. },
  10492. "top": {
  10493. "$count": 6
  10494. },
  10495. "layoutIterations": {
  10496. "$count": 24
  10497. },
  10498. "nodes": {
  10499. "$count": 34
  10500. },
  10501. "links": {
  10502. "$count": 35,
  10503. "lineStyle": {
  10504. "normal": {
  10505. "$count": 13,
  10506. "color": {
  10507. "$count": 22
  10508. },
  10509. "opacity": {
  10510. "$count": 9
  10511. },
  10512. "curveness": {
  10513. "$count": 5
  10514. },
  10515. "shadowBlur": {
  10516. "$count": 6
  10517. },
  10518. "shadowColor": {
  10519. "$count": 4
  10520. },
  10521. "shadowOffsetX": {
  10522. "$count": 3
  10523. },
  10524. "shadowOffsetY": {
  10525. "$count": 3
  10526. }
  10527. },
  10528. "emphasis": {
  10529. "$count": 7,
  10530. "color": {
  10531. "$count": 7
  10532. },
  10533. "opacity": {
  10534. "$count": 3
  10535. },
  10536. "curveness": {
  10537. "$count": 2
  10538. },
  10539. "shadowBlur": {
  10540. "$count": 1
  10541. }
  10542. },
  10543. "$count": 18
  10544. },
  10545. "value": {
  10546. "$count": 14
  10547. },
  10548. "source": {
  10549. "$count": 16
  10550. },
  10551. "target": {
  10552. "$count": 8
  10553. }
  10554. },
  10555. "label": {
  10556. "normal": {
  10557. "formatter": {
  10558. "$count": 7
  10559. },
  10560. "$count": 7,
  10561. "textStyle": {
  10562. "$count": 4,
  10563. "color": {
  10564. "$count": 3
  10565. }
  10566. },
  10567. "show": {
  10568. "$count": 2
  10569. },
  10570. "position": {
  10571. "$count": 3
  10572. }
  10573. },
  10574. "$count": 23,
  10575. "emphasis": {
  10576. "$count": 1
  10577. }
  10578. },
  10579. "nodeWidth": {
  10580. "$count": 14
  10581. },
  10582. "bottom": {
  10583. "$count": 4
  10584. },
  10585. "nodeGap": {
  10586. "$count": 13
  10587. },
  10588. "edges": {
  10589. "$count": 18
  10590. },
  10591. "right": {
  10592. "$count": 4
  10593. },
  10594. "left": {
  10595. "$count": 8
  10596. },
  10597. "width": {
  10598. "$count": 4
  10599. },
  10600. "height": {
  10601. "$count": 1
  10602. },
  10603. "z": {
  10604. "$count": 3
  10605. },
  10606. "zlevel": {
  10607. "$count": 4
  10608. },
  10609. "animation": {
  10610. "$count": 5
  10611. },
  10612. "animationDuration": {
  10613. "$count": 2
  10614. },
  10615. "animationEasing": {
  10616. "$count": 2
  10617. },
  10618. "animationDurationUpdate": {
  10619. "$count": 1
  10620. },
  10621. "animationEasingUpdate": {
  10622. "$count": 1
  10623. }
  10624. }
  10625. }