daily_report.cpt 299 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <WorkBook xmlVersion="20170720" releaseVersion="10.0.0">
  3. <TableDataMap>
  4. <TableData name="ds_register" class="com.fr.data.impl.DBTableData">
  5. <Parameters>
  6. <Parameter>
  7. <Attributes name="p_start_day"/>
  8. <O>
  9. <![CDATA[]]></O>
  10. </Parameter>
  11. <Parameter>
  12. <Attributes name="p_day"/>
  13. <O>
  14. <![CDATA[]]></O>
  15. </Parameter>
  16. </Parameters>
  17. <Attributes maxMemRowCount="-1"/>
  18. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  19. <DatabaseName>
  20. <![CDATA[dcp]]></DatabaseName>
  21. </Connection>
  22. <Query>
  23. <![CDATA[SELECT SUM(internal_number) AS internal_number, SUM(external_number) AS external_number,
  24. SUM(enterprise_number) AS enterprise_number, SUM(sum_number) AS sum_number, MAX(latest_number_all) AS latest_number_all,
  25. (select member_count from platform_count order by update_date desc limit 1) as member_count
  26. FROM platform_register_data_record
  27. WHERE
  28. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  29. AND
  30. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>='${p_start_day}']]></Query>
  31. <PageQuery>
  32. <![CDATA[]]></PageQuery>
  33. </TableData>
  34. <TableData name="ds_login" class="com.fr.data.impl.DBTableData">
  35. <Parameters>
  36. <Parameter>
  37. <Attributes name="p_day"/>
  38. <O>
  39. <![CDATA[2023-02-01]]></O>
  40. </Parameter>
  41. <Parameter>
  42. <Attributes name="p_start_day"/>
  43. <O>
  44. <![CDATA[2023-02-01]]></O>
  45. </Parameter>
  46. </Parameters>
  47. <Attributes maxMemRowCount="-1"/>
  48. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  49. <DatabaseName>
  50. <![CDATA[dcp]]></DatabaseName>
  51. </Connection>
  52. <Query>
  53. <![CDATA[SELECT SUM(internal_number) AS internal_number, SUM(external_number) AS external_number, SUM(total_number) AS total_number, MAX(total_number_all) AS total_number_all
  54. FROM platform_login_data_record
  55. WHERE
  56. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  57. AND
  58. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>='${p_start_day}'
  59. ]]></Query>
  60. <PageQuery>
  61. <![CDATA[]]></PageQuery>
  62. </TableData>
  63. <TableData name="ds_intervie" class="com.fr.data.impl.DBTableData">
  64. <Parameters>
  65. <Parameter>
  66. <Attributes name="p_day"/>
  67. <O>
  68. <![CDATA[2023-02-01]]></O>
  69. </Parameter>
  70. <Parameter>
  71. <Attributes name="p_start_day"/>
  72. <O>
  73. <![CDATA[2023-02-01]]></O>
  74. </Parameter>
  75. </Parameters>
  76. <Attributes maxMemRowCount="-1"/>
  77. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  78. <DatabaseName>
  79. <![CDATA[dcp]]></DatabaseName>
  80. </Connection>
  81. <Query>
  82. <![CDATA[SELECT SUM(register_number) AS register_number, SUM(unregister_number) AS unregister_number, SUM(total_number) AS total_number, MAX(total_number_all) AS total_number_all,
  83. (SELECT COUNT(*) AS viewcount
  84. FROM
  85. sys_log_extend sl
  86. WHERE
  87. (
  88. sl.request_uri LIKE '/baseProjectViews%'
  89. OR sl.request_uri LIKE '/baseCountryViews%'
  90. OR sl.request_uri LIKE '/baseUnitViews%'
  91. OR sl.request_uri LIKE '/baseMemberInfos%'
  92. OR sl.request_uri LIKE '/committeeInformationReleaseManagementInfos%'
  93. OR sl.request_uri LIKE '/baseResearchResultViews%'
  94. OR sl.request_uri LIKE '/cmsInformationViews%'
  95. OR sl.request_uri LIKE '/meetingBasicInfos%'
  96. OR sl.request_uri LIKE '/activityInfos%'
  97. OR sl.request_uri LIKE '/baseFinancialInstit%'
  98. OR sl.request_uri LIKE '/baseThinkTankInfos%'
  99. ) AND DATE_ADD(DATE_FORMAT(sl.create_date,'%y-%m-%d'),interval 1 day) <='${p_day}' AND DATE_ADD(DATE_FORMAT(sl.create_date,'%y-%m-%d'),interval 1 day) >='${p_start_day}'AND sl.country<>'中国' AND sl.country IS NOT NULL) AS view_count
  100. FROM platform_intervie_data_record
  101. WHERE
  102. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  103. AND
  104. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>='${p_start_day}'
  105. ]]></Query>
  106. <PageQuery>
  107. <![CDATA[]]></PageQuery>
  108. </TableData>
  109. <TableData name="ds_interview_type" class="com.fr.data.impl.DBTableData">
  110. <Parameters>
  111. <Parameter>
  112. <Attributes name="p_day"/>
  113. <O>
  114. <![CDATA[2021-07-05]]></O>
  115. </Parameter>
  116. <Parameter>
  117. <Attributes name="p_start_day"/>
  118. <O>
  119. <![CDATA[]]></O>
  120. </Parameter>
  121. </Parameters>
  122. <Attributes maxMemRowCount="-1"/>
  123. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  124. <DatabaseName>
  125. <![CDATA[dcp]]></DatabaseName>
  126. </Connection>
  127. <Query>
  128. <![CDATA[select p.*,p2.all_sum_number from (
  129. SELECT data_type, SUM(unregister_number) AS unregister_number, SUM(register_number) AS register_number, SUM(sum_number) AS sum_number, SUM(latest_number_all) AS latest_number_all
  130. FROM platform_interview_type_data_record
  131. WHERE
  132. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  133. AND
  134. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>='${p_start_day}'
  135. GROUP BY data_type
  136. ORDER BY CONVERT(sum_number,SIGNED) DESC) p,
  137. (SELECT data_type, SUM(sum_number) AS all_sum_number
  138. FROM platform_interview_type_data_record
  139. WHERE
  140. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='{p_day}'
  141. GROUP BY data_type)p2
  142. where p.data_type = p2.data_type]]></Query>
  143. <PageQuery>
  144. <![CDATA[]]></PageQuery>
  145. </TableData>
  146. <TableData name="ds_buisness_data_total" class="com.fr.data.impl.DBTableData">
  147. <Parameters>
  148. <Parameter>
  149. <Attributes name="p_day"/>
  150. <O>
  151. <![CDATA[2021-07-12]]></O>
  152. </Parameter>
  153. <Parameter>
  154. <Attributes name="p_start_day"/>
  155. <O>
  156. <![CDATA[]]></O>
  157. </Parameter>
  158. </Parameters>
  159. <Attributes maxMemRowCount="-1"/>
  160. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  161. <DatabaseName>
  162. <![CDATA[dcp]]></DatabaseName>
  163. </Connection>
  164. <Query>
  165. <![CDATA[SELECT SUM(update_number) AS one_update_number,SUM(update_number_all) AS update_number_all,
  166. (
  167. SELECT SUM(update_number)
  168. FROM platform_buisness_data_record
  169. WHERE records_time >= DATE_ADD(DATE_FORMAT('${p_start_day}',"%y-%m-%d"),interval -1 day) AND records_time <'${p_day}'
  170. ) AS any_update_number,
  171. (
  172. SELECT CONCAT(',其中',GROUP_CONCAT(CONCAT(data_name,update_number,'条'))) AS update_info
  173. FROM platform_buisness_data_record
  174. WHERE DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)='${p_day}'
  175. AND update_number>0
  176. GROUP BY records_time
  177. ) AS one_update_info,
  178. ( SELECT CONCAT(',其中',GROUP_CONCAT(CONCAT(data_name,update_number,'条'))) AS update_info
  179. FROM (select data_name , SUM(update_number) as update_number
  180. from platform_buisness_data_record
  181. where records_time >= DATE_ADD(DATE_FORMAT('${p_start_day}',"%y-%m-%d"),interval -1 day) AND records_time <'${p_day}'
  182. GROUP BY data_name) AS a
  183. WHERE update_number>0
  184. ) AS any_update_info
  185. FROM platform_buisness_data_record
  186. WHERE DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)='${p_day}']]></Query>
  187. <PageQuery>
  188. <![CDATA[]]></PageQuery>
  189. </TableData>
  190. <TableData name="ds_buisness_data" class="com.fr.data.impl.DBTableData">
  191. <Parameters>
  192. <Parameter>
  193. <Attributes name="p_day"/>
  194. <O>
  195. <![CDATA[2023-02-01]]></O>
  196. </Parameter>
  197. <Parameter>
  198. <Attributes name="p_start_day"/>
  199. <O>
  200. <![CDATA[2023-02-01]]></O>
  201. </Parameter>
  202. </Parameters>
  203. <Attributes maxMemRowCount="-1"/>
  204. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  205. <DatabaseName>
  206. <![CDATA[dcp]]></DatabaseName>
  207. </Connection>
  208. <Query>
  209. <![CDATA[SELECT d.dict_name,d.dict_description,(
  210. SELECT SUM(r1.update_number) AS update_number
  211. FROM platform_buisness_data_record r1
  212. WHERE
  213. DATE_ADD(DATE_FORMAT(r1.records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  214. AND
  215. DATE_ADD(DATE_FORMAT(r1.records_time,"%y-%m-%d"),interval 1 day)>='${p_start_day}'
  216. AND r1.data_name=d.dict_name
  217. ) AS update_number,(
  218. SELECT MAX(r1.update_number_all) AS update_number_all
  219. FROM platform_buisness_data_record r1
  220. WHERE
  221. DATE_ADD(DATE_FORMAT(r1.records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  222. AND
  223. DATE_ADD(DATE_FORMAT(r1.records_time,"%y-%m-%d"),interval 1 day)>='${p_start_day}'
  224. AND r1.data_name=d.dict_name
  225. ) AS update_number_all
  226. FROM sys_dict_misc d
  227. WHERE d.dict_type_code='INTERVIEW_TYPE_DATA' ORDER BY d.dict_disp_order
  228. ]]></Query>
  229. <PageQuery>
  230. <![CDATA[]]></PageQuery>
  231. </TableData>
  232. <TableData name="ds_register_chart1" class="com.fr.data.impl.DBTableData">
  233. <Parameters>
  234. <Parameter>
  235. <Attributes name="p_day"/>
  236. <O>
  237. <![CDATA[]]></O>
  238. </Parameter>
  239. </Parameters>
  240. <Attributes maxMemRowCount="-1"/>
  241. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  242. <DatabaseName>
  243. <![CDATA[dcp]]></DatabaseName>
  244. </Connection>
  245. <Query>
  246. <![CDATA[SELECT DATE_FORMAT(records_time,'%Y-%m-%d') AS '日期',
  247. SUM(internal_number) AS '内部用户', SUM(external_number) AS '外部用户',
  248. SUM(enterprise_number) AS '企业用户', SUM(sum_number) AS '日注册用户数'
  249. FROM platform_register_data_record
  250. WHERE
  251. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  252. AND
  253. DATE_FORMAT(records_time,'%Y-%m-%d')>='2022-01-01'
  254. AND sum_number > 0
  255. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  256. ORDER BY records_time]]></Query>
  257. <PageQuery>
  258. <![CDATA[]]></PageQuery>
  259. </TableData>
  260. <TableData name="ds_register_chart2" class="com.fr.data.impl.DBTableData">
  261. <Parameters>
  262. <Parameter>
  263. <Attributes name="p_day"/>
  264. <O>
  265. <![CDATA[]]></O>
  266. </Parameter>
  267. </Parameters>
  268. <Attributes maxMemRowCount="-1"/>
  269. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  270. <DatabaseName>
  271. <![CDATA[dcp]]></DatabaseName>
  272. </Connection>
  273. <Query>
  274. <![CDATA[SELECT DATE_FORMAT(records_time,'%Y-%m-%d') AS '日期',
  275. MAX(latest_number_all) AS '累计注册用户'
  276. FROM platform_register_data_record
  277. WHERE
  278. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  279. AND
  280. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>='2022-01-02'
  281. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  282. ORDER BY records_time]]></Query>
  283. <PageQuery>
  284. <![CDATA[]]></PageQuery>
  285. </TableData>
  286. <TableData name="ds_login_chart1" class="com.fr.data.impl.DBTableData">
  287. <Parameters>
  288. <Parameter>
  289. <Attributes name="p_day"/>
  290. <O>
  291. <![CDATA[]]></O>
  292. </Parameter>
  293. </Parameters>
  294. <Attributes maxMemRowCount="-1"/>
  295. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  296. <DatabaseName>
  297. <![CDATA[dcp]]></DatabaseName>
  298. </Connection>
  299. <Query>
  300. <![CDATA[SELECT CONCAT(DATE_FORMAT(records_time,'%Y-%m-%d'),CONVERT(CASE DAYOFWEEK(records_time)
  301. WHEN 1 THEN
  302. '星期天'
  303. WHEN 2 THEN
  304. '星期一'
  305. WHEN 3 THEN
  306. '星期二'
  307. WHEN 4 THEN
  308. '星期三'
  309. WHEN 5 THEN
  310. '星期四'
  311. WHEN 6 THEN
  312. '星期五'
  313. ELSE
  314. "星期六"
  315. END,CHAR))AS '日期',
  316. internal_number AS '内部用户', external_number AS '外部用户', total_number AS '内部及外部用户'
  317. FROM platform_login_data_record
  318. WHERE
  319. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  320. AND
  321. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>= DATE_SUB(DATE_FORMAT('${p_day}','%Y-%m-%d'), INTERVAL 6 DAY)
  322. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  323. ORDER BY records_time;]]></Query>
  324. <PageQuery>
  325. <![CDATA[]]></PageQuery>
  326. </TableData>
  327. <TableData name="ds_login_chart2" class="com.fr.data.impl.DBTableData">
  328. <Parameters>
  329. <Parameter>
  330. <Attributes name="p_day"/>
  331. <O>
  332. <![CDATA[]]></O>
  333. </Parameter>
  334. </Parameters>
  335. <Attributes maxMemRowCount="-1"/>
  336. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  337. <DatabaseName>
  338. <![CDATA[dcp]]></DatabaseName>
  339. </Connection>
  340. <Query>
  341. <![CDATA[SELECT DATE_FORMAT(records_time,'%Y-%m-%d') AS '日期',
  342. total_number_all AS '累计登录用户'
  343. FROM platform_login_data_record
  344. WHERE
  345. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  346. AND
  347. DATE_FORMAT(records_time,'%Y-%m-%d')>='2022-01-01'
  348. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  349. ORDER BY records_time]]></Query>
  350. <PageQuery>
  351. <![CDATA[]]></PageQuery>
  352. </TableData>
  353. <TableData name="ds_intervie_chart1" class="com.fr.data.impl.DBTableData">
  354. <Parameters>
  355. <Parameter>
  356. <Attributes name="p_day"/>
  357. <O>
  358. <![CDATA[2021-07-15]]></O>
  359. </Parameter>
  360. </Parameters>
  361. <Attributes maxMemRowCount="-1"/>
  362. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  363. <DatabaseName>
  364. <![CDATA[dcp]]></DatabaseName>
  365. </Connection>
  366. <Query>
  367. <![CDATA[ SELECT CONCAT(DATE_FORMAT(records_time,'%Y-%m-%d'),CONVERT(CASE DAYOFWEEK(records_time)
  368. WHEN 1 THEN
  369. '星期天'
  370. WHEN 2 THEN
  371. '星期一'
  372. WHEN 3 THEN
  373. '星期二'
  374. WHEN 4 THEN
  375. '星期三'
  376. WHEN 5 THEN
  377. '星期四'
  378. WHEN 6 THEN
  379. '星期五'
  380. ELSE
  381. "星期六"
  382. END,CHAR))AS '日期',
  383. register_number AS ' 注册用户', unregister_number AS '未注册用户', total_number AS '访问总次数'
  384. FROM platform_intervie_data_record
  385. WHERE
  386. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  387. AND
  388. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>= DATE_SUB(DATE_FORMAT('${p_day}','%Y-%m-%d'), INTERVAL 6 DAY)
  389. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  390. ORDER BY records_time
  391. ]]></Query>
  392. <PageQuery>
  393. <![CDATA[]]></PageQuery>
  394. </TableData>
  395. <TableData name="ds_intervie_chart2" class="com.fr.data.impl.DBTableData">
  396. <Parameters>
  397. <Parameter>
  398. <Attributes name="p_day"/>
  399. <O>
  400. <![CDATA[]]></O>
  401. </Parameter>
  402. </Parameters>
  403. <Attributes maxMemRowCount="-1"/>
  404. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  405. <DatabaseName>
  406. <![CDATA[dcp]]></DatabaseName>
  407. </Connection>
  408. <Query>
  409. <![CDATA[SELECT DATE_FORMAT(records_time,'%Y-%m-%d') AS '日期',
  410. total_number_all AS '累计访问次数'
  411. FROM platform_intervie_data_record
  412. WHERE
  413. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  414. AND
  415. DATE_FORMAT(records_time,'%Y-%m-%d')>='2022-01-01'
  416. ORDER BY records_time]]></Query>
  417. <PageQuery>
  418. <![CDATA[]]></PageQuery>
  419. </TableData>
  420. <TableData name="ds_buisness_data_chart2" class="com.fr.data.impl.DBTableData">
  421. <Parameters>
  422. <Parameter>
  423. <Attributes name="p_day"/>
  424. <O>
  425. <![CDATA[2021-07-14]]></O>
  426. </Parameter>
  427. </Parameters>
  428. <Attributes maxMemRowCount="-1"/>
  429. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  430. <DatabaseName>
  431. <![CDATA[dcp]]></DatabaseName>
  432. </Connection>
  433. <Query>
  434. <![CDATA[SELECT DATE_FORMAT(records_time,'%Y-%m-%d') AS '日期',
  435. SUM(update_number_all) AS '累计业务数据'
  436. FROM platform_buisness_data_record
  437. WHERE
  438. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  439. AND
  440. DATE_FORMAT(records_time,'%Y-%m-%d')>='2022-01-01'
  441. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  442. ORDER BY records_time
  443. ]]></Query>
  444. <PageQuery>
  445. <![CDATA[]]></PageQuery>
  446. </TableData>
  447. <TableData name="ds_intervie_chart_daily_trend" class="com.fr.data.impl.DBTableData">
  448. <Parameters>
  449. <Parameter>
  450. <Attributes name="p_day"/>
  451. <O>
  452. <![CDATA[]]></O>
  453. </Parameter>
  454. </Parameters>
  455. <Attributes maxMemRowCount="-1"/>
  456. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  457. <DatabaseName>
  458. <![CDATA[dcp]]></DatabaseName>
  459. </Connection>
  460. <Query>
  461. <![CDATA[ SELECT DATE_FORMAT(records_time,'%Y-%m-%d') AS '日期',
  462. register_number AS ' 注册用户', unregister_number AS '未注册用户', total_number AS '访问总次数'
  463. FROM platform_intervie_data_record
  464. WHERE
  465. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)<='${p_day}'
  466. AND
  467. DATE_ADD(DATE_FORMAT(records_time,"%y-%m-%d"),interval 1 day)>= DATE_FORMAT('2021-03-23','%Y-%m-%d')
  468. AND CAST(register_number AS SIGNED) > 50
  469. GROUP BY DATE_FORMAT(records_time,'%Y-%m-%d')
  470. ORDER BY records_time
  471. ]]></Query>
  472. <PageQuery>
  473. <![CDATA[]]></PageQuery>
  474. </TableData>
  475. <TableData name="ds_work_list" class="com.fr.data.impl.DBTableData">
  476. <Parameters>
  477. <Parameter>
  478. <Attributes name="p_start_day"/>
  479. <O>
  480. <![CDATA[2021-07-20]]></O>
  481. </Parameter>
  482. <Parameter>
  483. <Attributes name="p_day"/>
  484. <O>
  485. <![CDATA[2021-07-22]]></O>
  486. </Parameter>
  487. </Parameters>
  488. <Attributes maxMemRowCount="-1"/>
  489. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  490. <DatabaseName>
  491. <![CDATA[dcp]]></DatabaseName>
  492. </Connection>
  493. <Query>
  494. <![CDATA[SELECT temp.rownum, temp.cooperation, temp.message , temp.cooperation_dict, d.dict_value FROM (
  495. SELECT (@i:=@i+1) AS rownum, a.cooperation, a.message , a.cooperation_dict FROM (
  496. SELECT cooperation,GROUP_CONCAT(message,'') AS message,cooperation_dict
  497. FROM cooperation_bureau
  498. WHERE
  499. DATE_FORMAT(time,'%Y-%m-%d')<='${p_day}'
  500. AND
  501. DATE_FORMAT(time,'%Y-%m-%d')>='${p_start_day}'
  502. AND STATUS='1'
  503. GROUP BY cooperation,cooperation_dict
  504. ORDER BY cooperation_dict) a,(SELECT @i:=0) t2
  505. ORDER BY a.cooperation_dict
  506. ) temp , sys_dict_misc d
  507. WHERE temp.rownum = d.dict_name
  508. AND d.dict_type_code='CHARACTER_SORT_CN_DICT']]></Query>
  509. <PageQuery>
  510. <![CDATA[]]></PageQuery>
  511. </TableData>
  512. <TableData name="ds_register_login" class="com.fr.data.impl.DBTableData">
  513. <Parameters/>
  514. <Attributes maxMemRowCount="-1"/>
  515. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  516. <DatabaseName>
  517. <![CDATA[dcp]]></DatabaseName>
  518. </Connection>
  519. <Query>
  520. <![CDATA[SELECT u1.all_login_number,u2.vip_login_number,u3.enterprise_login_number,u4.internal_login_number,(u1.all_login_number - u2.vip_login_number - u3.enterprise_login_number - u4.internal_login_number)as external_login_number FROM (
  521. SELECT COUNT(1) as all_login_number FROM(SELECT uu.id FROM sys_log sl,ums_user uu WHERE sl.create_by = uu.id GROUP BY uu.id )p)u1,
  522. (SELECT COUNT(1) as vip_login_number FROM(SELECT uu.id FROM sys_log sl,ums_user uu WHERE sl.create_by = uu.id and uu.user_usertype = "会员用户" GROUP BY uu.id )p)u2,
  523. (SELECT COUNT(1) as enterprise_login_number FROM(SELECT uu.id FROM sys_log sl,ums_user uu WHERE sl.create_by = uu.id and uu.user_usertype = "企业注册用户" GROUP BY uu.id )p)u3,
  524. (SELECT COUNT(1) as internal_login_number FROM(SELECT uu.id FROM sys_log sl,ums_user uu WHERE sl.create_by = uu.id and uu. user_email LIKE "%@geidco.org" GROUP BY uu.id )p)u4]]></Query>
  525. <PageQuery>
  526. <![CDATA[]]></PageQuery>
  527. </TableData>
  528. </TableDataMap>
  529. <ReportExportAttr>
  530. <ExcelExportAttr hideColumn="false" hideRow="false"/>
  531. <PDFExportAttr/>
  532. <HTMLExportAttr/>
  533. <WordExportAttr WordTable="true"/>
  534. <ImageExportAttr imageResolution="200" imageType="false"/>
  535. </ReportExportAttr>
  536. <ElementCaseMobileAttr>
  537. <ElementCaseMobileAttrProvider horizontal="1" vertical="1" zoom="true" refresh="false" isUseHTML="false" isMobileCanvasSize="false" appearRefresh="false" allowFullScreen="false" allowDoubleClickOrZoom="true" functionalWhenUnactivated="false"/>
  538. </ElementCaseMobileAttr>
  539. <Report class="com.fr.report.worksheet.WorkSheet" name="sheet1">
  540. <ReportPageAttr>
  541. <HR/>
  542. <FR/>
  543. <HC/>
  544. <FC/>
  545. </ReportPageAttr>
  546. <ColumnPrivilegeControl/>
  547. <RowPrivilegeControl/>
  548. <RowHeight defaultValue="723900">
  549. <![CDATA[2209800,951840,72571,1411200,1411200,2286000,15840000,2160000,11952000,2160000,2286000,2286000,11952000,2160000,11520000,2160000,1411200,2286000,11520000,2160000,15120000,2160000,2286000,2286000,1872000,3429000,1872000,723900,1411200,2286000,11520000,2160000,11520000,2160000,2286000,2286000,2016000,1872000,1872000,723900,1411200,1411200,1143000,723900,723900,1104900,723900,723900,723900,2209800,2171700,2476500,723900,723900,723900,723900,723900,3771900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,723900,2286000,2362200,723900,723900,723900,15120000,2160000,723900]]></RowHeight>
  550. <ColumnWidth defaultValue="2743200">
  551. <![CDATA[2247900,0,3086100,1219200,2362200,1752600,3086100,3314700,3695700,2743200,2743200]]></ColumnWidth>
  552. <CellElementList>
  553. <C c="0" r="0" cs="9" s="0">
  554. <O>
  555. <![CDATA[发展合作平台运行日报]]></O>
  556. <PrivilegeControl/>
  557. <CellGUIAttr showAsHTML="true"/>
  558. <CellPageAttr/>
  559. <CellInsertPolicy/>
  560. <Expand/>
  561. </C>
  562. <C c="0" r="1" cs="3" s="1">
  563. <O t="XMLable" class="com.fr.base.Formula">
  564. <Attributes>
  565. <![CDATA[="第" + p_report_no + "期"]]></Attributes>
  566. </O>
  567. <PrivilegeControl/>
  568. <Expand/>
  569. </C>
  570. <C c="3" r="1" s="2">
  571. <PrivilegeControl/>
  572. <Expand/>
  573. </C>
  574. <C c="4" r="1" cs="5" s="3">
  575. <O t="XMLable" class="com.fr.base.Formula">
  576. <Attributes>
  577. <![CDATA[=YEAR($p_day) + "年" + MONTH($p_day) + "月" + DAY($p_day) + "日"]]></Attributes>
  578. </O>
  579. <PrivilegeControl/>
  580. <Expand/>
  581. </C>
  582. <C c="0" r="2" cs="9" s="4">
  583. <PrivilegeControl/>
  584. <Expand/>
  585. </C>
  586. <C c="0" r="3" cs="9" s="5">
  587. <O>
  588. <![CDATA[ 一、平台运行情况]]></O>
  589. <PrivilegeControl/>
  590. <Expand/>
  591. </C>
  592. <C c="0" r="4" cs="9" s="6">
  593. <O>
  594. <![CDATA[ (一)用户注册及登录情况]]></O>
  595. <PrivilegeControl/>
  596. <Expand/>
  597. </C>
  598. <C c="0" r="5" cs="9" s="7">
  599. <O t="DSColumn">
  600. <Attributes dsName="ds_register" columnName="sum_number"/>
  601. <Condition class="com.fr.data.condition.ListCondition"/>
  602. <Complex/>
  603. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  604. <Result>
  605. <![CDATA["<font style='font-weight:bold'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;1.用户注册。</font>"+ if($p_day_count > 1, MONTH(datedelta($p_start_day,-1)) + "月" + DAY(datedelta($p_start_day,-1)) + "日" + "至"+ MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日期间",( MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日")) +"新增注册用户"+sum_number+"个,当前平台累计注册用户数为"+latest_number_all+"个。"]]></Result>
  606. <Parameters/>
  607. </O>
  608. <PrivilegeControl/>
  609. <CellGUIAttr showAsHTML="true"/>
  610. <CellPageAttr/>
  611. <CellInsertPolicy/>
  612. <Expand dir="0"/>
  613. </C>
  614. <C c="0" r="6" cs="9">
  615. <O t="CC">
  616. <LayoutAttr selectedIndex="0"/>
  617. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  618. <TextAttr>
  619. <Attr alignText="0" predefinedStyle="false">
  620. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  621. </Attr>
  622. </TextAttr>
  623. </ChangeAttr>
  624. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  625. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  626. <GI>
  627. <AttrBackground>
  628. <Background name="NullBackground"/>
  629. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  630. </AttrBackground>
  631. <AttrBorder>
  632. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  633. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  634. </AttrBorder>
  635. <AttrAlpha>
  636. <Attr alpha="1.0"/>
  637. </AttrAlpha>
  638. </GI>
  639. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  640. <Title4VanChart>
  641. <Title>
  642. <GI>
  643. <AttrBackground>
  644. <Background name="NullBackground"/>
  645. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  646. </AttrBackground>
  647. <AttrBorder>
  648. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  649. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  650. </AttrBorder>
  651. <AttrAlpha>
  652. <Attr alpha="1.0"/>
  653. </AttrAlpha>
  654. </GI>
  655. <O>
  656. <![CDATA[新建图表标题]]></O>
  657. <TextAttr>
  658. <Attr alignText="0" predefinedStyle="false">
  659. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  660. </Attr>
  661. </TextAttr>
  662. <TitleVisible value="false" position="0"/>
  663. </Title>
  664. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  665. </Title4VanChart>
  666. <Plot class="com.fr.plugin.chart.custom.VanChartCustomPlot">
  667. <VanChartPlotVersion version="20170715"/>
  668. <GI>
  669. <AttrBackground>
  670. <Background name="NullBackground"/>
  671. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  672. </AttrBackground>
  673. <AttrBorder>
  674. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  675. <newColor/>
  676. </AttrBorder>
  677. <AttrAlpha>
  678. <Attr alpha="1.0"/>
  679. </AttrAlpha>
  680. </GI>
  681. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  682. <newHotTooltipStyle>
  683. <AttrContents>
  684. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  685. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  686. <![CDATA[#.##]]></Format>
  687. <PercentFormat>
  688. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  689. <![CDATA[#0.##%]]></Format>
  690. </PercentFormat>
  691. </AttrContents>
  692. </newHotTooltipStyle>
  693. <ConditionCollection>
  694. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  695. <ConditionAttr name=""/>
  696. </DefaultAttr>
  697. </ConditionCollection>
  698. <Legend4VanChart>
  699. <Legend>
  700. <GI>
  701. <AttrBackground>
  702. <Background name="NullBackground"/>
  703. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  704. </AttrBackground>
  705. <AttrBorder>
  706. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  707. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  708. </AttrBorder>
  709. <AttrAlpha>
  710. <Attr alpha="1.0"/>
  711. </AttrAlpha>
  712. </GI>
  713. <Attr position="3" visible="true" predefinedStyle="false"/>
  714. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  715. </Legend>
  716. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  717. </Legend4VanChart>
  718. <DataSheet>
  719. <GI>
  720. <AttrBackground>
  721. <Background name="NullBackground"/>
  722. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  723. </AttrBackground>
  724. <AttrBorder>
  725. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  726. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  727. </AttrBorder>
  728. <AttrAlpha>
  729. <Attr alpha="1.0"/>
  730. </AttrAlpha>
  731. </GI>
  732. <Attr isVisible="false" predefinedStyle="false"/>
  733. <FRFont name="宋体" style="0" size="72"/>
  734. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  735. <![CDATA[#.##]]></Format>
  736. </DataSheet>
  737. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  738. <newPlotFillStyle>
  739. <AttrFillStyle>
  740. <AFStyle colorStyle="1"/>
  741. <FillStyleName fillStyleName=""/>
  742. <isCustomFillStyle isCustomFillStyle="true"/>
  743. <PredefinedStyle predefinedStyle="false"/>
  744. <ColorList>
  745. <OColor colvalue="-16744620"/>
  746. <OColor colvalue="-9654529"/>
  747. <OColor colvalue="-26368"/>
  748. <OColor colvalue="-39373"/>
  749. <OColor colvalue="-3658447"/>
  750. <OColor colvalue="-10331231"/>
  751. <OColor colvalue="-7763575"/>
  752. <OColor colvalue="-6514688"/>
  753. <OColor colvalue="-16744620"/>
  754. <OColor colvalue="-6187579"/>
  755. <OColor colvalue="-15714713"/>
  756. <OColor colvalue="-945550"/>
  757. <OColor colvalue="-4092928"/>
  758. <OColor colvalue="-13224394"/>
  759. <OColor colvalue="-12423245"/>
  760. <OColor colvalue="-10043521"/>
  761. <OColor colvalue="-406154"/>
  762. <OColor colvalue="-13031292"/>
  763. <OColor colvalue="-16732559"/>
  764. <OColor colvalue="-7099690"/>
  765. <OColor colvalue="-11991199"/>
  766. <OColor colvalue="-331445"/>
  767. <OColor colvalue="-6991099"/>
  768. <OColor colvalue="-16686527"/>
  769. <OColor colvalue="-9205567"/>
  770. <OColor colvalue="-7397856"/>
  771. <OColor colvalue="-406154"/>
  772. <OColor colvalue="-2712831"/>
  773. <OColor colvalue="-4737097"/>
  774. <OColor colvalue="-11460720"/>
  775. <OColor colvalue="-6696775"/>
  776. <OColor colvalue="-3685632"/>
  777. </ColorList>
  778. </AttrFillStyle>
  779. </newPlotFillStyle>
  780. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  781. <GradientStyle>
  782. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  783. </GradientStyle>
  784. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  785. <XAxisList>
  786. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  787. <Title>
  788. <GI>
  789. <AttrBackground>
  790. <Background name="NullBackground"/>
  791. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  792. </AttrBackground>
  793. <AttrBorder>
  794. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  795. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  796. </AttrBorder>
  797. <AttrAlpha>
  798. <Attr alpha="1.0"/>
  799. </AttrAlpha>
  800. </GI>
  801. <O>
  802. <![CDATA[个]]></O>
  803. <TextAttr>
  804. <Attr alignText="0" predefinedStyle="false">
  805. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  806. </Attr>
  807. </TextAttr>
  808. <TitleVisible value="true" position="2"/>
  809. </Title>
  810. <newAxisAttr isShowAxisLabel="true"/>
  811. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  812. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  813. <AxisPosition value="3"/>
  814. <TickLine201106 type="2" secType="0"/>
  815. <ArrowShow arrowShow="false"/>
  816. <TextAttr>
  817. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  818. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  819. </Attr>
  820. </TextAttr>
  821. <Format class="com.fr.general.date.FineDateFormat">
  822. <![CDATA[yyyy-MM-dd]]></Format>
  823. <AxisLabelCount value="=5"/>
  824. <AxisRange/>
  825. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  826. <ZoomAxisAttr isZoom="false"/>
  827. <axisReversed axisReversed="false"/>
  828. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="false" gridLineType="solid"/>
  829. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  830. <alertList/>
  831. <customBackgroundList/>
  832. </VanChartAxis>
  833. </XAxisList>
  834. <YAxisList>
  835. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  836. <Title>
  837. <GI>
  838. <AttrBackground>
  839. <Background name="NullBackground"/>
  840. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  841. </AttrBackground>
  842. <AttrBorder>
  843. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  844. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  845. </AttrBorder>
  846. <AttrAlpha>
  847. <Attr alpha="1.0"/>
  848. </AttrAlpha>
  849. </GI>
  850. <O>
  851. <![CDATA[(个)]]></O>
  852. <TextAttr>
  853. <Attr alignText="0" predefinedStyle="false">
  854. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  855. </Attr>
  856. </TextAttr>
  857. <TitleVisible value="true" position="1"/>
  858. </Title>
  859. <newAxisAttr isShowAxisLabel="true"/>
  860. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  861. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  862. <AxisPosition value="2"/>
  863. <TickLine201106 type="2" secType="0"/>
  864. <ArrowShow arrowShow="false"/>
  865. <TextAttr>
  866. <Attr alignText="0" predefinedStyle="false">
  867. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  868. </Attr>
  869. </TextAttr>
  870. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  871. <![CDATA[#0]]></Format>
  872. <AxisLabelCount value="=1"/>
  873. <AxisRange minValue="=0"/>
  874. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  875. <ZoomAxisAttr isZoom="false"/>
  876. <axisReversed axisReversed="false"/>
  877. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  878. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  879. <alertList/>
  880. <customBackgroundList/>
  881. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  882. <ds>
  883. <RadarYAxisTableDefinition>
  884. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  885. <attr/>
  886. </RadarYAxisTableDefinition>
  887. </ds>
  888. </VanChartAxis>
  889. </YAxisList>
  890. <stackAndAxisCondition>
  891. <ConditionCollection>
  892. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  893. <ConditionAttr name=""/>
  894. </DefaultAttr>
  895. </ConditionCollection>
  896. </stackAndAxisCondition>
  897. <VanChartCustomPlotAttr customStyle="stack_column_line"/>
  898. <CustomPlotList>
  899. <VanChartPlot class="com.fr.plugin.chart.column.VanChartColumnPlot">
  900. <VanChartPlotVersion version="20170715"/>
  901. <GI>
  902. <AttrBackground>
  903. <Background name="NullBackground"/>
  904. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  905. </AttrBackground>
  906. <AttrBorder>
  907. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  908. <newColor/>
  909. </AttrBorder>
  910. <AttrAlpha>
  911. <Attr alpha="1.0"/>
  912. </AttrAlpha>
  913. </GI>
  914. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  915. <newHotTooltipStyle>
  916. <AttrContents>
  917. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  918. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  919. <![CDATA[#.##]]></Format>
  920. <PercentFormat>
  921. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  922. <![CDATA[#0.##%]]></Format>
  923. </PercentFormat>
  924. </AttrContents>
  925. </newHotTooltipStyle>
  926. <ConditionCollection>
  927. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  928. <ConditionAttr name="">
  929. <AttrList>
  930. <Attr class="com.fr.chart.base.AttrBorder">
  931. <AttrBorder>
  932. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  933. <newColor borderColor="-1" autoColor="false" predefinedStyle="false"/>
  934. </AttrBorder>
  935. </Attr>
  936. <Attr class="com.fr.chart.base.AttrAlpha">
  937. <AttrAlpha>
  938. <Attr alpha="1.0"/>
  939. </AttrAlpha>
  940. </Attr>
  941. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  942. <AttrTooltip>
  943. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  944. <TextAttr>
  945. <Attr alignText="0" predefinedStyle="false">
  946. <FRFont name="宋体" style="0" size="72"/>
  947. </Attr>
  948. </TextAttr>
  949. <AttrToolTipContent>
  950. <TextAttr>
  951. <Attr alignText="0" predefinedStyle="false">
  952. <FRFont name="宋体" style="0" size="72"/>
  953. </Attr>
  954. </TextAttr>
  955. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  956. <AttrTooltipRichText>
  957. <Attr content="" isAuto="true" initParamsContent=""/>
  958. <params>
  959. <![CDATA[{}]]></params>
  960. </AttrTooltipRichText>
  961. </richText>
  962. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  963. <AttrTooltipValueFormat>
  964. <Attr enable="true"/>
  965. </AttrTooltipValueFormat>
  966. </richTextValue>
  967. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  968. <AttrTooltipPercentFormat>
  969. <Attr enable="false"/>
  970. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  971. <![CDATA[#.##%]]></Format>
  972. </AttrTooltipPercentFormat>
  973. </richTextPercent>
  974. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  975. <AttrToolTipCategoryFormat>
  976. <Attr enable="true"/>
  977. </AttrToolTipCategoryFormat>
  978. </richTextCategory>
  979. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  980. <AttrTooltipSeriesFormat>
  981. <Attr enable="true"/>
  982. </AttrTooltipSeriesFormat>
  983. </richTextSeries>
  984. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  985. <AttrTooltipChangedPercentFormat>
  986. <Attr enable="false"/>
  987. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  988. <![CDATA[#.##%]]></Format>
  989. </AttrTooltipChangedPercentFormat>
  990. </richTextChangedPercent>
  991. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  992. <AttrTooltipChangedValueFormat>
  993. <Attr enable="false"/>
  994. </AttrTooltipChangedValueFormat>
  995. </richTextChangedValue>
  996. <TableFieldCollection/>
  997. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  998. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  999. <AttrTooltipValueFormat>
  1000. <Attr enable="true"/>
  1001. </AttrTooltipValueFormat>
  1002. </value>
  1003. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1004. <AttrTooltipPercentFormat>
  1005. <Attr enable="false"/>
  1006. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1007. <![CDATA[#.##%]]></Format>
  1008. </AttrTooltipPercentFormat>
  1009. </percent>
  1010. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1011. <AttrToolTipCategoryFormat>
  1012. <Attr enable="true"/>
  1013. </AttrToolTipCategoryFormat>
  1014. </category>
  1015. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1016. <AttrTooltipSeriesFormat>
  1017. <Attr enable="true"/>
  1018. </AttrTooltipSeriesFormat>
  1019. </series>
  1020. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1021. <AttrTooltipChangedPercentFormat>
  1022. <Attr enable="false"/>
  1023. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1024. <![CDATA[#.##%]]></Format>
  1025. </AttrTooltipChangedPercentFormat>
  1026. </changedPercent>
  1027. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1028. <AttrTooltipChangedValueFormat>
  1029. <Attr enable="false"/>
  1030. </AttrTooltipChangedValueFormat>
  1031. </changedValue>
  1032. <HtmlLabel customText="function(){ return this.category+this.seriesName+this.value;}" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1033. </AttrToolTipContent>
  1034. <GI>
  1035. <AttrBackground>
  1036. <Background name="ColorBackground" color="-16777216"/>
  1037. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  1038. </AttrBackground>
  1039. <AttrBorder>
  1040. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  1041. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1042. </AttrBorder>
  1043. <AttrAlpha>
  1044. <Attr alpha="0.5"/>
  1045. </AttrAlpha>
  1046. </GI>
  1047. </AttrTooltip>
  1048. </Attr>
  1049. </AttrList>
  1050. </ConditionAttr>
  1051. </DefaultAttr>
  1052. </ConditionCollection>
  1053. <Legend4VanChart>
  1054. <Legend>
  1055. <GI>
  1056. <AttrBackground>
  1057. <Background name="NullBackground"/>
  1058. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1059. </AttrBackground>
  1060. <AttrBorder>
  1061. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1062. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  1063. </AttrBorder>
  1064. <AttrAlpha>
  1065. <Attr alpha="1.0"/>
  1066. </AttrAlpha>
  1067. </GI>
  1068. <Attr position="4" visible="true" predefinedStyle="false"/>
  1069. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  1070. </Legend>
  1071. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  1072. </Legend4VanChart>
  1073. <DataSheet>
  1074. <GI>
  1075. <AttrBackground>
  1076. <Background name="NullBackground"/>
  1077. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1078. </AttrBackground>
  1079. <AttrBorder>
  1080. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  1081. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1082. </AttrBorder>
  1083. <AttrAlpha>
  1084. <Attr alpha="1.0"/>
  1085. </AttrAlpha>
  1086. </GI>
  1087. <Attr isVisible="false" predefinedStyle="false"/>
  1088. <FRFont name="宋体" style="0" size="72"/>
  1089. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1090. <![CDATA[#.##]]></Format>
  1091. </DataSheet>
  1092. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  1093. <newPlotFillStyle>
  1094. <AttrFillStyle>
  1095. <AFStyle colorStyle="1"/>
  1096. <FillStyleName fillStyleName="新特性"/>
  1097. <isCustomFillStyle isCustomFillStyle="false"/>
  1098. <PredefinedStyle predefinedStyle="false"/>
  1099. <ColorList>
  1100. <OColor colvalue="-10243346"/>
  1101. <OColor colvalue="-8988015"/>
  1102. <OColor colvalue="-472193"/>
  1103. <OColor colvalue="-486008"/>
  1104. <OColor colvalue="-8595761"/>
  1105. <OColor colvalue="-7236949"/>
  1106. <OColor colvalue="-8873759"/>
  1107. <OColor colvalue="-1071514"/>
  1108. <OColor colvalue="-1188474"/>
  1109. <OColor colvalue="-6715442"/>
  1110. <OColor colvalue="-10243346"/>
  1111. <OColor colvalue="-8988015"/>
  1112. <OColor colvalue="-472193"/>
  1113. <OColor colvalue="-486008"/>
  1114. <OColor colvalue="-8595761"/>
  1115. <OColor colvalue="-7236949"/>
  1116. <OColor colvalue="-8873759"/>
  1117. <OColor colvalue="-1071514"/>
  1118. <OColor colvalue="-1188474"/>
  1119. <OColor colvalue="-6715442"/>
  1120. <OColor colvalue="-10243346"/>
  1121. <OColor colvalue="-8988015"/>
  1122. <OColor colvalue="-472193"/>
  1123. <OColor colvalue="-486008"/>
  1124. <OColor colvalue="-8595761"/>
  1125. <OColor colvalue="-7236949"/>
  1126. <OColor colvalue="-8873759"/>
  1127. <OColor colvalue="-1071514"/>
  1128. <OColor colvalue="-1188474"/>
  1129. <OColor colvalue="-6715442"/>
  1130. <OColor colvalue="-10243346"/>
  1131. <OColor colvalue="-8988015"/>
  1132. </ColorList>
  1133. </AttrFillStyle>
  1134. </newPlotFillStyle>
  1135. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  1136. <GradientStyle>
  1137. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  1138. </GradientStyle>
  1139. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  1140. <XAxisList>
  1141. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  1142. <Title>
  1143. <GI>
  1144. <AttrBackground>
  1145. <Background name="NullBackground"/>
  1146. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1147. </AttrBackground>
  1148. <AttrBorder>
  1149. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1150. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1151. </AttrBorder>
  1152. <AttrAlpha>
  1153. <Attr alpha="1.0"/>
  1154. </AttrAlpha>
  1155. </GI>
  1156. <O>
  1157. <![CDATA[个]]></O>
  1158. <TextAttr>
  1159. <Attr alignText="0" predefinedStyle="false">
  1160. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1161. </Attr>
  1162. </TextAttr>
  1163. <TitleVisible value="true" position="2"/>
  1164. </Title>
  1165. <newAxisAttr isShowAxisLabel="true"/>
  1166. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  1167. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  1168. <AxisPosition value="3"/>
  1169. <TickLine201106 type="2" secType="0"/>
  1170. <ArrowShow arrowShow="false"/>
  1171. <TextAttr>
  1172. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  1173. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  1174. </Attr>
  1175. </TextAttr>
  1176. <Format class="com.fr.general.date.FineDateFormat">
  1177. <![CDATA[yyyy-MM-dd]]></Format>
  1178. <AxisLabelCount value="=5"/>
  1179. <AxisRange/>
  1180. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1181. <ZoomAxisAttr isZoom="false"/>
  1182. <axisReversed axisReversed="false"/>
  1183. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="false" gridLineType="solid"/>
  1184. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1185. <alertList/>
  1186. <customBackgroundList/>
  1187. </VanChartAxis>
  1188. </XAxisList>
  1189. <YAxisList>
  1190. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  1191. <Title>
  1192. <GI>
  1193. <AttrBackground>
  1194. <Background name="NullBackground"/>
  1195. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1196. </AttrBackground>
  1197. <AttrBorder>
  1198. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1199. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1200. </AttrBorder>
  1201. <AttrAlpha>
  1202. <Attr alpha="1.0"/>
  1203. </AttrAlpha>
  1204. </GI>
  1205. <O>
  1206. <![CDATA[(个)]]></O>
  1207. <TextAttr>
  1208. <Attr alignText="0" predefinedStyle="false">
  1209. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1210. </Attr>
  1211. </TextAttr>
  1212. <TitleVisible value="true" position="1"/>
  1213. </Title>
  1214. <newAxisAttr isShowAxisLabel="true"/>
  1215. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  1216. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  1217. <AxisPosition value="2"/>
  1218. <TickLine201106 type="2" secType="0"/>
  1219. <ArrowShow arrowShow="false"/>
  1220. <TextAttr>
  1221. <Attr alignText="0" predefinedStyle="false">
  1222. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  1223. </Attr>
  1224. </TextAttr>
  1225. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1226. <![CDATA[#0]]></Format>
  1227. <AxisLabelCount value="=1"/>
  1228. <AxisRange minValue="=0"/>
  1229. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1230. <ZoomAxisAttr isZoom="false"/>
  1231. <axisReversed axisReversed="false"/>
  1232. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  1233. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1234. <alertList/>
  1235. <customBackgroundList/>
  1236. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  1237. <ds>
  1238. <RadarYAxisTableDefinition>
  1239. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1240. <attr/>
  1241. </RadarYAxisTableDefinition>
  1242. </ds>
  1243. </VanChartAxis>
  1244. </YAxisList>
  1245. <stackAndAxisCondition>
  1246. <ConditionCollection>
  1247. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1248. <ConditionAttr name=""/>
  1249. </DefaultAttr>
  1250. <ConditionAttrList>
  1251. <List index="0">
  1252. <ConditionAttr name="堆积和坐标轴1">
  1253. <AttrList>
  1254. <Attr class="com.fr.plugin.chart.base.AttrSeriesStackAndAxis">
  1255. <AttrSeriesStackAndAxis>
  1256. <Attr xAxisIndex="0" yAxisIndex="0" stacked="true" percentStacked="false" stackID="堆积和坐标轴1"/>
  1257. </AttrSeriesStackAndAxis>
  1258. </Attr>
  1259. </AttrList>
  1260. <Condition class="com.fr.data.condition.ListCondition"/>
  1261. </ConditionAttr>
  1262. </List>
  1263. </ConditionAttrList>
  1264. </ConditionCollection>
  1265. </stackAndAxisCondition>
  1266. <VanChartColumnPlotAttr seriesOverlapPercent="20.0" categoryIntervalPercent="20.0" fixedWidth="false" columnWidth="0" filledWithImage="false" isBar="false"/>
  1267. </VanChartPlot>
  1268. <VanChartPlot class="com.fr.plugin.chart.line.VanChartLinePlot">
  1269. <VanChartPlotVersion version="20170715"/>
  1270. <GI>
  1271. <AttrBackground>
  1272. <Background name="NullBackground"/>
  1273. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1274. </AttrBackground>
  1275. <AttrBorder>
  1276. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1277. <newColor/>
  1278. </AttrBorder>
  1279. <AttrAlpha>
  1280. <Attr alpha="1.0"/>
  1281. </AttrAlpha>
  1282. </GI>
  1283. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  1284. <newHotTooltipStyle>
  1285. <AttrContents>
  1286. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  1287. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1288. <![CDATA[#.##]]></Format>
  1289. <PercentFormat>
  1290. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1291. <![CDATA[#0.##%]]></Format>
  1292. </PercentFormat>
  1293. </AttrContents>
  1294. </newHotTooltipStyle>
  1295. <ConditionCollection>
  1296. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1297. <ConditionAttr name="">
  1298. <AttrList>
  1299. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  1300. <AttrTooltip>
  1301. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  1302. <TextAttr>
  1303. <Attr alignText="0" predefinedStyle="false">
  1304. <FRFont name="宋体" style="0" size="72"/>
  1305. </Attr>
  1306. </TextAttr>
  1307. <AttrToolTipContent>
  1308. <TextAttr>
  1309. <Attr alignText="0" predefinedStyle="false">
  1310. <FRFont name="宋体" style="0" size="72"/>
  1311. </Attr>
  1312. </TextAttr>
  1313. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  1314. <AttrTooltipRichText>
  1315. <Attr content="" isAuto="true" initParamsContent=""/>
  1316. <params>
  1317. <![CDATA[{}]]></params>
  1318. </AttrTooltipRichText>
  1319. </richText>
  1320. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1321. <AttrTooltipValueFormat>
  1322. <Attr enable="true"/>
  1323. </AttrTooltipValueFormat>
  1324. </richTextValue>
  1325. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1326. <AttrTooltipPercentFormat>
  1327. <Attr enable="false"/>
  1328. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1329. <![CDATA[#.##%]]></Format>
  1330. </AttrTooltipPercentFormat>
  1331. </richTextPercent>
  1332. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1333. <AttrToolTipCategoryFormat>
  1334. <Attr enable="true"/>
  1335. </AttrToolTipCategoryFormat>
  1336. </richTextCategory>
  1337. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1338. <AttrTooltipSeriesFormat>
  1339. <Attr enable="true"/>
  1340. </AttrTooltipSeriesFormat>
  1341. </richTextSeries>
  1342. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1343. <AttrTooltipChangedPercentFormat>
  1344. <Attr enable="false"/>
  1345. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1346. <![CDATA[#.##%]]></Format>
  1347. </AttrTooltipChangedPercentFormat>
  1348. </richTextChangedPercent>
  1349. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1350. <AttrTooltipChangedValueFormat>
  1351. <Attr enable="false"/>
  1352. </AttrTooltipChangedValueFormat>
  1353. </richTextChangedValue>
  1354. <TableFieldCollection/>
  1355. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  1356. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1357. <AttrTooltipValueFormat>
  1358. <Attr enable="true"/>
  1359. </AttrTooltipValueFormat>
  1360. </value>
  1361. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1362. <AttrTooltipPercentFormat>
  1363. <Attr enable="false"/>
  1364. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1365. <![CDATA[#.##%]]></Format>
  1366. </AttrTooltipPercentFormat>
  1367. </percent>
  1368. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1369. <AttrToolTipCategoryFormat>
  1370. <Attr enable="true"/>
  1371. </AttrToolTipCategoryFormat>
  1372. </category>
  1373. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1374. <AttrTooltipSeriesFormat>
  1375. <Attr enable="true"/>
  1376. </AttrTooltipSeriesFormat>
  1377. </series>
  1378. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1379. <AttrTooltipChangedPercentFormat>
  1380. <Attr enable="false"/>
  1381. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1382. <![CDATA[#.##%]]></Format>
  1383. </AttrTooltipChangedPercentFormat>
  1384. </changedPercent>
  1385. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1386. <AttrTooltipChangedValueFormat>
  1387. <Attr enable="false"/>
  1388. </AttrTooltipChangedValueFormat>
  1389. </changedValue>
  1390. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1391. </AttrToolTipContent>
  1392. <GI>
  1393. <AttrBackground>
  1394. <Background name="ColorBackground" color="-16777216"/>
  1395. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  1396. </AttrBackground>
  1397. <AttrBorder>
  1398. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  1399. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1400. </AttrBorder>
  1401. <AttrAlpha>
  1402. <Attr alpha="0.5"/>
  1403. </AttrAlpha>
  1404. </GI>
  1405. </AttrTooltip>
  1406. </Attr>
  1407. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  1408. <VanAttrLine>
  1409. <Attr lineType="solid" lineWidth="2.0" lineStyle="2" nullValueBreak="true"/>
  1410. </VanAttrLine>
  1411. </Attr>
  1412. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  1413. <VanAttrMarker>
  1414. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="4.5" width="30.0" height="30.0"/>
  1415. <Background name="NullBackground"/>
  1416. </VanAttrMarker>
  1417. </Attr>
  1418. </AttrList>
  1419. </ConditionAttr>
  1420. </DefaultAttr>
  1421. </ConditionCollection>
  1422. <Legend4VanChart>
  1423. <Legend>
  1424. <GI>
  1425. <AttrBackground>
  1426. <Background name="NullBackground"/>
  1427. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1428. </AttrBackground>
  1429. <AttrBorder>
  1430. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1431. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  1432. </AttrBorder>
  1433. <AttrAlpha>
  1434. <Attr alpha="1.0"/>
  1435. </AttrAlpha>
  1436. </GI>
  1437. <Attr position="4" visible="true" predefinedStyle="false"/>
  1438. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  1439. </Legend>
  1440. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  1441. </Legend4VanChart>
  1442. <DataSheet>
  1443. <GI>
  1444. <AttrBackground>
  1445. <Background name="NullBackground"/>
  1446. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1447. </AttrBackground>
  1448. <AttrBorder>
  1449. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  1450. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1451. </AttrBorder>
  1452. <AttrAlpha>
  1453. <Attr alpha="1.0"/>
  1454. </AttrAlpha>
  1455. </GI>
  1456. <Attr isVisible="false" predefinedStyle="false"/>
  1457. <FRFont name="宋体" style="0" size="72"/>
  1458. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1459. <![CDATA[#.##]]></Format>
  1460. </DataSheet>
  1461. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  1462. <newPlotFillStyle>
  1463. <AttrFillStyle>
  1464. <AFStyle colorStyle="1"/>
  1465. <FillStyleName fillStyleName="新特性"/>
  1466. <isCustomFillStyle isCustomFillStyle="false"/>
  1467. <PredefinedStyle predefinedStyle="false"/>
  1468. <ColorList>
  1469. <OColor colvalue="-10243346"/>
  1470. <OColor colvalue="-8988015"/>
  1471. <OColor colvalue="-472193"/>
  1472. <OColor colvalue="-486008"/>
  1473. <OColor colvalue="-8595761"/>
  1474. <OColor colvalue="-7236949"/>
  1475. <OColor colvalue="-8873759"/>
  1476. <OColor colvalue="-1071514"/>
  1477. <OColor colvalue="-1188474"/>
  1478. <OColor colvalue="-6715442"/>
  1479. <OColor colvalue="-10243346"/>
  1480. <OColor colvalue="-8988015"/>
  1481. <OColor colvalue="-472193"/>
  1482. <OColor colvalue="-486008"/>
  1483. <OColor colvalue="-8595761"/>
  1484. <OColor colvalue="-7236949"/>
  1485. <OColor colvalue="-8873759"/>
  1486. <OColor colvalue="-1071514"/>
  1487. <OColor colvalue="-1188474"/>
  1488. <OColor colvalue="-6715442"/>
  1489. <OColor colvalue="-10243346"/>
  1490. <OColor colvalue="-8988015"/>
  1491. <OColor colvalue="-472193"/>
  1492. <OColor colvalue="-486008"/>
  1493. <OColor colvalue="-8595761"/>
  1494. <OColor colvalue="-7236949"/>
  1495. <OColor colvalue="-8873759"/>
  1496. <OColor colvalue="-1071514"/>
  1497. <OColor colvalue="-1188474"/>
  1498. <OColor colvalue="-6715442"/>
  1499. <OColor colvalue="-10243346"/>
  1500. <OColor colvalue="-8988015"/>
  1501. </ColorList>
  1502. </AttrFillStyle>
  1503. </newPlotFillStyle>
  1504. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  1505. <GradientStyle>
  1506. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  1507. </GradientStyle>
  1508. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  1509. <XAxisList>
  1510. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  1511. <Title>
  1512. <GI>
  1513. <AttrBackground>
  1514. <Background name="NullBackground"/>
  1515. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1516. </AttrBackground>
  1517. <AttrBorder>
  1518. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1519. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1520. </AttrBorder>
  1521. <AttrAlpha>
  1522. <Attr alpha="1.0"/>
  1523. </AttrAlpha>
  1524. </GI>
  1525. <O>
  1526. <![CDATA[个]]></O>
  1527. <TextAttr>
  1528. <Attr alignText="0" predefinedStyle="false">
  1529. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1530. </Attr>
  1531. </TextAttr>
  1532. <TitleVisible value="true" position="2"/>
  1533. </Title>
  1534. <newAxisAttr isShowAxisLabel="true"/>
  1535. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  1536. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  1537. <AxisPosition value="3"/>
  1538. <TickLine201106 type="2" secType="0"/>
  1539. <ArrowShow arrowShow="false"/>
  1540. <TextAttr>
  1541. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  1542. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  1543. </Attr>
  1544. </TextAttr>
  1545. <Format class="com.fr.general.date.FineDateFormat">
  1546. <![CDATA[yyyy-MM-dd]]></Format>
  1547. <AxisLabelCount value="=5"/>
  1548. <AxisRange/>
  1549. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1550. <ZoomAxisAttr isZoom="false"/>
  1551. <axisReversed axisReversed="false"/>
  1552. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="false" gridLineType="solid"/>
  1553. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1554. <alertList/>
  1555. <customBackgroundList/>
  1556. </VanChartAxis>
  1557. </XAxisList>
  1558. <YAxisList>
  1559. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  1560. <Title>
  1561. <GI>
  1562. <AttrBackground>
  1563. <Background name="NullBackground"/>
  1564. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1565. </AttrBackground>
  1566. <AttrBorder>
  1567. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1568. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1569. </AttrBorder>
  1570. <AttrAlpha>
  1571. <Attr alpha="1.0"/>
  1572. </AttrAlpha>
  1573. </GI>
  1574. <O>
  1575. <![CDATA[(个)]]></O>
  1576. <TextAttr>
  1577. <Attr alignText="0" predefinedStyle="false">
  1578. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1579. </Attr>
  1580. </TextAttr>
  1581. <TitleVisible value="true" position="1"/>
  1582. </Title>
  1583. <newAxisAttr isShowAxisLabel="true"/>
  1584. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  1585. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  1586. <AxisPosition value="2"/>
  1587. <TickLine201106 type="2" secType="0"/>
  1588. <ArrowShow arrowShow="false"/>
  1589. <TextAttr>
  1590. <Attr alignText="0" predefinedStyle="false">
  1591. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  1592. </Attr>
  1593. </TextAttr>
  1594. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1595. <![CDATA[#0]]></Format>
  1596. <AxisLabelCount value="=1"/>
  1597. <AxisRange minValue="=0"/>
  1598. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1599. <ZoomAxisAttr isZoom="false"/>
  1600. <axisReversed axisReversed="false"/>
  1601. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  1602. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1603. <alertList/>
  1604. <customBackgroundList/>
  1605. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  1606. <ds>
  1607. <RadarYAxisTableDefinition>
  1608. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1609. <attr/>
  1610. </RadarYAxisTableDefinition>
  1611. </ds>
  1612. </VanChartAxis>
  1613. </YAxisList>
  1614. <stackAndAxisCondition>
  1615. <ConditionCollection>
  1616. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1617. <ConditionAttr name=""/>
  1618. </DefaultAttr>
  1619. </ConditionCollection>
  1620. </stackAndAxisCondition>
  1621. </VanChartPlot>
  1622. </CustomPlotList>
  1623. </Plot>
  1624. <ChartDefinition>
  1625. <CustomDefinition>
  1626. <DefinitionMapList>
  1627. <DefinitionMap key="column">
  1628. <MoreNameCDDefinition>
  1629. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1630. <TableData class="com.fr.data.impl.NameTableData">
  1631. <Name>
  1632. <![CDATA[ds_register_chart1]]></Name>
  1633. </TableData>
  1634. <CategoryName value="日期"/>
  1635. <ChartSummaryColumn name="内部用户" function="com.fr.data.util.function.NoneFunction" customName="内部用户"/>
  1636. <ChartSummaryColumn name="外部用户" function="com.fr.data.util.function.NoneFunction" customName="外部用户"/>
  1637. <ChartSummaryColumn name="企业用户" function="com.fr.data.util.function.NoneFunction" customName="企业用户"/>
  1638. </MoreNameCDDefinition>
  1639. </DefinitionMap>
  1640. <DefinitionMap key="line">
  1641. <MoreNameCDDefinition>
  1642. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1643. <TableData class="com.fr.data.impl.NameTableData">
  1644. <Name>
  1645. <![CDATA[ds_register_chart1]]></Name>
  1646. </TableData>
  1647. <CategoryName value="日期"/>
  1648. <ChartSummaryColumn name="日注册用户数" function="com.fr.data.util.function.NoneFunction" customName="日注册用户数"/>
  1649. </MoreNameCDDefinition>
  1650. </DefinitionMap>
  1651. </DefinitionMapList>
  1652. </CustomDefinition>
  1653. </ChartDefinition>
  1654. </Chart>
  1655. <UUID uuid="50ea86f6-d945-49d8-95c0-d037b1da42f1"/>
  1656. <tools hidden="true" sort="false" export="true" fullScreen="true"/>
  1657. <VanChartZoom>
  1658. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  1659. <from>
  1660. <![CDATA[]]></from>
  1661. <to>
  1662. <![CDATA[]]></to>
  1663. </VanChartZoom>
  1664. <refreshMoreLabel>
  1665. <attr moreLabel="false" autoTooltip="true"/>
  1666. <AttrTooltip>
  1667. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  1668. <TextAttr>
  1669. <Attr alignText="0" predefinedStyle="false">
  1670. <FRFont name="SimSun" style="0" size="72"/>
  1671. </Attr>
  1672. </TextAttr>
  1673. <AttrToolTipContent>
  1674. <TextAttr>
  1675. <Attr alignText="0" predefinedStyle="false">
  1676. <FRFont name="SimSun" style="0" size="72"/>
  1677. </Attr>
  1678. </TextAttr>
  1679. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  1680. <AttrTooltipRichText>
  1681. <Attr content="" isAuto="true" initParamsContent=""/>
  1682. <params>
  1683. <![CDATA[{}]]></params>
  1684. </AttrTooltipRichText>
  1685. </richText>
  1686. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1687. <AttrTooltipValueFormat>
  1688. <Attr enable="true"/>
  1689. </AttrTooltipValueFormat>
  1690. </richTextValue>
  1691. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1692. <AttrTooltipPercentFormat>
  1693. <Attr enable="false"/>
  1694. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1695. <![CDATA[#.##%]]></Format>
  1696. </AttrTooltipPercentFormat>
  1697. </richTextPercent>
  1698. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1699. <AttrToolTipCategoryFormat>
  1700. <Attr enable="false"/>
  1701. </AttrToolTipCategoryFormat>
  1702. </richTextCategory>
  1703. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1704. <AttrTooltipSeriesFormat>
  1705. <Attr enable="false"/>
  1706. </AttrTooltipSeriesFormat>
  1707. </richTextSeries>
  1708. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1709. <AttrTooltipChangedPercentFormat>
  1710. <Attr enable="false"/>
  1711. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1712. <![CDATA[#.##%]]></Format>
  1713. </AttrTooltipChangedPercentFormat>
  1714. </richTextChangedPercent>
  1715. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1716. <AttrTooltipChangedValueFormat>
  1717. <Attr enable="false"/>
  1718. </AttrTooltipChangedValueFormat>
  1719. </richTextChangedValue>
  1720. <TableFieldCollection/>
  1721. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  1722. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1723. <AttrTooltipValueFormat>
  1724. <Attr enable="true"/>
  1725. </AttrTooltipValueFormat>
  1726. </value>
  1727. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1728. <AttrTooltipPercentFormat>
  1729. <Attr enable="false"/>
  1730. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1731. <![CDATA[#.##%]]></Format>
  1732. </AttrTooltipPercentFormat>
  1733. </percent>
  1734. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1735. <AttrToolTipCategoryFormat>
  1736. <Attr enable="true"/>
  1737. </AttrToolTipCategoryFormat>
  1738. </category>
  1739. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1740. <AttrTooltipSeriesFormat>
  1741. <Attr enable="true"/>
  1742. </AttrTooltipSeriesFormat>
  1743. </series>
  1744. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1745. <AttrTooltipChangedPercentFormat>
  1746. <Attr enable="false"/>
  1747. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1748. <![CDATA[#.##%]]></Format>
  1749. </AttrTooltipChangedPercentFormat>
  1750. </changedPercent>
  1751. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1752. <AttrTooltipChangedValueFormat>
  1753. <Attr enable="true"/>
  1754. </AttrTooltipChangedValueFormat>
  1755. </changedValue>
  1756. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1757. </AttrToolTipContent>
  1758. <GI>
  1759. <AttrBackground>
  1760. <Background name="ColorBackground" color="-1"/>
  1761. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1762. </AttrBackground>
  1763. <AttrBorder>
  1764. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  1765. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  1766. </AttrBorder>
  1767. <AttrAlpha>
  1768. <Attr alpha="0.8"/>
  1769. </AttrAlpha>
  1770. </GI>
  1771. </AttrTooltip>
  1772. </refreshMoreLabel>
  1773. <ThemeAttr>
  1774. <Attr darkTheme="false" predefinedStyle="false"/>
  1775. </ThemeAttr>
  1776. </Chart>
  1777. </O>
  1778. <PrivilegeControl/>
  1779. <Expand/>
  1780. </C>
  1781. <C c="0" r="7" cs="9" s="8">
  1782. <O>
  1783. <![CDATA[图1.用户注册日统计]]></O>
  1784. <PrivilegeControl/>
  1785. <CellGUIAttr showAsHTML="true"/>
  1786. <CellPageAttr/>
  1787. <CellInsertPolicy/>
  1788. <Expand dir="0"/>
  1789. </C>
  1790. <C c="0" r="8" cs="9">
  1791. <O t="CC">
  1792. <LayoutAttr selectedIndex="0"/>
  1793. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  1794. <TextAttr>
  1795. <Attr alignText="0" predefinedStyle="false">
  1796. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  1797. </Attr>
  1798. </TextAttr>
  1799. </ChangeAttr>
  1800. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  1801. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  1802. <GI>
  1803. <AttrBackground>
  1804. <Background name="NullBackground"/>
  1805. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1806. </AttrBackground>
  1807. <AttrBorder>
  1808. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  1809. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  1810. </AttrBorder>
  1811. <AttrAlpha>
  1812. <Attr alpha="1.0"/>
  1813. </AttrAlpha>
  1814. </GI>
  1815. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  1816. <Title4VanChart>
  1817. <Title>
  1818. <GI>
  1819. <AttrBackground>
  1820. <Background name="NullBackground"/>
  1821. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1822. </AttrBackground>
  1823. <AttrBorder>
  1824. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1825. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  1826. </AttrBorder>
  1827. <AttrAlpha>
  1828. <Attr alpha="1.0"/>
  1829. </AttrAlpha>
  1830. </GI>
  1831. <O>
  1832. <![CDATA[新建图表标题]]></O>
  1833. <TextAttr>
  1834. <Attr alignText="0" predefinedStyle="false">
  1835. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  1836. </Attr>
  1837. </TextAttr>
  1838. <TitleVisible value="false" position="0"/>
  1839. </Title>
  1840. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  1841. </Title4VanChart>
  1842. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  1843. <VanChartPlotVersion version="20170715"/>
  1844. <GI>
  1845. <AttrBackground>
  1846. <Background name="NullBackground"/>
  1847. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1848. </AttrBackground>
  1849. <AttrBorder>
  1850. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1851. <newColor/>
  1852. </AttrBorder>
  1853. <AttrAlpha>
  1854. <Attr alpha="1.0"/>
  1855. </AttrAlpha>
  1856. </GI>
  1857. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  1858. <newHotTooltipStyle>
  1859. <AttrContents>
  1860. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  1861. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1862. <![CDATA[#.##]]></Format>
  1863. <PercentFormat>
  1864. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1865. <![CDATA[#0.##%]]></Format>
  1866. </PercentFormat>
  1867. </AttrContents>
  1868. </newHotTooltipStyle>
  1869. <ConditionCollection>
  1870. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1871. <ConditionAttr name="">
  1872. <AttrList>
  1873. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  1874. <AttrTooltip>
  1875. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  1876. <TextAttr>
  1877. <Attr alignText="0" predefinedStyle="false">
  1878. <FRFont name="SimSun" style="0" size="72"/>
  1879. </Attr>
  1880. </TextAttr>
  1881. <AttrToolTipContent>
  1882. <TextAttr>
  1883. <Attr alignText="0" predefinedStyle="false">
  1884. <FRFont name="SimSun" style="0" size="72"/>
  1885. </Attr>
  1886. </TextAttr>
  1887. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  1888. <AttrTooltipRichText>
  1889. <Attr content="" isAuto="true" initParamsContent=""/>
  1890. <params>
  1891. <![CDATA[{}]]></params>
  1892. </AttrTooltipRichText>
  1893. </richText>
  1894. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1895. <AttrTooltipValueFormat>
  1896. <Attr enable="true"/>
  1897. </AttrTooltipValueFormat>
  1898. </richTextValue>
  1899. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1900. <AttrTooltipPercentFormat>
  1901. <Attr enable="false"/>
  1902. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1903. <![CDATA[#.##%]]></Format>
  1904. </AttrTooltipPercentFormat>
  1905. </richTextPercent>
  1906. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1907. <AttrToolTipCategoryFormat>
  1908. <Attr enable="true"/>
  1909. </AttrToolTipCategoryFormat>
  1910. </richTextCategory>
  1911. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1912. <AttrTooltipSeriesFormat>
  1913. <Attr enable="true"/>
  1914. </AttrTooltipSeriesFormat>
  1915. </richTextSeries>
  1916. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1917. <AttrTooltipChangedPercentFormat>
  1918. <Attr enable="false"/>
  1919. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1920. <![CDATA[#.##%]]></Format>
  1921. </AttrTooltipChangedPercentFormat>
  1922. </richTextChangedPercent>
  1923. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1924. <AttrTooltipChangedValueFormat>
  1925. <Attr enable="false"/>
  1926. </AttrTooltipChangedValueFormat>
  1927. </richTextChangedValue>
  1928. <TableFieldCollection/>
  1929. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  1930. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1931. <AttrTooltipValueFormat>
  1932. <Attr enable="true"/>
  1933. </AttrTooltipValueFormat>
  1934. </value>
  1935. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1936. <AttrTooltipPercentFormat>
  1937. <Attr enable="false"/>
  1938. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1939. <![CDATA[#.##%]]></Format>
  1940. </AttrTooltipPercentFormat>
  1941. </percent>
  1942. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1943. <AttrToolTipCategoryFormat>
  1944. <Attr enable="true"/>
  1945. </AttrToolTipCategoryFormat>
  1946. </category>
  1947. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1948. <AttrTooltipSeriesFormat>
  1949. <Attr enable="true"/>
  1950. </AttrTooltipSeriesFormat>
  1951. </series>
  1952. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1953. <AttrTooltipChangedPercentFormat>
  1954. <Attr enable="false"/>
  1955. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1956. <![CDATA[#.##%]]></Format>
  1957. </AttrTooltipChangedPercentFormat>
  1958. </changedPercent>
  1959. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1960. <AttrTooltipChangedValueFormat>
  1961. <Attr enable="false"/>
  1962. </AttrTooltipChangedValueFormat>
  1963. </changedValue>
  1964. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1965. </AttrToolTipContent>
  1966. <GI>
  1967. <AttrBackground>
  1968. <Background name="ColorBackground" color="-16777216"/>
  1969. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  1970. </AttrBackground>
  1971. <AttrBorder>
  1972. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  1973. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1974. </AttrBorder>
  1975. <AttrAlpha>
  1976. <Attr alpha="0.5"/>
  1977. </AttrAlpha>
  1978. </GI>
  1979. </AttrTooltip>
  1980. </Attr>
  1981. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  1982. <VanAttrLine>
  1983. <Attr lineType="solid" lineWidth="2.0" lineStyle="2" nullValueBreak="true"/>
  1984. </VanAttrLine>
  1985. </Attr>
  1986. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  1987. <VanAttrMarker>
  1988. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="3.5" width="30.0" height="30.0"/>
  1989. <Background name="NullBackground"/>
  1990. </VanAttrMarker>
  1991. </Attr>
  1992. </AttrList>
  1993. </ConditionAttr>
  1994. </DefaultAttr>
  1995. </ConditionCollection>
  1996. <Legend4VanChart>
  1997. <Legend>
  1998. <GI>
  1999. <AttrBackground>
  2000. <Background name="NullBackground"/>
  2001. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2002. </AttrBackground>
  2003. <AttrBorder>
  2004. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2005. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  2006. </AttrBorder>
  2007. <AttrAlpha>
  2008. <Attr alpha="1.0"/>
  2009. </AttrAlpha>
  2010. </GI>
  2011. <Attr position="3" visible="true" predefinedStyle="false"/>
  2012. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  2013. </Legend>
  2014. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  2015. </Legend4VanChart>
  2016. <DataSheet>
  2017. <GI>
  2018. <AttrBackground>
  2019. <Background name="NullBackground"/>
  2020. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2021. </AttrBackground>
  2022. <AttrBorder>
  2023. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  2024. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2025. </AttrBorder>
  2026. <AttrAlpha>
  2027. <Attr alpha="1.0"/>
  2028. </AttrAlpha>
  2029. </GI>
  2030. <Attr isVisible="false" predefinedStyle="false"/>
  2031. <FRFont name="SimSun" style="0" size="72"/>
  2032. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2033. <![CDATA[#.##]]></Format>
  2034. </DataSheet>
  2035. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  2036. <newPlotFillStyle>
  2037. <AttrFillStyle>
  2038. <AFStyle colorStyle="1"/>
  2039. <FillStyleName fillStyleName=""/>
  2040. <isCustomFillStyle isCustomFillStyle="true"/>
  2041. <PredefinedStyle predefinedStyle="false"/>
  2042. <ColorList>
  2043. <OColor colvalue="-39373"/>
  2044. <OColor colvalue="-39373"/>
  2045. <OColor colvalue="-375997"/>
  2046. <OColor colvalue="-15290420"/>
  2047. <OColor colvalue="-8011743"/>
  2048. <OColor colvalue="-3069334"/>
  2049. <OColor colvalue="-15830324"/>
  2050. <OColor colvalue="-9657585"/>
  2051. <OColor colvalue="-375997"/>
  2052. <OColor colvalue="-15290420"/>
  2053. <OColor colvalue="-8011743"/>
  2054. <OColor colvalue="-3069334"/>
  2055. <OColor colvalue="-236032"/>
  2056. <OColor colvalue="-9657585"/>
  2057. <OColor colvalue="-683247"/>
  2058. <OColor colvalue="-375997"/>
  2059. <OColor colvalue="-15290420"/>
  2060. <OColor colvalue="-8011743"/>
  2061. <OColor colvalue="-3069334"/>
  2062. <OColor colvalue="-15830324"/>
  2063. <OColor colvalue="-9657585"/>
  2064. <OColor colvalue="-683247"/>
  2065. <OColor colvalue="-375997"/>
  2066. <OColor colvalue="-236032"/>
  2067. <OColor colvalue="-8011743"/>
  2068. <OColor colvalue="-3069334"/>
  2069. <OColor colvalue="-15830324"/>
  2070. <OColor colvalue="-9657585"/>
  2071. <OColor colvalue="-683247"/>
  2072. <OColor colvalue="-375997"/>
  2073. <OColor colvalue="-1"/>
  2074. </ColorList>
  2075. </AttrFillStyle>
  2076. </newPlotFillStyle>
  2077. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  2078. <GradientStyle>
  2079. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  2080. </GradientStyle>
  2081. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  2082. <XAxisList>
  2083. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  2084. <Title>
  2085. <GI>
  2086. <AttrBackground>
  2087. <Background name="NullBackground"/>
  2088. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2089. </AttrBackground>
  2090. <AttrBorder>
  2091. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2092. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2093. </AttrBorder>
  2094. <AttrAlpha>
  2095. <Attr alpha="1.0"/>
  2096. </AttrAlpha>
  2097. </GI>
  2098. <O>
  2099. <![CDATA[]]></O>
  2100. <TextAttr>
  2101. <Attr alignText="0" predefinedStyle="false">
  2102. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  2103. </Attr>
  2104. </TextAttr>
  2105. <TitleVisible value="true" position="0"/>
  2106. </Title>
  2107. <newAxisAttr isShowAxisLabel="true"/>
  2108. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  2109. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  2110. <AxisPosition value="3"/>
  2111. <TickLine201106 type="2" secType="0"/>
  2112. <ArrowShow arrowShow="false"/>
  2113. <TextAttr>
  2114. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  2115. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  2116. </Attr>
  2117. </TextAttr>
  2118. <AxisLabelCount value="=14"/>
  2119. <AxisRange/>
  2120. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  2121. <ZoomAxisAttr isZoom="false"/>
  2122. <axisReversed axisReversed="false"/>
  2123. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  2124. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2125. <alertList/>
  2126. <customBackgroundList/>
  2127. </VanChartAxis>
  2128. </XAxisList>
  2129. <YAxisList>
  2130. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  2131. <Title>
  2132. <GI>
  2133. <AttrBackground>
  2134. <Background name="NullBackground"/>
  2135. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2136. </AttrBackground>
  2137. <AttrBorder>
  2138. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2139. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2140. </AttrBorder>
  2141. <AttrAlpha>
  2142. <Attr alpha="1.0"/>
  2143. </AttrAlpha>
  2144. </GI>
  2145. <O>
  2146. <![CDATA[(个)]]></O>
  2147. <TextAttr>
  2148. <Attr alignText="0" predefinedStyle="false">
  2149. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  2150. </Attr>
  2151. </TextAttr>
  2152. <TitleVisible value="true" position="1"/>
  2153. </Title>
  2154. <newAxisAttr isShowAxisLabel="true"/>
  2155. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  2156. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  2157. <AxisPosition value="2"/>
  2158. <TickLine201106 type="2" secType="0"/>
  2159. <ArrowShow arrowShow="false"/>
  2160. <TextAttr>
  2161. <Attr alignText="0" predefinedStyle="false">
  2162. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  2163. </Attr>
  2164. </TextAttr>
  2165. <AxisLabelCount value="=1"/>
  2166. <AxisRange minValue="=1600"/>
  2167. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  2168. <ZoomAxisAttr isZoom="false"/>
  2169. <axisReversed axisReversed="false"/>
  2170. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  2171. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2172. <alertList/>
  2173. <customBackgroundList/>
  2174. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  2175. <ds>
  2176. <RadarYAxisTableDefinition>
  2177. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  2178. <attr/>
  2179. </RadarYAxisTableDefinition>
  2180. </ds>
  2181. </VanChartAxis>
  2182. </YAxisList>
  2183. <stackAndAxisCondition>
  2184. <ConditionCollection>
  2185. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  2186. <ConditionAttr name=""/>
  2187. </DefaultAttr>
  2188. </ConditionCollection>
  2189. </stackAndAxisCondition>
  2190. </Plot>
  2191. <ChartDefinition>
  2192. <OneValueCDDefinition seriesName="无" valueName="累计注册用户" function="com.fr.data.util.function.NoneFunction">
  2193. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  2194. <TableData class="com.fr.data.impl.NameTableData">
  2195. <Name>
  2196. <![CDATA[ds_register_chart2]]></Name>
  2197. </TableData>
  2198. <CategoryName value="日期"/>
  2199. </OneValueCDDefinition>
  2200. </ChartDefinition>
  2201. </Chart>
  2202. <UUID uuid="c0da763d-6918-4db4-a008-19d8793e431a"/>
  2203. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  2204. <VanChartZoom>
  2205. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  2206. <from>
  2207. <![CDATA[]]></from>
  2208. <to>
  2209. <![CDATA[]]></to>
  2210. </VanChartZoom>
  2211. <refreshMoreLabel>
  2212. <attr moreLabel="false" autoTooltip="true"/>
  2213. <AttrTooltip>
  2214. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  2215. <TextAttr>
  2216. <Attr alignText="0" predefinedStyle="false">
  2217. <FRFont name="SimSun" style="0" size="72"/>
  2218. </Attr>
  2219. </TextAttr>
  2220. <AttrToolTipContent>
  2221. <TextAttr>
  2222. <Attr alignText="0" predefinedStyle="false">
  2223. <FRFont name="SimSun" style="0" size="72"/>
  2224. </Attr>
  2225. </TextAttr>
  2226. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  2227. <AttrTooltipRichText>
  2228. <Attr content="" isAuto="true" initParamsContent=""/>
  2229. <params>
  2230. <![CDATA[{}]]></params>
  2231. </AttrTooltipRichText>
  2232. </richText>
  2233. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  2234. <AttrTooltipValueFormat>
  2235. <Attr enable="true"/>
  2236. </AttrTooltipValueFormat>
  2237. </richTextValue>
  2238. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  2239. <AttrTooltipPercentFormat>
  2240. <Attr enable="false"/>
  2241. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2242. <![CDATA[#.##%]]></Format>
  2243. </AttrTooltipPercentFormat>
  2244. </richTextPercent>
  2245. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  2246. <AttrToolTipCategoryFormat>
  2247. <Attr enable="false"/>
  2248. </AttrToolTipCategoryFormat>
  2249. </richTextCategory>
  2250. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  2251. <AttrTooltipSeriesFormat>
  2252. <Attr enable="false"/>
  2253. </AttrTooltipSeriesFormat>
  2254. </richTextSeries>
  2255. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  2256. <AttrTooltipChangedPercentFormat>
  2257. <Attr enable="false"/>
  2258. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2259. <![CDATA[#.##%]]></Format>
  2260. </AttrTooltipChangedPercentFormat>
  2261. </richTextChangedPercent>
  2262. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  2263. <AttrTooltipChangedValueFormat>
  2264. <Attr enable="false"/>
  2265. </AttrTooltipChangedValueFormat>
  2266. </richTextChangedValue>
  2267. <TableFieldCollection/>
  2268. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  2269. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  2270. <AttrTooltipValueFormat>
  2271. <Attr enable="true"/>
  2272. </AttrTooltipValueFormat>
  2273. </value>
  2274. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  2275. <AttrTooltipPercentFormat>
  2276. <Attr enable="false"/>
  2277. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2278. <![CDATA[#.##%]]></Format>
  2279. </AttrTooltipPercentFormat>
  2280. </percent>
  2281. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  2282. <AttrToolTipCategoryFormat>
  2283. <Attr enable="true"/>
  2284. </AttrToolTipCategoryFormat>
  2285. </category>
  2286. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  2287. <AttrTooltipSeriesFormat>
  2288. <Attr enable="true"/>
  2289. </AttrTooltipSeriesFormat>
  2290. </series>
  2291. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  2292. <AttrTooltipChangedPercentFormat>
  2293. <Attr enable="false"/>
  2294. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2295. <![CDATA[#.##%]]></Format>
  2296. </AttrTooltipChangedPercentFormat>
  2297. </changedPercent>
  2298. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  2299. <AttrTooltipChangedValueFormat>
  2300. <Attr enable="true"/>
  2301. </AttrTooltipChangedValueFormat>
  2302. </changedValue>
  2303. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2304. </AttrToolTipContent>
  2305. <GI>
  2306. <AttrBackground>
  2307. <Background name="ColorBackground" color="-1"/>
  2308. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2309. </AttrBackground>
  2310. <AttrBorder>
  2311. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  2312. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  2313. </AttrBorder>
  2314. <AttrAlpha>
  2315. <Attr alpha="0.8"/>
  2316. </AttrAlpha>
  2317. </GI>
  2318. </AttrTooltip>
  2319. </refreshMoreLabel>
  2320. <ThemeAttr>
  2321. <Attr darkTheme="false" predefinedStyle="false"/>
  2322. </ThemeAttr>
  2323. </Chart>
  2324. </O>
  2325. <PrivilegeControl/>
  2326. <Expand/>
  2327. </C>
  2328. <C c="0" r="9" cs="9" s="8">
  2329. <O>
  2330. <![CDATA[图2.用户注册年累计]]></O>
  2331. <PrivilegeControl/>
  2332. <CellGUIAttr showAsHTML="true"/>
  2333. <CellPageAttr/>
  2334. <CellInsertPolicy/>
  2335. <Expand dir="0"/>
  2336. </C>
  2337. <C c="0" r="10" cs="9" s="9">
  2338. <O t="DSColumn">
  2339. <Attributes dsName="ds_login" columnName="total_number"/>
  2340. <Condition class="com.fr.data.condition.ListCondition"/>
  2341. <Complex/>
  2342. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  2343. <Result>
  2344. <![CDATA["<font style='font-weight:bold'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;2.用户登录。</font>"+if($p_day_count > 1, MONTH(datedelta($p_start_day,-1)) + "月" + DAY(datedelta($p_start_day,-1)) + "日" + "至"+ MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日期间",(MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日"))+"有"+total_number+"个用户登录平台,其中合作组织内部用户"+internal_number+"个,外部用户"+external_number+"个。平台用户登录次数累计"+total_number_all+"次。<br/>"]]></Result>
  2345. <Parameters/>
  2346. </O>
  2347. <PrivilegeControl/>
  2348. <CellGUIAttr adjustmode="1" showAsHTML="true"/>
  2349. <CellPageAttr/>
  2350. <CellInsertPolicy/>
  2351. <Expand dir="0"/>
  2352. </C>
  2353. <C c="0" r="11" cs="9" s="9">
  2354. <O t="DSColumn">
  2355. <Attributes dsName="ds_register_login" columnName="all_login_number"/>
  2356. <Condition class="com.fr.data.condition.ListCondition"/>
  2357. <Complex/>
  2358. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  2359. <Result>
  2360. <![CDATA["&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;截至目前,共有"+ all_login_number +"个用户登录过平台,其中会员用户"+ vip_login_number+"个,合作组织内部用户"+internal_login_number +"个,其他个人用户"+ external_login_number +"个、企业用户"+enterprise_login_number+"个。<br/>"]]></Result>
  2361. <Parameters/>
  2362. </O>
  2363. <PrivilegeControl/>
  2364. <CellGUIAttr adjustmode="1" showAsHTML="true"/>
  2365. <CellPageAttr/>
  2366. <CellInsertPolicy/>
  2367. <Expand dir="0"/>
  2368. </C>
  2369. <C c="0" r="12" cs="9" s="10">
  2370. <O t="CC">
  2371. <LayoutAttr selectedIndex="0"/>
  2372. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  2373. <TextAttr>
  2374. <Attr alignText="0" predefinedStyle="false">
  2375. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  2376. </Attr>
  2377. </TextAttr>
  2378. </ChangeAttr>
  2379. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  2380. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  2381. <GI>
  2382. <AttrBackground>
  2383. <Background name="NullBackground"/>
  2384. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2385. </AttrBackground>
  2386. <AttrBorder>
  2387. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  2388. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  2389. </AttrBorder>
  2390. <AttrAlpha>
  2391. <Attr alpha="1.0"/>
  2392. </AttrAlpha>
  2393. </GI>
  2394. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  2395. <Title4VanChart>
  2396. <Title>
  2397. <GI>
  2398. <AttrBackground>
  2399. <Background name="NullBackground"/>
  2400. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2401. </AttrBackground>
  2402. <AttrBorder>
  2403. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2404. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  2405. </AttrBorder>
  2406. <AttrAlpha>
  2407. <Attr alpha="1.0"/>
  2408. </AttrAlpha>
  2409. </GI>
  2410. <O>
  2411. <![CDATA[新建图表标题]]></O>
  2412. <TextAttr>
  2413. <Attr alignText="0" predefinedStyle="false">
  2414. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  2415. </Attr>
  2416. </TextAttr>
  2417. <TitleVisible value="false" position="0"/>
  2418. </Title>
  2419. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  2420. </Title4VanChart>
  2421. <Plot class="com.fr.plugin.chart.custom.VanChartCustomPlot">
  2422. <VanChartPlotVersion version="20170715"/>
  2423. <GI>
  2424. <AttrBackground>
  2425. <Background name="NullBackground"/>
  2426. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2427. </AttrBackground>
  2428. <AttrBorder>
  2429. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2430. <newColor/>
  2431. </AttrBorder>
  2432. <AttrAlpha>
  2433. <Attr alpha="1.0"/>
  2434. </AttrAlpha>
  2435. </GI>
  2436. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  2437. <newHotTooltipStyle>
  2438. <AttrContents>
  2439. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  2440. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2441. <![CDATA[#.##]]></Format>
  2442. <PercentFormat>
  2443. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2444. <![CDATA[#0.##%]]></Format>
  2445. </PercentFormat>
  2446. </AttrContents>
  2447. </newHotTooltipStyle>
  2448. <ConditionCollection>
  2449. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  2450. <ConditionAttr name=""/>
  2451. </DefaultAttr>
  2452. </ConditionCollection>
  2453. <Legend4VanChart>
  2454. <Legend>
  2455. <GI>
  2456. <AttrBackground>
  2457. <Background name="NullBackground"/>
  2458. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2459. </AttrBackground>
  2460. <AttrBorder>
  2461. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2462. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  2463. </AttrBorder>
  2464. <AttrAlpha>
  2465. <Attr alpha="1.0"/>
  2466. </AttrAlpha>
  2467. </GI>
  2468. <Attr position="3" visible="true" predefinedStyle="false"/>
  2469. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  2470. </Legend>
  2471. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  2472. </Legend4VanChart>
  2473. <DataSheet>
  2474. <GI>
  2475. <AttrBackground>
  2476. <Background name="NullBackground"/>
  2477. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2478. </AttrBackground>
  2479. <AttrBorder>
  2480. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  2481. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2482. </AttrBorder>
  2483. <AttrAlpha>
  2484. <Attr alpha="1.0"/>
  2485. </AttrAlpha>
  2486. </GI>
  2487. <Attr isVisible="false" predefinedStyle="false"/>
  2488. <FRFont name="宋体" style="0" size="72"/>
  2489. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2490. <![CDATA[#.##]]></Format>
  2491. </DataSheet>
  2492. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  2493. <newPlotFillStyle>
  2494. <AttrFillStyle>
  2495. <AFStyle colorStyle="1"/>
  2496. <FillStyleName fillStyleName=""/>
  2497. <isCustomFillStyle isCustomFillStyle="true"/>
  2498. <PredefinedStyle predefinedStyle="false"/>
  2499. <ColorList>
  2500. <OColor colvalue="-9654529"/>
  2501. <OColor colvalue="-26368"/>
  2502. <OColor colvalue="-39373"/>
  2503. <OColor colvalue="-16750485"/>
  2504. <OColor colvalue="-3658447"/>
  2505. <OColor colvalue="-10331231"/>
  2506. <OColor colvalue="-7763575"/>
  2507. <OColor colvalue="-6514688"/>
  2508. <OColor colvalue="-16744620"/>
  2509. <OColor colvalue="-6187579"/>
  2510. <OColor colvalue="-15714713"/>
  2511. <OColor colvalue="-945550"/>
  2512. <OColor colvalue="-4092928"/>
  2513. <OColor colvalue="-13224394"/>
  2514. <OColor colvalue="-12423245"/>
  2515. <OColor colvalue="-10043521"/>
  2516. <OColor colvalue="-406154"/>
  2517. <OColor colvalue="-13031292"/>
  2518. <OColor colvalue="-16732559"/>
  2519. <OColor colvalue="-7099690"/>
  2520. <OColor colvalue="-11991199"/>
  2521. <OColor colvalue="-331445"/>
  2522. <OColor colvalue="-6991099"/>
  2523. <OColor colvalue="-16686527"/>
  2524. <OColor colvalue="-9205567"/>
  2525. <OColor colvalue="-7397856"/>
  2526. <OColor colvalue="-406154"/>
  2527. <OColor colvalue="-2712831"/>
  2528. <OColor colvalue="-4737097"/>
  2529. <OColor colvalue="-11460720"/>
  2530. <OColor colvalue="-6696775"/>
  2531. <OColor colvalue="-3685632"/>
  2532. </ColorList>
  2533. </AttrFillStyle>
  2534. </newPlotFillStyle>
  2535. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  2536. <GradientStyle>
  2537. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  2538. </GradientStyle>
  2539. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  2540. <XAxisList>
  2541. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  2542. <Title>
  2543. <GI>
  2544. <AttrBackground>
  2545. <Background name="NullBackground"/>
  2546. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2547. </AttrBackground>
  2548. <AttrBorder>
  2549. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2550. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2551. </AttrBorder>
  2552. <AttrAlpha>
  2553. <Attr alpha="1.0"/>
  2554. </AttrAlpha>
  2555. </GI>
  2556. <O>
  2557. <![CDATA[]]></O>
  2558. <TextAttr>
  2559. <Attr alignText="0" predefinedStyle="false">
  2560. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  2561. </Attr>
  2562. </TextAttr>
  2563. <TitleVisible value="true" position="0"/>
  2564. </Title>
  2565. <newAxisAttr isShowAxisLabel="true"/>
  2566. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  2567. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  2568. <AxisPosition value="3"/>
  2569. <TickLine201106 type="2" secType="0"/>
  2570. <ArrowShow arrowShow="false"/>
  2571. <TextAttr>
  2572. <Attr alignText="0" predefinedStyle="false">
  2573. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  2574. </Attr>
  2575. </TextAttr>
  2576. <AxisLabelCount value="=1"/>
  2577. <AxisRange/>
  2578. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  2579. <ZoomAxisAttr isZoom="false"/>
  2580. <axisReversed axisReversed="false"/>
  2581. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="multiLine" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  2582. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2583. <alertList/>
  2584. <customBackgroundList/>
  2585. </VanChartAxis>
  2586. </XAxisList>
  2587. <YAxisList>
  2588. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  2589. <Title>
  2590. <GI>
  2591. <AttrBackground>
  2592. <Background name="NullBackground"/>
  2593. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2594. </AttrBackground>
  2595. <AttrBorder>
  2596. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2597. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2598. </AttrBorder>
  2599. <AttrAlpha>
  2600. <Attr alpha="1.0"/>
  2601. </AttrAlpha>
  2602. </GI>
  2603. <O>
  2604. <![CDATA[(个)]]></O>
  2605. <TextAttr>
  2606. <Attr alignText="0" predefinedStyle="false">
  2607. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  2608. </Attr>
  2609. </TextAttr>
  2610. <TitleVisible value="true" position="1"/>
  2611. </Title>
  2612. <newAxisAttr isShowAxisLabel="true"/>
  2613. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  2614. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  2615. <AxisPosition value="2"/>
  2616. <TickLine201106 type="2" secType="0"/>
  2617. <ArrowShow arrowShow="false"/>
  2618. <TextAttr>
  2619. <Attr alignText="0" predefinedStyle="false">
  2620. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  2621. </Attr>
  2622. </TextAttr>
  2623. <AxisLabelCount value="=1"/>
  2624. <AxisRange minValue="=0"/>
  2625. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  2626. <ZoomAxisAttr isZoom="false"/>
  2627. <axisReversed axisReversed="false"/>
  2628. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  2629. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2630. <alertList/>
  2631. <customBackgroundList/>
  2632. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  2633. <ds>
  2634. <RadarYAxisTableDefinition>
  2635. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  2636. <attr/>
  2637. </RadarYAxisTableDefinition>
  2638. </ds>
  2639. </VanChartAxis>
  2640. </YAxisList>
  2641. <stackAndAxisCondition>
  2642. <ConditionCollection>
  2643. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  2644. <ConditionAttr name=""/>
  2645. </DefaultAttr>
  2646. </ConditionCollection>
  2647. </stackAndAxisCondition>
  2648. <VanChartCustomPlotAttr customStyle="column_line"/>
  2649. <CustomPlotList>
  2650. <VanChartPlot class="com.fr.plugin.chart.column.VanChartColumnPlot">
  2651. <VanChartPlotVersion version="20170715"/>
  2652. <GI>
  2653. <AttrBackground>
  2654. <Background name="NullBackground"/>
  2655. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2656. </AttrBackground>
  2657. <AttrBorder>
  2658. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2659. <newColor/>
  2660. </AttrBorder>
  2661. <AttrAlpha>
  2662. <Attr alpha="1.0"/>
  2663. </AttrAlpha>
  2664. </GI>
  2665. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  2666. <newHotTooltipStyle>
  2667. <AttrContents>
  2668. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  2669. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2670. <![CDATA[#.##]]></Format>
  2671. <PercentFormat>
  2672. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2673. <![CDATA[#0.##%]]></Format>
  2674. </PercentFormat>
  2675. </AttrContents>
  2676. </newHotTooltipStyle>
  2677. <ConditionCollection>
  2678. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  2679. <ConditionAttr name="">
  2680. <AttrList>
  2681. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  2682. <AttrTooltip>
  2683. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  2684. <TextAttr>
  2685. <Attr alignText="0" predefinedStyle="false">
  2686. <FRFont name="SimSun" style="0" size="72"/>
  2687. </Attr>
  2688. </TextAttr>
  2689. <AttrToolTipContent>
  2690. <TextAttr>
  2691. <Attr alignText="0" predefinedStyle="false">
  2692. <FRFont name="SimSun" style="0" size="72"/>
  2693. </Attr>
  2694. </TextAttr>
  2695. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  2696. <AttrTooltipRichText>
  2697. <Attr content="" isAuto="true" initParamsContent=""/>
  2698. <params>
  2699. <![CDATA[{}]]></params>
  2700. </AttrTooltipRichText>
  2701. </richText>
  2702. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  2703. <AttrTooltipValueFormat>
  2704. <Attr enable="true"/>
  2705. </AttrTooltipValueFormat>
  2706. </richTextValue>
  2707. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  2708. <AttrTooltipPercentFormat>
  2709. <Attr enable="false"/>
  2710. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2711. <![CDATA[#.##%]]></Format>
  2712. </AttrTooltipPercentFormat>
  2713. </richTextPercent>
  2714. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  2715. <AttrToolTipCategoryFormat>
  2716. <Attr enable="true"/>
  2717. </AttrToolTipCategoryFormat>
  2718. </richTextCategory>
  2719. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  2720. <AttrTooltipSeriesFormat>
  2721. <Attr enable="true"/>
  2722. </AttrTooltipSeriesFormat>
  2723. </richTextSeries>
  2724. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  2725. <AttrTooltipChangedPercentFormat>
  2726. <Attr enable="false"/>
  2727. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2728. <![CDATA[#.##%]]></Format>
  2729. </AttrTooltipChangedPercentFormat>
  2730. </richTextChangedPercent>
  2731. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  2732. <AttrTooltipChangedValueFormat>
  2733. <Attr enable="false"/>
  2734. </AttrTooltipChangedValueFormat>
  2735. </richTextChangedValue>
  2736. <TableFieldCollection/>
  2737. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  2738. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  2739. <AttrTooltipValueFormat>
  2740. <Attr enable="true"/>
  2741. </AttrTooltipValueFormat>
  2742. </value>
  2743. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  2744. <AttrTooltipPercentFormat>
  2745. <Attr enable="false"/>
  2746. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2747. <![CDATA[#.##%]]></Format>
  2748. </AttrTooltipPercentFormat>
  2749. </percent>
  2750. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  2751. <AttrToolTipCategoryFormat>
  2752. <Attr enable="true"/>
  2753. </AttrToolTipCategoryFormat>
  2754. </category>
  2755. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  2756. <AttrTooltipSeriesFormat>
  2757. <Attr enable="true"/>
  2758. </AttrTooltipSeriesFormat>
  2759. </series>
  2760. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  2761. <AttrTooltipChangedPercentFormat>
  2762. <Attr enable="false"/>
  2763. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2764. <![CDATA[#.##%]]></Format>
  2765. </AttrTooltipChangedPercentFormat>
  2766. </changedPercent>
  2767. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  2768. <AttrTooltipChangedValueFormat>
  2769. <Attr enable="false"/>
  2770. </AttrTooltipChangedValueFormat>
  2771. </changedValue>
  2772. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2773. </AttrToolTipContent>
  2774. <GI>
  2775. <AttrBackground>
  2776. <Background name="ColorBackground" color="-16777216"/>
  2777. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  2778. </AttrBackground>
  2779. <AttrBorder>
  2780. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  2781. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2782. </AttrBorder>
  2783. <AttrAlpha>
  2784. <Attr alpha="0.5"/>
  2785. </AttrAlpha>
  2786. </GI>
  2787. </AttrTooltip>
  2788. </Attr>
  2789. <Attr class="com.fr.chart.base.AttrBorder">
  2790. <AttrBorder>
  2791. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  2792. <newColor borderColor="-1" autoColor="false" predefinedStyle="false"/>
  2793. </AttrBorder>
  2794. </Attr>
  2795. <Attr class="com.fr.chart.base.AttrAlpha">
  2796. <AttrAlpha>
  2797. <Attr alpha="1.0"/>
  2798. </AttrAlpha>
  2799. </Attr>
  2800. </AttrList>
  2801. </ConditionAttr>
  2802. </DefaultAttr>
  2803. </ConditionCollection>
  2804. <Legend4VanChart>
  2805. <Legend>
  2806. <GI>
  2807. <AttrBackground>
  2808. <Background name="NullBackground"/>
  2809. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2810. </AttrBackground>
  2811. <AttrBorder>
  2812. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2813. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  2814. </AttrBorder>
  2815. <AttrAlpha>
  2816. <Attr alpha="1.0"/>
  2817. </AttrAlpha>
  2818. </GI>
  2819. <Attr position="4" visible="true" predefinedStyle="false"/>
  2820. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  2821. </Legend>
  2822. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  2823. </Legend4VanChart>
  2824. <DataSheet>
  2825. <GI>
  2826. <AttrBackground>
  2827. <Background name="NullBackground"/>
  2828. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2829. </AttrBackground>
  2830. <AttrBorder>
  2831. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  2832. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2833. </AttrBorder>
  2834. <AttrAlpha>
  2835. <Attr alpha="1.0"/>
  2836. </AttrAlpha>
  2837. </GI>
  2838. <Attr isVisible="false" predefinedStyle="false"/>
  2839. <FRFont name="宋体" style="0" size="72"/>
  2840. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  2841. <![CDATA[#.##]]></Format>
  2842. </DataSheet>
  2843. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  2844. <newPlotFillStyle>
  2845. <AttrFillStyle>
  2846. <AFStyle colorStyle="1"/>
  2847. <FillStyleName fillStyleName="新特性"/>
  2848. <isCustomFillStyle isCustomFillStyle="false"/>
  2849. <PredefinedStyle predefinedStyle="false"/>
  2850. <ColorList>
  2851. <OColor colvalue="-10243346"/>
  2852. <OColor colvalue="-8988015"/>
  2853. <OColor colvalue="-472193"/>
  2854. <OColor colvalue="-486008"/>
  2855. <OColor colvalue="-8595761"/>
  2856. <OColor colvalue="-7236949"/>
  2857. <OColor colvalue="-8873759"/>
  2858. <OColor colvalue="-1071514"/>
  2859. <OColor colvalue="-1188474"/>
  2860. <OColor colvalue="-6715442"/>
  2861. <OColor colvalue="-10243346"/>
  2862. <OColor colvalue="-8988015"/>
  2863. <OColor colvalue="-472193"/>
  2864. <OColor colvalue="-486008"/>
  2865. <OColor colvalue="-8595761"/>
  2866. <OColor colvalue="-7236949"/>
  2867. <OColor colvalue="-8873759"/>
  2868. <OColor colvalue="-1071514"/>
  2869. <OColor colvalue="-1188474"/>
  2870. <OColor colvalue="-6715442"/>
  2871. <OColor colvalue="-10243346"/>
  2872. <OColor colvalue="-8988015"/>
  2873. <OColor colvalue="-472193"/>
  2874. <OColor colvalue="-486008"/>
  2875. <OColor colvalue="-8595761"/>
  2876. <OColor colvalue="-7236949"/>
  2877. <OColor colvalue="-8873759"/>
  2878. <OColor colvalue="-1071514"/>
  2879. <OColor colvalue="-1188474"/>
  2880. <OColor colvalue="-6715442"/>
  2881. <OColor colvalue="-10243346"/>
  2882. <OColor colvalue="-8988015"/>
  2883. </ColorList>
  2884. </AttrFillStyle>
  2885. </newPlotFillStyle>
  2886. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  2887. <GradientStyle>
  2888. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  2889. </GradientStyle>
  2890. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  2891. <XAxisList>
  2892. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  2893. <Title>
  2894. <GI>
  2895. <AttrBackground>
  2896. <Background name="NullBackground"/>
  2897. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2898. </AttrBackground>
  2899. <AttrBorder>
  2900. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2901. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2902. </AttrBorder>
  2903. <AttrAlpha>
  2904. <Attr alpha="1.0"/>
  2905. </AttrAlpha>
  2906. </GI>
  2907. <O>
  2908. <![CDATA[]]></O>
  2909. <TextAttr>
  2910. <Attr alignText="0" predefinedStyle="false">
  2911. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  2912. </Attr>
  2913. </TextAttr>
  2914. <TitleVisible value="true" position="0"/>
  2915. </Title>
  2916. <newAxisAttr isShowAxisLabel="true"/>
  2917. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  2918. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  2919. <AxisPosition value="3"/>
  2920. <TickLine201106 type="2" secType="0"/>
  2921. <ArrowShow arrowShow="false"/>
  2922. <TextAttr>
  2923. <Attr alignText="0" predefinedStyle="false">
  2924. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  2925. </Attr>
  2926. </TextAttr>
  2927. <AxisLabelCount value="=1"/>
  2928. <AxisRange/>
  2929. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  2930. <ZoomAxisAttr isZoom="false"/>
  2931. <axisReversed axisReversed="false"/>
  2932. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="multiLine" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  2933. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2934. <alertList/>
  2935. <customBackgroundList/>
  2936. </VanChartAxis>
  2937. </XAxisList>
  2938. <YAxisList>
  2939. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  2940. <Title>
  2941. <GI>
  2942. <AttrBackground>
  2943. <Background name="NullBackground"/>
  2944. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  2945. </AttrBackground>
  2946. <AttrBorder>
  2947. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  2948. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  2949. </AttrBorder>
  2950. <AttrAlpha>
  2951. <Attr alpha="1.0"/>
  2952. </AttrAlpha>
  2953. </GI>
  2954. <O>
  2955. <![CDATA[(个)]]></O>
  2956. <TextAttr>
  2957. <Attr alignText="0" predefinedStyle="false">
  2958. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  2959. </Attr>
  2960. </TextAttr>
  2961. <TitleVisible value="true" position="1"/>
  2962. </Title>
  2963. <newAxisAttr isShowAxisLabel="true"/>
  2964. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  2965. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  2966. <AxisPosition value="2"/>
  2967. <TickLine201106 type="2" secType="0"/>
  2968. <ArrowShow arrowShow="false"/>
  2969. <TextAttr>
  2970. <Attr alignText="0" predefinedStyle="false">
  2971. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  2972. </Attr>
  2973. </TextAttr>
  2974. <AxisLabelCount value="=1"/>
  2975. <AxisRange minValue="=0"/>
  2976. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  2977. <ZoomAxisAttr isZoom="false"/>
  2978. <axisReversed axisReversed="false"/>
  2979. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  2980. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  2981. <alertList/>
  2982. <customBackgroundList/>
  2983. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  2984. <ds>
  2985. <RadarYAxisTableDefinition>
  2986. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  2987. <attr/>
  2988. </RadarYAxisTableDefinition>
  2989. </ds>
  2990. </VanChartAxis>
  2991. </YAxisList>
  2992. <stackAndAxisCondition>
  2993. <ConditionCollection>
  2994. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  2995. <ConditionAttr name=""/>
  2996. </DefaultAttr>
  2997. <ConditionAttrList>
  2998. <List index="0">
  2999. <ConditionAttr name="堆积和坐标轴1">
  3000. <AttrList>
  3001. <Attr class="com.fr.plugin.chart.base.AttrSeriesStackAndAxis">
  3002. <AttrSeriesStackAndAxis>
  3003. <Attr xAxisIndex="0" yAxisIndex="0" stacked="false" percentStacked="false" stackID="堆积和坐标轴1"/>
  3004. </AttrSeriesStackAndAxis>
  3005. </Attr>
  3006. </AttrList>
  3007. <Condition class="com.fr.data.condition.ListCondition"/>
  3008. </ConditionAttr>
  3009. </List>
  3010. </ConditionAttrList>
  3011. </ConditionCollection>
  3012. </stackAndAxisCondition>
  3013. <VanChartColumnPlotAttr seriesOverlapPercent="20.0" categoryIntervalPercent="20.0" fixedWidth="false" columnWidth="0" filledWithImage="false" isBar="false"/>
  3014. </VanChartPlot>
  3015. <VanChartPlot class="com.fr.plugin.chart.line.VanChartLinePlot">
  3016. <VanChartPlotVersion version="20170715"/>
  3017. <GI>
  3018. <AttrBackground>
  3019. <Background name="NullBackground"/>
  3020. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3021. </AttrBackground>
  3022. <AttrBorder>
  3023. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3024. <newColor/>
  3025. </AttrBorder>
  3026. <AttrAlpha>
  3027. <Attr alpha="1.0"/>
  3028. </AttrAlpha>
  3029. </GI>
  3030. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  3031. <newHotTooltipStyle>
  3032. <AttrContents>
  3033. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  3034. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3035. <![CDATA[#.##]]></Format>
  3036. <PercentFormat>
  3037. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3038. <![CDATA[#0.##%]]></Format>
  3039. </PercentFormat>
  3040. </AttrContents>
  3041. </newHotTooltipStyle>
  3042. <ConditionCollection>
  3043. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  3044. <ConditionAttr name="">
  3045. <AttrList>
  3046. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  3047. <AttrTooltip>
  3048. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  3049. <TextAttr>
  3050. <Attr alignText="0" predefinedStyle="false">
  3051. <FRFont name="SimSun" style="0" size="72"/>
  3052. </Attr>
  3053. </TextAttr>
  3054. <AttrToolTipContent>
  3055. <TextAttr>
  3056. <Attr alignText="0" predefinedStyle="false">
  3057. <FRFont name="SimSun" style="0" size="72"/>
  3058. </Attr>
  3059. </TextAttr>
  3060. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  3061. <AttrTooltipRichText>
  3062. <Attr content="" isAuto="true" initParamsContent=""/>
  3063. <params>
  3064. <![CDATA[{}]]></params>
  3065. </AttrTooltipRichText>
  3066. </richText>
  3067. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3068. <AttrTooltipValueFormat>
  3069. <Attr enable="true"/>
  3070. </AttrTooltipValueFormat>
  3071. </richTextValue>
  3072. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3073. <AttrTooltipPercentFormat>
  3074. <Attr enable="false"/>
  3075. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3076. <![CDATA[#.##%]]></Format>
  3077. </AttrTooltipPercentFormat>
  3078. </richTextPercent>
  3079. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3080. <AttrToolTipCategoryFormat>
  3081. <Attr enable="true"/>
  3082. </AttrToolTipCategoryFormat>
  3083. </richTextCategory>
  3084. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3085. <AttrTooltipSeriesFormat>
  3086. <Attr enable="true"/>
  3087. </AttrTooltipSeriesFormat>
  3088. </richTextSeries>
  3089. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3090. <AttrTooltipChangedPercentFormat>
  3091. <Attr enable="false"/>
  3092. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3093. <![CDATA[#.##%]]></Format>
  3094. </AttrTooltipChangedPercentFormat>
  3095. </richTextChangedPercent>
  3096. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  3097. <AttrTooltipChangedValueFormat>
  3098. <Attr enable="false"/>
  3099. </AttrTooltipChangedValueFormat>
  3100. </richTextChangedValue>
  3101. <TableFieldCollection/>
  3102. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  3103. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3104. <AttrTooltipValueFormat>
  3105. <Attr enable="true"/>
  3106. </AttrTooltipValueFormat>
  3107. </value>
  3108. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3109. <AttrTooltipPercentFormat>
  3110. <Attr enable="false"/>
  3111. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3112. <![CDATA[#.##%]]></Format>
  3113. </AttrTooltipPercentFormat>
  3114. </percent>
  3115. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3116. <AttrToolTipCategoryFormat>
  3117. <Attr enable="true"/>
  3118. </AttrToolTipCategoryFormat>
  3119. </category>
  3120. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3121. <AttrTooltipSeriesFormat>
  3122. <Attr enable="true"/>
  3123. </AttrTooltipSeriesFormat>
  3124. </series>
  3125. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3126. <AttrTooltipChangedPercentFormat>
  3127. <Attr enable="false"/>
  3128. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3129. <![CDATA[#.##%]]></Format>
  3130. </AttrTooltipChangedPercentFormat>
  3131. </changedPercent>
  3132. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  3133. <AttrTooltipChangedValueFormat>
  3134. <Attr enable="false"/>
  3135. </AttrTooltipChangedValueFormat>
  3136. </changedValue>
  3137. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3138. </AttrToolTipContent>
  3139. <GI>
  3140. <AttrBackground>
  3141. <Background name="ColorBackground" color="-16777216"/>
  3142. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  3143. </AttrBackground>
  3144. <AttrBorder>
  3145. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  3146. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3147. </AttrBorder>
  3148. <AttrAlpha>
  3149. <Attr alpha="0.5"/>
  3150. </AttrAlpha>
  3151. </GI>
  3152. </AttrTooltip>
  3153. </Attr>
  3154. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  3155. <VanAttrLine>
  3156. <Attr lineType="solid" lineWidth="2.0" lineStyle="2" nullValueBreak="true"/>
  3157. </VanAttrLine>
  3158. </Attr>
  3159. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  3160. <VanAttrMarker>
  3161. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="4.5" width="30.0" height="30.0"/>
  3162. <Background name="NullBackground"/>
  3163. </VanAttrMarker>
  3164. </Attr>
  3165. </AttrList>
  3166. </ConditionAttr>
  3167. </DefaultAttr>
  3168. </ConditionCollection>
  3169. <Legend4VanChart>
  3170. <Legend>
  3171. <GI>
  3172. <AttrBackground>
  3173. <Background name="NullBackground"/>
  3174. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3175. </AttrBackground>
  3176. <AttrBorder>
  3177. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3178. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  3179. </AttrBorder>
  3180. <AttrAlpha>
  3181. <Attr alpha="1.0"/>
  3182. </AttrAlpha>
  3183. </GI>
  3184. <Attr position="4" visible="true" predefinedStyle="false"/>
  3185. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  3186. </Legend>
  3187. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  3188. </Legend4VanChart>
  3189. <DataSheet>
  3190. <GI>
  3191. <AttrBackground>
  3192. <Background name="NullBackground"/>
  3193. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3194. </AttrBackground>
  3195. <AttrBorder>
  3196. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  3197. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3198. </AttrBorder>
  3199. <AttrAlpha>
  3200. <Attr alpha="1.0"/>
  3201. </AttrAlpha>
  3202. </GI>
  3203. <Attr isVisible="false" predefinedStyle="false"/>
  3204. <FRFont name="宋体" style="0" size="72"/>
  3205. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3206. <![CDATA[#.##]]></Format>
  3207. </DataSheet>
  3208. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  3209. <newPlotFillStyle>
  3210. <AttrFillStyle>
  3211. <AFStyle colorStyle="1"/>
  3212. <FillStyleName fillStyleName="新特性"/>
  3213. <isCustomFillStyle isCustomFillStyle="false"/>
  3214. <PredefinedStyle predefinedStyle="false"/>
  3215. <ColorList>
  3216. <OColor colvalue="-10243346"/>
  3217. <OColor colvalue="-8988015"/>
  3218. <OColor colvalue="-472193"/>
  3219. <OColor colvalue="-486008"/>
  3220. <OColor colvalue="-8595761"/>
  3221. <OColor colvalue="-7236949"/>
  3222. <OColor colvalue="-8873759"/>
  3223. <OColor colvalue="-1071514"/>
  3224. <OColor colvalue="-1188474"/>
  3225. <OColor colvalue="-6715442"/>
  3226. <OColor colvalue="-10243346"/>
  3227. <OColor colvalue="-8988015"/>
  3228. <OColor colvalue="-472193"/>
  3229. <OColor colvalue="-486008"/>
  3230. <OColor colvalue="-8595761"/>
  3231. <OColor colvalue="-7236949"/>
  3232. <OColor colvalue="-8873759"/>
  3233. <OColor colvalue="-1071514"/>
  3234. <OColor colvalue="-1188474"/>
  3235. <OColor colvalue="-6715442"/>
  3236. <OColor colvalue="-10243346"/>
  3237. <OColor colvalue="-8988015"/>
  3238. <OColor colvalue="-472193"/>
  3239. <OColor colvalue="-486008"/>
  3240. <OColor colvalue="-8595761"/>
  3241. <OColor colvalue="-7236949"/>
  3242. <OColor colvalue="-8873759"/>
  3243. <OColor colvalue="-1071514"/>
  3244. <OColor colvalue="-1188474"/>
  3245. <OColor colvalue="-6715442"/>
  3246. <OColor colvalue="-10243346"/>
  3247. <OColor colvalue="-8988015"/>
  3248. </ColorList>
  3249. </AttrFillStyle>
  3250. </newPlotFillStyle>
  3251. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  3252. <GradientStyle>
  3253. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  3254. </GradientStyle>
  3255. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  3256. <XAxisList>
  3257. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  3258. <Title>
  3259. <GI>
  3260. <AttrBackground>
  3261. <Background name="NullBackground"/>
  3262. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3263. </AttrBackground>
  3264. <AttrBorder>
  3265. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3266. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3267. </AttrBorder>
  3268. <AttrAlpha>
  3269. <Attr alpha="1.0"/>
  3270. </AttrAlpha>
  3271. </GI>
  3272. <O>
  3273. <![CDATA[]]></O>
  3274. <TextAttr>
  3275. <Attr alignText="0" predefinedStyle="false">
  3276. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  3277. </Attr>
  3278. </TextAttr>
  3279. <TitleVisible value="true" position="0"/>
  3280. </Title>
  3281. <newAxisAttr isShowAxisLabel="true"/>
  3282. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  3283. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  3284. <AxisPosition value="3"/>
  3285. <TickLine201106 type="2" secType="0"/>
  3286. <ArrowShow arrowShow="false"/>
  3287. <TextAttr>
  3288. <Attr alignText="0" predefinedStyle="false">
  3289. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  3290. </Attr>
  3291. </TextAttr>
  3292. <AxisLabelCount value="=1"/>
  3293. <AxisRange/>
  3294. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  3295. <ZoomAxisAttr isZoom="false"/>
  3296. <axisReversed axisReversed="false"/>
  3297. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="multiLine" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  3298. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3299. <alertList/>
  3300. <customBackgroundList/>
  3301. </VanChartAxis>
  3302. </XAxisList>
  3303. <YAxisList>
  3304. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  3305. <Title>
  3306. <GI>
  3307. <AttrBackground>
  3308. <Background name="NullBackground"/>
  3309. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3310. </AttrBackground>
  3311. <AttrBorder>
  3312. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3313. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3314. </AttrBorder>
  3315. <AttrAlpha>
  3316. <Attr alpha="1.0"/>
  3317. </AttrAlpha>
  3318. </GI>
  3319. <O>
  3320. <![CDATA[(个)]]></O>
  3321. <TextAttr>
  3322. <Attr alignText="0" predefinedStyle="false">
  3323. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  3324. </Attr>
  3325. </TextAttr>
  3326. <TitleVisible value="true" position="1"/>
  3327. </Title>
  3328. <newAxisAttr isShowAxisLabel="true"/>
  3329. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  3330. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  3331. <AxisPosition value="2"/>
  3332. <TickLine201106 type="2" secType="0"/>
  3333. <ArrowShow arrowShow="false"/>
  3334. <TextAttr>
  3335. <Attr alignText="0" predefinedStyle="false">
  3336. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  3337. </Attr>
  3338. </TextAttr>
  3339. <AxisLabelCount value="=1"/>
  3340. <AxisRange minValue="=0"/>
  3341. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  3342. <ZoomAxisAttr isZoom="false"/>
  3343. <axisReversed axisReversed="false"/>
  3344. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  3345. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3346. <alertList/>
  3347. <customBackgroundList/>
  3348. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  3349. <ds>
  3350. <RadarYAxisTableDefinition>
  3351. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  3352. <attr/>
  3353. </RadarYAxisTableDefinition>
  3354. </ds>
  3355. </VanChartAxis>
  3356. </YAxisList>
  3357. <stackAndAxisCondition>
  3358. <ConditionCollection>
  3359. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  3360. <ConditionAttr name=""/>
  3361. </DefaultAttr>
  3362. </ConditionCollection>
  3363. </stackAndAxisCondition>
  3364. </VanChartPlot>
  3365. </CustomPlotList>
  3366. </Plot>
  3367. <ChartDefinition>
  3368. <CustomDefinition>
  3369. <DefinitionMapList>
  3370. <DefinitionMap key="column">
  3371. <MoreNameCDDefinition>
  3372. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  3373. <TableData class="com.fr.data.impl.NameTableData">
  3374. <Name>
  3375. <![CDATA[ds_login_chart1]]></Name>
  3376. </TableData>
  3377. <CategoryName value="日期"/>
  3378. <ChartSummaryColumn name="内部用户" function="com.fr.data.util.function.NoneFunction" customName="内部用户"/>
  3379. <ChartSummaryColumn name="外部用户" function="com.fr.data.util.function.NoneFunction" customName="外部用户"/>
  3380. </MoreNameCDDefinition>
  3381. </DefinitionMap>
  3382. <DefinitionMap key="line">
  3383. <MoreNameCDDefinition>
  3384. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  3385. <TableData class="com.fr.data.impl.NameTableData">
  3386. <Name>
  3387. <![CDATA[ds_login_chart1]]></Name>
  3388. </TableData>
  3389. <CategoryName value="日期"/>
  3390. <ChartSummaryColumn name="内部及外部用户" function="com.fr.data.util.function.NoneFunction" customName="内部及外部用户"/>
  3391. </MoreNameCDDefinition>
  3392. </DefinitionMap>
  3393. </DefinitionMapList>
  3394. </CustomDefinition>
  3395. </ChartDefinition>
  3396. </Chart>
  3397. <UUID uuid="84cdf5b0-fc10-4755-a598-bae9fe682e5c"/>
  3398. <tools hidden="true" sort="false" export="true" fullScreen="true"/>
  3399. <VanChartZoom>
  3400. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  3401. <from>
  3402. <![CDATA[]]></from>
  3403. <to>
  3404. <![CDATA[]]></to>
  3405. </VanChartZoom>
  3406. <refreshMoreLabel>
  3407. <attr moreLabel="false" autoTooltip="true"/>
  3408. <AttrTooltip>
  3409. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  3410. <TextAttr>
  3411. <Attr alignText="0" predefinedStyle="false">
  3412. <FRFont name="SimSun" style="0" size="72"/>
  3413. </Attr>
  3414. </TextAttr>
  3415. <AttrToolTipContent>
  3416. <TextAttr>
  3417. <Attr alignText="0" predefinedStyle="false">
  3418. <FRFont name="SimSun" style="0" size="72"/>
  3419. </Attr>
  3420. </TextAttr>
  3421. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  3422. <AttrTooltipRichText>
  3423. <Attr content="" isAuto="true" initParamsContent=""/>
  3424. <params>
  3425. <![CDATA[{}]]></params>
  3426. </AttrTooltipRichText>
  3427. </richText>
  3428. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3429. <AttrTooltipValueFormat>
  3430. <Attr enable="true"/>
  3431. </AttrTooltipValueFormat>
  3432. </richTextValue>
  3433. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3434. <AttrTooltipPercentFormat>
  3435. <Attr enable="false"/>
  3436. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3437. <![CDATA[#.##%]]></Format>
  3438. </AttrTooltipPercentFormat>
  3439. </richTextPercent>
  3440. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3441. <AttrToolTipCategoryFormat>
  3442. <Attr enable="false"/>
  3443. </AttrToolTipCategoryFormat>
  3444. </richTextCategory>
  3445. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3446. <AttrTooltipSeriesFormat>
  3447. <Attr enable="false"/>
  3448. </AttrTooltipSeriesFormat>
  3449. </richTextSeries>
  3450. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3451. <AttrTooltipChangedPercentFormat>
  3452. <Attr enable="false"/>
  3453. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3454. <![CDATA[#.##%]]></Format>
  3455. </AttrTooltipChangedPercentFormat>
  3456. </richTextChangedPercent>
  3457. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  3458. <AttrTooltipChangedValueFormat>
  3459. <Attr enable="false"/>
  3460. </AttrTooltipChangedValueFormat>
  3461. </richTextChangedValue>
  3462. <TableFieldCollection/>
  3463. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  3464. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3465. <AttrTooltipValueFormat>
  3466. <Attr enable="true"/>
  3467. </AttrTooltipValueFormat>
  3468. </value>
  3469. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3470. <AttrTooltipPercentFormat>
  3471. <Attr enable="false"/>
  3472. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3473. <![CDATA[#.##%]]></Format>
  3474. </AttrTooltipPercentFormat>
  3475. </percent>
  3476. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3477. <AttrToolTipCategoryFormat>
  3478. <Attr enable="true"/>
  3479. </AttrToolTipCategoryFormat>
  3480. </category>
  3481. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3482. <AttrTooltipSeriesFormat>
  3483. <Attr enable="true"/>
  3484. </AttrTooltipSeriesFormat>
  3485. </series>
  3486. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3487. <AttrTooltipChangedPercentFormat>
  3488. <Attr enable="false"/>
  3489. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3490. <![CDATA[#.##%]]></Format>
  3491. </AttrTooltipChangedPercentFormat>
  3492. </changedPercent>
  3493. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  3494. <AttrTooltipChangedValueFormat>
  3495. <Attr enable="true"/>
  3496. </AttrTooltipChangedValueFormat>
  3497. </changedValue>
  3498. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3499. </AttrToolTipContent>
  3500. <GI>
  3501. <AttrBackground>
  3502. <Background name="ColorBackground" color="-1"/>
  3503. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3504. </AttrBackground>
  3505. <AttrBorder>
  3506. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  3507. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  3508. </AttrBorder>
  3509. <AttrAlpha>
  3510. <Attr alpha="0.8"/>
  3511. </AttrAlpha>
  3512. </GI>
  3513. </AttrTooltip>
  3514. </refreshMoreLabel>
  3515. <ThemeAttr>
  3516. <Attr darkTheme="false" predefinedStyle="false"/>
  3517. </ThemeAttr>
  3518. </Chart>
  3519. </O>
  3520. <PrivilegeControl/>
  3521. <Expand/>
  3522. </C>
  3523. <C c="0" r="13" cs="9" s="8">
  3524. <O>
  3525. <![CDATA[图3.用户登录日统计]]></O>
  3526. <PrivilegeControl/>
  3527. <CellGUIAttr showAsHTML="true"/>
  3528. <CellPageAttr/>
  3529. <CellInsertPolicy/>
  3530. <Expand dir="0"/>
  3531. </C>
  3532. <C c="0" r="14" cs="9">
  3533. <O t="CC">
  3534. <LayoutAttr selectedIndex="0"/>
  3535. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  3536. <TextAttr>
  3537. <Attr alignText="0" predefinedStyle="false">
  3538. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  3539. </Attr>
  3540. </TextAttr>
  3541. </ChangeAttr>
  3542. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  3543. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  3544. <GI>
  3545. <AttrBackground>
  3546. <Background name="NullBackground"/>
  3547. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3548. </AttrBackground>
  3549. <AttrBorder>
  3550. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  3551. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  3552. </AttrBorder>
  3553. <AttrAlpha>
  3554. <Attr alpha="1.0"/>
  3555. </AttrAlpha>
  3556. </GI>
  3557. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  3558. <Title4VanChart>
  3559. <Title>
  3560. <GI>
  3561. <AttrBackground>
  3562. <Background name="NullBackground"/>
  3563. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3564. </AttrBackground>
  3565. <AttrBorder>
  3566. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3567. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  3568. </AttrBorder>
  3569. <AttrAlpha>
  3570. <Attr alpha="1.0"/>
  3571. </AttrAlpha>
  3572. </GI>
  3573. <O>
  3574. <![CDATA[新建图表标题]]></O>
  3575. <TextAttr>
  3576. <Attr alignText="0" predefinedStyle="false">
  3577. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  3578. </Attr>
  3579. </TextAttr>
  3580. <TitleVisible value="false" position="0"/>
  3581. </Title>
  3582. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  3583. </Title4VanChart>
  3584. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  3585. <VanChartPlotVersion version="20170715"/>
  3586. <GI>
  3587. <AttrBackground>
  3588. <Background name="NullBackground"/>
  3589. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3590. </AttrBackground>
  3591. <AttrBorder>
  3592. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3593. <newColor/>
  3594. </AttrBorder>
  3595. <AttrAlpha>
  3596. <Attr alpha="1.0"/>
  3597. </AttrAlpha>
  3598. </GI>
  3599. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  3600. <newHotTooltipStyle>
  3601. <AttrContents>
  3602. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  3603. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3604. <![CDATA[#.##]]></Format>
  3605. <PercentFormat>
  3606. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3607. <![CDATA[#0.##%]]></Format>
  3608. </PercentFormat>
  3609. </AttrContents>
  3610. </newHotTooltipStyle>
  3611. <ConditionCollection>
  3612. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  3613. <ConditionAttr name="">
  3614. <AttrList>
  3615. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  3616. <AttrTooltip>
  3617. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  3618. <TextAttr>
  3619. <Attr alignText="0" predefinedStyle="false">
  3620. <FRFont name="SimSun" style="0" size="72"/>
  3621. </Attr>
  3622. </TextAttr>
  3623. <AttrToolTipContent>
  3624. <TextAttr>
  3625. <Attr alignText="0" predefinedStyle="false">
  3626. <FRFont name="SimSun" style="0" size="72"/>
  3627. </Attr>
  3628. </TextAttr>
  3629. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  3630. <AttrTooltipRichText>
  3631. <Attr content="" isAuto="true" initParamsContent=""/>
  3632. <params>
  3633. <![CDATA[{}]]></params>
  3634. </AttrTooltipRichText>
  3635. </richText>
  3636. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3637. <AttrTooltipValueFormat>
  3638. <Attr enable="true"/>
  3639. </AttrTooltipValueFormat>
  3640. </richTextValue>
  3641. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3642. <AttrTooltipPercentFormat>
  3643. <Attr enable="false"/>
  3644. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3645. <![CDATA[#.##%]]></Format>
  3646. </AttrTooltipPercentFormat>
  3647. </richTextPercent>
  3648. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3649. <AttrToolTipCategoryFormat>
  3650. <Attr enable="true"/>
  3651. </AttrToolTipCategoryFormat>
  3652. </richTextCategory>
  3653. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3654. <AttrTooltipSeriesFormat>
  3655. <Attr enable="true"/>
  3656. </AttrTooltipSeriesFormat>
  3657. </richTextSeries>
  3658. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3659. <AttrTooltipChangedPercentFormat>
  3660. <Attr enable="false"/>
  3661. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3662. <![CDATA[#.##%]]></Format>
  3663. </AttrTooltipChangedPercentFormat>
  3664. </richTextChangedPercent>
  3665. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  3666. <AttrTooltipChangedValueFormat>
  3667. <Attr enable="false"/>
  3668. </AttrTooltipChangedValueFormat>
  3669. </richTextChangedValue>
  3670. <TableFieldCollection/>
  3671. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  3672. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3673. <AttrTooltipValueFormat>
  3674. <Attr enable="true"/>
  3675. </AttrTooltipValueFormat>
  3676. </value>
  3677. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3678. <AttrTooltipPercentFormat>
  3679. <Attr enable="false"/>
  3680. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3681. <![CDATA[#.##%]]></Format>
  3682. </AttrTooltipPercentFormat>
  3683. </percent>
  3684. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3685. <AttrToolTipCategoryFormat>
  3686. <Attr enable="true"/>
  3687. </AttrToolTipCategoryFormat>
  3688. </category>
  3689. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3690. <AttrTooltipSeriesFormat>
  3691. <Attr enable="true"/>
  3692. </AttrTooltipSeriesFormat>
  3693. </series>
  3694. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3695. <AttrTooltipChangedPercentFormat>
  3696. <Attr enable="false"/>
  3697. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3698. <![CDATA[#.##%]]></Format>
  3699. </AttrTooltipChangedPercentFormat>
  3700. </changedPercent>
  3701. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  3702. <AttrTooltipChangedValueFormat>
  3703. <Attr enable="false"/>
  3704. </AttrTooltipChangedValueFormat>
  3705. </changedValue>
  3706. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3707. </AttrToolTipContent>
  3708. <GI>
  3709. <AttrBackground>
  3710. <Background name="ColorBackground" color="-16777216"/>
  3711. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  3712. </AttrBackground>
  3713. <AttrBorder>
  3714. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  3715. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3716. </AttrBorder>
  3717. <AttrAlpha>
  3718. <Attr alpha="0.5"/>
  3719. </AttrAlpha>
  3720. </GI>
  3721. </AttrTooltip>
  3722. </Attr>
  3723. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  3724. <VanAttrLine>
  3725. <Attr lineType="solid" lineWidth="3.0" lineStyle="2" nullValueBreak="true"/>
  3726. </VanAttrLine>
  3727. </Attr>
  3728. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  3729. <VanAttrMarker>
  3730. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="3.5" width="30.0" height="30.0"/>
  3731. <Background name="NullBackground"/>
  3732. </VanAttrMarker>
  3733. </Attr>
  3734. </AttrList>
  3735. </ConditionAttr>
  3736. </DefaultAttr>
  3737. </ConditionCollection>
  3738. <Legend4VanChart>
  3739. <Legend>
  3740. <GI>
  3741. <AttrBackground>
  3742. <Background name="NullBackground"/>
  3743. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3744. </AttrBackground>
  3745. <AttrBorder>
  3746. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3747. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  3748. </AttrBorder>
  3749. <AttrAlpha>
  3750. <Attr alpha="1.0"/>
  3751. </AttrAlpha>
  3752. </GI>
  3753. <Attr position="3" visible="true" predefinedStyle="false"/>
  3754. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  3755. </Legend>
  3756. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  3757. </Legend4VanChart>
  3758. <DataSheet>
  3759. <GI>
  3760. <AttrBackground>
  3761. <Background name="NullBackground"/>
  3762. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3763. </AttrBackground>
  3764. <AttrBorder>
  3765. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  3766. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3767. </AttrBorder>
  3768. <AttrAlpha>
  3769. <Attr alpha="1.0"/>
  3770. </AttrAlpha>
  3771. </GI>
  3772. <Attr isVisible="false" predefinedStyle="false"/>
  3773. <FRFont name="宋体" style="0" size="72"/>
  3774. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3775. <![CDATA[#.##]]></Format>
  3776. </DataSheet>
  3777. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  3778. <newPlotFillStyle>
  3779. <AttrFillStyle>
  3780. <AFStyle colorStyle="1"/>
  3781. <FillStyleName fillStyleName=""/>
  3782. <isCustomFillStyle isCustomFillStyle="true"/>
  3783. <PredefinedStyle predefinedStyle="false"/>
  3784. <ColorList>
  3785. <OColor colvalue="-39373"/>
  3786. <OColor colvalue="-39373"/>
  3787. <OColor colvalue="-375997"/>
  3788. <OColor colvalue="-15290420"/>
  3789. <OColor colvalue="-8011743"/>
  3790. <OColor colvalue="-3069334"/>
  3791. <OColor colvalue="-15830324"/>
  3792. <OColor colvalue="-9657585"/>
  3793. <OColor colvalue="-375997"/>
  3794. <OColor colvalue="-15290420"/>
  3795. <OColor colvalue="-8011743"/>
  3796. <OColor colvalue="-3069334"/>
  3797. <OColor colvalue="-236032"/>
  3798. <OColor colvalue="-9657585"/>
  3799. <OColor colvalue="-683247"/>
  3800. <OColor colvalue="-375997"/>
  3801. <OColor colvalue="-15290420"/>
  3802. <OColor colvalue="-8011743"/>
  3803. <OColor colvalue="-3069334"/>
  3804. <OColor colvalue="-15830324"/>
  3805. <OColor colvalue="-9657585"/>
  3806. <OColor colvalue="-683247"/>
  3807. <OColor colvalue="-375997"/>
  3808. <OColor colvalue="-236032"/>
  3809. <OColor colvalue="-8011743"/>
  3810. <OColor colvalue="-3069334"/>
  3811. <OColor colvalue="-15830324"/>
  3812. <OColor colvalue="-9657585"/>
  3813. <OColor colvalue="-683247"/>
  3814. <OColor colvalue="-375997"/>
  3815. <OColor colvalue="-1"/>
  3816. </ColorList>
  3817. </AttrFillStyle>
  3818. </newPlotFillStyle>
  3819. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  3820. <GradientStyle>
  3821. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  3822. </GradientStyle>
  3823. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  3824. <XAxisList>
  3825. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  3826. <Title>
  3827. <GI>
  3828. <AttrBackground>
  3829. <Background name="NullBackground"/>
  3830. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3831. </AttrBackground>
  3832. <AttrBorder>
  3833. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3834. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3835. </AttrBorder>
  3836. <AttrAlpha>
  3837. <Attr alpha="1.0"/>
  3838. </AttrAlpha>
  3839. </GI>
  3840. <O>
  3841. <![CDATA[]]></O>
  3842. <TextAttr>
  3843. <Attr alignText="0" predefinedStyle="false">
  3844. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  3845. </Attr>
  3846. </TextAttr>
  3847. <TitleVisible value="true" position="0"/>
  3848. </Title>
  3849. <newAxisAttr isShowAxisLabel="true"/>
  3850. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  3851. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  3852. <AxisPosition value="3"/>
  3853. <TickLine201106 type="2" secType="0"/>
  3854. <ArrowShow arrowShow="false"/>
  3855. <TextAttr>
  3856. <Attr rotation="-46" alignText="0" predefinedStyle="false">
  3857. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  3858. </Attr>
  3859. </TextAttr>
  3860. <AxisLabelCount value="=14"/>
  3861. <AxisRange/>
  3862. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  3863. <ZoomAxisAttr isZoom="false"/>
  3864. <axisReversed axisReversed="false"/>
  3865. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  3866. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3867. <alertList/>
  3868. <customBackgroundList/>
  3869. </VanChartAxis>
  3870. </XAxisList>
  3871. <YAxisList>
  3872. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  3873. <Title>
  3874. <GI>
  3875. <AttrBackground>
  3876. <Background name="NullBackground"/>
  3877. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  3878. </AttrBackground>
  3879. <AttrBorder>
  3880. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  3881. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  3882. </AttrBorder>
  3883. <AttrAlpha>
  3884. <Attr alpha="1.0"/>
  3885. </AttrAlpha>
  3886. </GI>
  3887. <O>
  3888. <![CDATA[(个)]]></O>
  3889. <TextAttr>
  3890. <Attr alignText="0" predefinedStyle="false">
  3891. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  3892. </Attr>
  3893. </TextAttr>
  3894. <TitleVisible value="true" position="1"/>
  3895. </Title>
  3896. <newAxisAttr isShowAxisLabel="true"/>
  3897. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  3898. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  3899. <AxisPosition value="2"/>
  3900. <TickLine201106 type="2" secType="0"/>
  3901. <ArrowShow arrowShow="false"/>
  3902. <TextAttr>
  3903. <Attr alignText="0" predefinedStyle="false">
  3904. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  3905. </Attr>
  3906. </TextAttr>
  3907. <AxisLabelCount value="=1"/>
  3908. <AxisRange minValue="=500"/>
  3909. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  3910. <ZoomAxisAttr isZoom="false"/>
  3911. <axisReversed axisReversed="false"/>
  3912. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  3913. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  3914. <alertList/>
  3915. <customBackgroundList/>
  3916. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  3917. <ds>
  3918. <RadarYAxisTableDefinition>
  3919. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  3920. <attr/>
  3921. </RadarYAxisTableDefinition>
  3922. </ds>
  3923. </VanChartAxis>
  3924. </YAxisList>
  3925. <stackAndAxisCondition>
  3926. <ConditionCollection>
  3927. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  3928. <ConditionAttr name=""/>
  3929. </DefaultAttr>
  3930. </ConditionCollection>
  3931. </stackAndAxisCondition>
  3932. </Plot>
  3933. <ChartDefinition>
  3934. <OneValueCDDefinition seriesName="无" valueName="累计登录用户" function="com.fr.data.util.function.NoneFunction">
  3935. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  3936. <TableData class="com.fr.data.impl.NameTableData">
  3937. <Name>
  3938. <![CDATA[ds_login_chart2]]></Name>
  3939. </TableData>
  3940. <CategoryName value="日期"/>
  3941. </OneValueCDDefinition>
  3942. </ChartDefinition>
  3943. </Chart>
  3944. <UUID uuid="b382de9c-6dfc-4974-b328-159915c8b105"/>
  3945. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  3946. <VanChartZoom>
  3947. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  3948. <from>
  3949. <![CDATA[]]></from>
  3950. <to>
  3951. <![CDATA[]]></to>
  3952. </VanChartZoom>
  3953. <refreshMoreLabel>
  3954. <attr moreLabel="false" autoTooltip="true"/>
  3955. <AttrTooltip>
  3956. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  3957. <TextAttr>
  3958. <Attr alignText="0" predefinedStyle="false">
  3959. <FRFont name="SimSun" style="0" size="72"/>
  3960. </Attr>
  3961. </TextAttr>
  3962. <AttrToolTipContent>
  3963. <TextAttr>
  3964. <Attr alignText="0" predefinedStyle="false">
  3965. <FRFont name="SimSun" style="0" size="72"/>
  3966. </Attr>
  3967. </TextAttr>
  3968. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  3969. <AttrTooltipRichText>
  3970. <Attr content="" isAuto="true" initParamsContent=""/>
  3971. <params>
  3972. <![CDATA[{}]]></params>
  3973. </AttrTooltipRichText>
  3974. </richText>
  3975. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  3976. <AttrTooltipValueFormat>
  3977. <Attr enable="true"/>
  3978. </AttrTooltipValueFormat>
  3979. </richTextValue>
  3980. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  3981. <AttrTooltipPercentFormat>
  3982. <Attr enable="false"/>
  3983. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  3984. <![CDATA[#.##%]]></Format>
  3985. </AttrTooltipPercentFormat>
  3986. </richTextPercent>
  3987. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  3988. <AttrToolTipCategoryFormat>
  3989. <Attr enable="false"/>
  3990. </AttrToolTipCategoryFormat>
  3991. </richTextCategory>
  3992. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  3993. <AttrTooltipSeriesFormat>
  3994. <Attr enable="false"/>
  3995. </AttrTooltipSeriesFormat>
  3996. </richTextSeries>
  3997. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  3998. <AttrTooltipChangedPercentFormat>
  3999. <Attr enable="false"/>
  4000. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4001. <![CDATA[#.##%]]></Format>
  4002. </AttrTooltipChangedPercentFormat>
  4003. </richTextChangedPercent>
  4004. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  4005. <AttrTooltipChangedValueFormat>
  4006. <Attr enable="false"/>
  4007. </AttrTooltipChangedValueFormat>
  4008. </richTextChangedValue>
  4009. <TableFieldCollection/>
  4010. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  4011. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  4012. <AttrTooltipValueFormat>
  4013. <Attr enable="true"/>
  4014. </AttrTooltipValueFormat>
  4015. </value>
  4016. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  4017. <AttrTooltipPercentFormat>
  4018. <Attr enable="false"/>
  4019. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4020. <![CDATA[#.##%]]></Format>
  4021. </AttrTooltipPercentFormat>
  4022. </percent>
  4023. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  4024. <AttrToolTipCategoryFormat>
  4025. <Attr enable="true"/>
  4026. </AttrToolTipCategoryFormat>
  4027. </category>
  4028. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  4029. <AttrTooltipSeriesFormat>
  4030. <Attr enable="true"/>
  4031. </AttrTooltipSeriesFormat>
  4032. </series>
  4033. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  4034. <AttrTooltipChangedPercentFormat>
  4035. <Attr enable="false"/>
  4036. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4037. <![CDATA[#.##%]]></Format>
  4038. </AttrTooltipChangedPercentFormat>
  4039. </changedPercent>
  4040. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  4041. <AttrTooltipChangedValueFormat>
  4042. <Attr enable="true"/>
  4043. </AttrTooltipChangedValueFormat>
  4044. </changedValue>
  4045. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4046. </AttrToolTipContent>
  4047. <GI>
  4048. <AttrBackground>
  4049. <Background name="ColorBackground" color="-1"/>
  4050. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4051. </AttrBackground>
  4052. <AttrBorder>
  4053. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  4054. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  4055. </AttrBorder>
  4056. <AttrAlpha>
  4057. <Attr alpha="0.8"/>
  4058. </AttrAlpha>
  4059. </GI>
  4060. </AttrTooltip>
  4061. </refreshMoreLabel>
  4062. <ThemeAttr>
  4063. <Attr darkTheme="false" predefinedStyle="false"/>
  4064. </ThemeAttr>
  4065. </Chart>
  4066. </O>
  4067. <PrivilegeControl/>
  4068. <Expand/>
  4069. </C>
  4070. <C c="0" r="15" cs="9" s="8">
  4071. <O>
  4072. <![CDATA[图4.用户登录年累计]]></O>
  4073. <PrivilegeControl/>
  4074. <CellGUIAttr showAsHTML="true"/>
  4075. <CellPageAttr/>
  4076. <CellInsertPolicy/>
  4077. <Expand dir="0"/>
  4078. </C>
  4079. <C c="0" r="16" cs="9" s="11">
  4080. <O>
  4081. <![CDATA[ (二)平台访问情况]]></O>
  4082. <PrivilegeControl/>
  4083. <Expand/>
  4084. </C>
  4085. <C c="0" r="17" cs="9" s="12">
  4086. <O t="DSColumn">
  4087. <Attributes dsName="ds_intervie" columnName="total_number"/>
  4088. <Condition class="com.fr.data.condition.ListCondition"/>
  4089. <Complex/>
  4090. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  4091. <Result>
  4092. <![CDATA["&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;平台"+if($p_day_count > 1, MONTH(datedelta($p_start_day,-1)) + "月" + DAY(datedelta($p_start_day,-1)) + "日" + "至"+ MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日期间",(MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日"))+"总访问次数 (PV值) 为"+total_number+"次,其中未注册用户访问次数 (PV值) 为"+ unregister_number +"次,注册用户访问次数 (PV值) 为"+register_number+"次。中国范围内访问次数(PV值)"+ (total_number - view_count) +"次,国际范围内访问次数(PV值)"+view_count+"次。平台累计访问次数"+round(total_number_all/10000,2)+"万次。"]]></Result>
  4093. <Parameters/>
  4094. </O>
  4095. <PrivilegeControl/>
  4096. <CellGUIAttr adjustmode="1" showAsHTML="true"/>
  4097. <CellPageAttr/>
  4098. <CellInsertPolicy/>
  4099. <Expand dir="0"/>
  4100. </C>
  4101. <C c="0" r="18" cs="9">
  4102. <O t="CC">
  4103. <LayoutAttr selectedIndex="0"/>
  4104. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  4105. <TextAttr>
  4106. <Attr alignText="0" predefinedStyle="false">
  4107. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  4108. </Attr>
  4109. </TextAttr>
  4110. </ChangeAttr>
  4111. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  4112. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  4113. <GI>
  4114. <AttrBackground>
  4115. <Background name="NullBackground"/>
  4116. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4117. </AttrBackground>
  4118. <AttrBorder>
  4119. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  4120. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  4121. </AttrBorder>
  4122. <AttrAlpha>
  4123. <Attr alpha="1.0"/>
  4124. </AttrAlpha>
  4125. </GI>
  4126. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  4127. <Title4VanChart>
  4128. <Title>
  4129. <GI>
  4130. <AttrBackground>
  4131. <Background name="NullBackground"/>
  4132. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4133. </AttrBackground>
  4134. <AttrBorder>
  4135. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4136. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  4137. </AttrBorder>
  4138. <AttrAlpha>
  4139. <Attr alpha="1.0"/>
  4140. </AttrAlpha>
  4141. </GI>
  4142. <O>
  4143. <![CDATA[新建图表标题]]></O>
  4144. <TextAttr>
  4145. <Attr alignText="0" predefinedStyle="false">
  4146. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  4147. </Attr>
  4148. </TextAttr>
  4149. <TitleVisible value="false" position="0"/>
  4150. </Title>
  4151. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  4152. </Title4VanChart>
  4153. <Plot class="com.fr.plugin.chart.custom.VanChartCustomPlot">
  4154. <VanChartPlotVersion version="20170715"/>
  4155. <GI>
  4156. <AttrBackground>
  4157. <Background name="NullBackground"/>
  4158. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4159. </AttrBackground>
  4160. <AttrBorder>
  4161. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4162. <newColor/>
  4163. </AttrBorder>
  4164. <AttrAlpha>
  4165. <Attr alpha="1.0"/>
  4166. </AttrAlpha>
  4167. </GI>
  4168. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  4169. <newHotTooltipStyle>
  4170. <AttrContents>
  4171. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  4172. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4173. <![CDATA[#.##]]></Format>
  4174. <PercentFormat>
  4175. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4176. <![CDATA[#0.##%]]></Format>
  4177. </PercentFormat>
  4178. </AttrContents>
  4179. </newHotTooltipStyle>
  4180. <ConditionCollection>
  4181. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  4182. <ConditionAttr name=""/>
  4183. </DefaultAttr>
  4184. </ConditionCollection>
  4185. <Legend4VanChart>
  4186. <Legend>
  4187. <GI>
  4188. <AttrBackground>
  4189. <Background name="NullBackground"/>
  4190. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4191. </AttrBackground>
  4192. <AttrBorder>
  4193. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4194. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  4195. </AttrBorder>
  4196. <AttrAlpha>
  4197. <Attr alpha="1.0"/>
  4198. </AttrAlpha>
  4199. </GI>
  4200. <Attr position="3" visible="true" predefinedStyle="false"/>
  4201. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  4202. </Legend>
  4203. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  4204. </Legend4VanChart>
  4205. <DataSheet>
  4206. <GI>
  4207. <AttrBackground>
  4208. <Background name="NullBackground"/>
  4209. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4210. </AttrBackground>
  4211. <AttrBorder>
  4212. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  4213. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4214. </AttrBorder>
  4215. <AttrAlpha>
  4216. <Attr alpha="1.0"/>
  4217. </AttrAlpha>
  4218. </GI>
  4219. <Attr isVisible="false" predefinedStyle="false"/>
  4220. <FRFont name="SimSun" style="0" size="72"/>
  4221. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4222. <![CDATA[#.##]]></Format>
  4223. </DataSheet>
  4224. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  4225. <newPlotFillStyle>
  4226. <AttrFillStyle>
  4227. <AFStyle colorStyle="1"/>
  4228. <FillStyleName fillStyleName=""/>
  4229. <isCustomFillStyle isCustomFillStyle="true"/>
  4230. <PredefinedStyle predefinedStyle="false"/>
  4231. <ColorList>
  4232. <OColor colvalue="-9654529"/>
  4233. <OColor colvalue="-26368"/>
  4234. <OColor colvalue="-39373"/>
  4235. <OColor colvalue="-16750485"/>
  4236. <OColor colvalue="-3658447"/>
  4237. <OColor colvalue="-10331231"/>
  4238. <OColor colvalue="-7763575"/>
  4239. <OColor colvalue="-6514688"/>
  4240. <OColor colvalue="-16744620"/>
  4241. <OColor colvalue="-6187579"/>
  4242. <OColor colvalue="-15714713"/>
  4243. <OColor colvalue="-945550"/>
  4244. <OColor colvalue="-4092928"/>
  4245. <OColor colvalue="-13224394"/>
  4246. <OColor colvalue="-12423245"/>
  4247. <OColor colvalue="-10043521"/>
  4248. <OColor colvalue="-406154"/>
  4249. <OColor colvalue="-13031292"/>
  4250. <OColor colvalue="-16732559"/>
  4251. <OColor colvalue="-7099690"/>
  4252. <OColor colvalue="-11991199"/>
  4253. <OColor colvalue="-331445"/>
  4254. <OColor colvalue="-6991099"/>
  4255. <OColor colvalue="-16686527"/>
  4256. <OColor colvalue="-9205567"/>
  4257. <OColor colvalue="-7397856"/>
  4258. <OColor colvalue="-406154"/>
  4259. <OColor colvalue="-2712831"/>
  4260. <OColor colvalue="-4737097"/>
  4261. <OColor colvalue="-11460720"/>
  4262. <OColor colvalue="-6696775"/>
  4263. <OColor colvalue="-3685632"/>
  4264. </ColorList>
  4265. </AttrFillStyle>
  4266. </newPlotFillStyle>
  4267. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  4268. <GradientStyle>
  4269. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  4270. </GradientStyle>
  4271. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  4272. <XAxisList>
  4273. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  4274. <Title>
  4275. <GI>
  4276. <AttrBackground>
  4277. <Background name="NullBackground"/>
  4278. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4279. </AttrBackground>
  4280. <AttrBorder>
  4281. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4282. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4283. </AttrBorder>
  4284. <AttrAlpha>
  4285. <Attr alpha="1.0"/>
  4286. </AttrAlpha>
  4287. </GI>
  4288. <O>
  4289. <![CDATA[]]></O>
  4290. <TextAttr>
  4291. <Attr alignText="0" predefinedStyle="false">
  4292. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  4293. </Attr>
  4294. </TextAttr>
  4295. <TitleVisible value="true" position="0"/>
  4296. </Title>
  4297. <newAxisAttr isShowAxisLabel="true"/>
  4298. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  4299. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  4300. <AxisPosition value="3"/>
  4301. <TickLine201106 type="2" secType="0"/>
  4302. <ArrowShow arrowShow="false"/>
  4303. <TextAttr>
  4304. <Attr alignText="0" predefinedStyle="false">
  4305. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  4306. </Attr>
  4307. </TextAttr>
  4308. <AxisLabelCount value="=1"/>
  4309. <AxisRange/>
  4310. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  4311. <ZoomAxisAttr isZoom="false"/>
  4312. <axisReversed axisReversed="false"/>
  4313. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="multiLine" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  4314. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4315. <alertList/>
  4316. <customBackgroundList/>
  4317. </VanChartAxis>
  4318. </XAxisList>
  4319. <YAxisList>
  4320. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  4321. <Title>
  4322. <GI>
  4323. <AttrBackground>
  4324. <Background name="NullBackground"/>
  4325. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4326. </AttrBackground>
  4327. <AttrBorder>
  4328. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4329. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4330. </AttrBorder>
  4331. <AttrAlpha>
  4332. <Attr alpha="1.0"/>
  4333. </AttrAlpha>
  4334. </GI>
  4335. <O>
  4336. <![CDATA[(次)]]></O>
  4337. <TextAttr>
  4338. <Attr alignText="0" predefinedStyle="false">
  4339. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  4340. </Attr>
  4341. </TextAttr>
  4342. <TitleVisible value="true" position="1"/>
  4343. </Title>
  4344. <newAxisAttr isShowAxisLabel="true"/>
  4345. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  4346. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  4347. <AxisPosition value="2"/>
  4348. <TickLine201106 type="2" secType="0"/>
  4349. <ArrowShow arrowShow="false"/>
  4350. <TextAttr>
  4351. <Attr alignText="0" predefinedStyle="false">
  4352. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  4353. </Attr>
  4354. </TextAttr>
  4355. <AxisLabelCount value="=1"/>
  4356. <AxisRange minValue="=0"/>
  4357. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  4358. <ZoomAxisAttr isZoom="false"/>
  4359. <axisReversed axisReversed="false"/>
  4360. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  4361. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4362. <alertList/>
  4363. <customBackgroundList/>
  4364. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  4365. <ds>
  4366. <RadarYAxisTableDefinition>
  4367. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  4368. <attr/>
  4369. </RadarYAxisTableDefinition>
  4370. </ds>
  4371. </VanChartAxis>
  4372. </YAxisList>
  4373. <stackAndAxisCondition>
  4374. <ConditionCollection>
  4375. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  4376. <ConditionAttr name=""/>
  4377. </DefaultAttr>
  4378. </ConditionCollection>
  4379. </stackAndAxisCondition>
  4380. <VanChartCustomPlotAttr customStyle="column_line"/>
  4381. <CustomPlotList>
  4382. <VanChartPlot class="com.fr.plugin.chart.column.VanChartColumnPlot">
  4383. <VanChartPlotVersion version="20170715"/>
  4384. <GI>
  4385. <AttrBackground>
  4386. <Background name="NullBackground"/>
  4387. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4388. </AttrBackground>
  4389. <AttrBorder>
  4390. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4391. <newColor/>
  4392. </AttrBorder>
  4393. <AttrAlpha>
  4394. <Attr alpha="1.0"/>
  4395. </AttrAlpha>
  4396. </GI>
  4397. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  4398. <newHotTooltipStyle>
  4399. <AttrContents>
  4400. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  4401. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4402. <![CDATA[#.##]]></Format>
  4403. <PercentFormat>
  4404. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4405. <![CDATA[#0.##%]]></Format>
  4406. </PercentFormat>
  4407. </AttrContents>
  4408. </newHotTooltipStyle>
  4409. <ConditionCollection>
  4410. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  4411. <ConditionAttr name="">
  4412. <AttrList>
  4413. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  4414. <AttrTooltip>
  4415. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  4416. <TextAttr>
  4417. <Attr alignText="0" predefinedStyle="false">
  4418. <FRFont name="SimSun" style="0" size="72"/>
  4419. </Attr>
  4420. </TextAttr>
  4421. <AttrToolTipContent>
  4422. <TextAttr>
  4423. <Attr alignText="0" predefinedStyle="false">
  4424. <FRFont name="SimSun" style="0" size="72"/>
  4425. </Attr>
  4426. </TextAttr>
  4427. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  4428. <AttrTooltipRichText>
  4429. <Attr content="" isAuto="true" initParamsContent=""/>
  4430. <params>
  4431. <![CDATA[{}]]></params>
  4432. </AttrTooltipRichText>
  4433. </richText>
  4434. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  4435. <AttrTooltipValueFormat>
  4436. <Attr enable="true"/>
  4437. </AttrTooltipValueFormat>
  4438. </richTextValue>
  4439. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  4440. <AttrTooltipPercentFormat>
  4441. <Attr enable="false"/>
  4442. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4443. <![CDATA[#.##%]]></Format>
  4444. </AttrTooltipPercentFormat>
  4445. </richTextPercent>
  4446. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  4447. <AttrToolTipCategoryFormat>
  4448. <Attr enable="true"/>
  4449. </AttrToolTipCategoryFormat>
  4450. </richTextCategory>
  4451. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  4452. <AttrTooltipSeriesFormat>
  4453. <Attr enable="true"/>
  4454. </AttrTooltipSeriesFormat>
  4455. </richTextSeries>
  4456. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  4457. <AttrTooltipChangedPercentFormat>
  4458. <Attr enable="false"/>
  4459. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4460. <![CDATA[#.##%]]></Format>
  4461. </AttrTooltipChangedPercentFormat>
  4462. </richTextChangedPercent>
  4463. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  4464. <AttrTooltipChangedValueFormat>
  4465. <Attr enable="false"/>
  4466. </AttrTooltipChangedValueFormat>
  4467. </richTextChangedValue>
  4468. <TableFieldCollection/>
  4469. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  4470. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  4471. <AttrTooltipValueFormat>
  4472. <Attr enable="true"/>
  4473. </AttrTooltipValueFormat>
  4474. </value>
  4475. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  4476. <AttrTooltipPercentFormat>
  4477. <Attr enable="false"/>
  4478. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4479. <![CDATA[#.##%]]></Format>
  4480. </AttrTooltipPercentFormat>
  4481. </percent>
  4482. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  4483. <AttrToolTipCategoryFormat>
  4484. <Attr enable="true"/>
  4485. </AttrToolTipCategoryFormat>
  4486. </category>
  4487. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  4488. <AttrTooltipSeriesFormat>
  4489. <Attr enable="true"/>
  4490. </AttrTooltipSeriesFormat>
  4491. </series>
  4492. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  4493. <AttrTooltipChangedPercentFormat>
  4494. <Attr enable="false"/>
  4495. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4496. <![CDATA[#.##%]]></Format>
  4497. </AttrTooltipChangedPercentFormat>
  4498. </changedPercent>
  4499. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  4500. <AttrTooltipChangedValueFormat>
  4501. <Attr enable="false"/>
  4502. </AttrTooltipChangedValueFormat>
  4503. </changedValue>
  4504. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4505. </AttrToolTipContent>
  4506. <GI>
  4507. <AttrBackground>
  4508. <Background name="ColorBackground" color="-16777216"/>
  4509. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  4510. </AttrBackground>
  4511. <AttrBorder>
  4512. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  4513. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4514. </AttrBorder>
  4515. <AttrAlpha>
  4516. <Attr alpha="0.5"/>
  4517. </AttrAlpha>
  4518. </GI>
  4519. </AttrTooltip>
  4520. </Attr>
  4521. <Attr class="com.fr.chart.base.AttrBorder">
  4522. <AttrBorder>
  4523. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  4524. <newColor borderColor="-1" autoColor="false" predefinedStyle="false"/>
  4525. </AttrBorder>
  4526. </Attr>
  4527. <Attr class="com.fr.chart.base.AttrAlpha">
  4528. <AttrAlpha>
  4529. <Attr alpha="1.0"/>
  4530. </AttrAlpha>
  4531. </Attr>
  4532. </AttrList>
  4533. </ConditionAttr>
  4534. </DefaultAttr>
  4535. </ConditionCollection>
  4536. <Legend4VanChart>
  4537. <Legend>
  4538. <GI>
  4539. <AttrBackground>
  4540. <Background name="NullBackground"/>
  4541. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4542. </AttrBackground>
  4543. <AttrBorder>
  4544. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4545. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  4546. </AttrBorder>
  4547. <AttrAlpha>
  4548. <Attr alpha="1.0"/>
  4549. </AttrAlpha>
  4550. </GI>
  4551. <Attr position="4" visible="true" predefinedStyle="false"/>
  4552. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  4553. </Legend>
  4554. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  4555. </Legend4VanChart>
  4556. <DataSheet>
  4557. <GI>
  4558. <AttrBackground>
  4559. <Background name="NullBackground"/>
  4560. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4561. </AttrBackground>
  4562. <AttrBorder>
  4563. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  4564. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4565. </AttrBorder>
  4566. <AttrAlpha>
  4567. <Attr alpha="1.0"/>
  4568. </AttrAlpha>
  4569. </GI>
  4570. <Attr isVisible="false" predefinedStyle="false"/>
  4571. <FRFont name="SimSun" style="0" size="72"/>
  4572. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4573. <![CDATA[#.##]]></Format>
  4574. </DataSheet>
  4575. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  4576. <newPlotFillStyle>
  4577. <AttrFillStyle>
  4578. <AFStyle colorStyle="1"/>
  4579. <FillStyleName fillStyleName="新特性"/>
  4580. <isCustomFillStyle isCustomFillStyle="false"/>
  4581. <PredefinedStyle predefinedStyle="false"/>
  4582. <ColorList>
  4583. <OColor colvalue="-10243346"/>
  4584. <OColor colvalue="-8988015"/>
  4585. <OColor colvalue="-472193"/>
  4586. <OColor colvalue="-486008"/>
  4587. <OColor colvalue="-8595761"/>
  4588. <OColor colvalue="-7236949"/>
  4589. <OColor colvalue="-8873759"/>
  4590. <OColor colvalue="-1071514"/>
  4591. <OColor colvalue="-1188474"/>
  4592. <OColor colvalue="-6715442"/>
  4593. <OColor colvalue="-10243346"/>
  4594. <OColor colvalue="-8988015"/>
  4595. <OColor colvalue="-472193"/>
  4596. <OColor colvalue="-486008"/>
  4597. <OColor colvalue="-8595761"/>
  4598. <OColor colvalue="-7236949"/>
  4599. <OColor colvalue="-8873759"/>
  4600. <OColor colvalue="-1071514"/>
  4601. <OColor colvalue="-1188474"/>
  4602. <OColor colvalue="-6715442"/>
  4603. <OColor colvalue="-10243346"/>
  4604. <OColor colvalue="-8988015"/>
  4605. <OColor colvalue="-472193"/>
  4606. <OColor colvalue="-486008"/>
  4607. <OColor colvalue="-8595761"/>
  4608. <OColor colvalue="-7236949"/>
  4609. <OColor colvalue="-8873759"/>
  4610. <OColor colvalue="-1071514"/>
  4611. <OColor colvalue="-1188474"/>
  4612. <OColor colvalue="-6715442"/>
  4613. <OColor colvalue="-10243346"/>
  4614. <OColor colvalue="-8988015"/>
  4615. </ColorList>
  4616. </AttrFillStyle>
  4617. </newPlotFillStyle>
  4618. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  4619. <GradientStyle>
  4620. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  4621. </GradientStyle>
  4622. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  4623. <XAxisList>
  4624. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  4625. <Title>
  4626. <GI>
  4627. <AttrBackground>
  4628. <Background name="NullBackground"/>
  4629. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4630. </AttrBackground>
  4631. <AttrBorder>
  4632. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4633. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4634. </AttrBorder>
  4635. <AttrAlpha>
  4636. <Attr alpha="1.0"/>
  4637. </AttrAlpha>
  4638. </GI>
  4639. <O>
  4640. <![CDATA[]]></O>
  4641. <TextAttr>
  4642. <Attr alignText="0" predefinedStyle="false">
  4643. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  4644. </Attr>
  4645. </TextAttr>
  4646. <TitleVisible value="true" position="0"/>
  4647. </Title>
  4648. <newAxisAttr isShowAxisLabel="true"/>
  4649. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  4650. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  4651. <AxisPosition value="3"/>
  4652. <TickLine201106 type="2" secType="0"/>
  4653. <ArrowShow arrowShow="false"/>
  4654. <TextAttr>
  4655. <Attr alignText="0" predefinedStyle="false">
  4656. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  4657. </Attr>
  4658. </TextAttr>
  4659. <AxisLabelCount value="=1"/>
  4660. <AxisRange/>
  4661. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  4662. <ZoomAxisAttr isZoom="false"/>
  4663. <axisReversed axisReversed="false"/>
  4664. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="multiLine" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  4665. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4666. <alertList/>
  4667. <customBackgroundList/>
  4668. </VanChartAxis>
  4669. </XAxisList>
  4670. <YAxisList>
  4671. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  4672. <Title>
  4673. <GI>
  4674. <AttrBackground>
  4675. <Background name="NullBackground"/>
  4676. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4677. </AttrBackground>
  4678. <AttrBorder>
  4679. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4680. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4681. </AttrBorder>
  4682. <AttrAlpha>
  4683. <Attr alpha="1.0"/>
  4684. </AttrAlpha>
  4685. </GI>
  4686. <O>
  4687. <![CDATA[(次)]]></O>
  4688. <TextAttr>
  4689. <Attr alignText="0" predefinedStyle="false">
  4690. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  4691. </Attr>
  4692. </TextAttr>
  4693. <TitleVisible value="true" position="1"/>
  4694. </Title>
  4695. <newAxisAttr isShowAxisLabel="true"/>
  4696. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  4697. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  4698. <AxisPosition value="2"/>
  4699. <TickLine201106 type="2" secType="0"/>
  4700. <ArrowShow arrowShow="false"/>
  4701. <TextAttr>
  4702. <Attr alignText="0" predefinedStyle="false">
  4703. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  4704. </Attr>
  4705. </TextAttr>
  4706. <AxisLabelCount value="=1"/>
  4707. <AxisRange minValue="=0"/>
  4708. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  4709. <ZoomAxisAttr isZoom="false"/>
  4710. <axisReversed axisReversed="false"/>
  4711. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  4712. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4713. <alertList/>
  4714. <customBackgroundList/>
  4715. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  4716. <ds>
  4717. <RadarYAxisTableDefinition>
  4718. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  4719. <attr/>
  4720. </RadarYAxisTableDefinition>
  4721. </ds>
  4722. </VanChartAxis>
  4723. </YAxisList>
  4724. <stackAndAxisCondition>
  4725. <ConditionCollection>
  4726. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  4727. <ConditionAttr name=""/>
  4728. </DefaultAttr>
  4729. <ConditionAttrList>
  4730. <List index="0">
  4731. <ConditionAttr name="堆积和坐标轴1">
  4732. <AttrList>
  4733. <Attr class="com.fr.plugin.chart.base.AttrSeriesStackAndAxis">
  4734. <AttrSeriesStackAndAxis>
  4735. <Attr xAxisIndex="0" yAxisIndex="0" stacked="false" percentStacked="false" stackID="堆积和坐标轴1"/>
  4736. </AttrSeriesStackAndAxis>
  4737. </Attr>
  4738. </AttrList>
  4739. <Condition class="com.fr.data.condition.ListCondition"/>
  4740. </ConditionAttr>
  4741. </List>
  4742. </ConditionAttrList>
  4743. </ConditionCollection>
  4744. </stackAndAxisCondition>
  4745. <VanChartColumnPlotAttr seriesOverlapPercent="20.0" categoryIntervalPercent="20.0" fixedWidth="false" columnWidth="0" filledWithImage="false" isBar="false"/>
  4746. </VanChartPlot>
  4747. <VanChartPlot class="com.fr.plugin.chart.line.VanChartLinePlot">
  4748. <VanChartPlotVersion version="20170715"/>
  4749. <GI>
  4750. <AttrBackground>
  4751. <Background name="NullBackground"/>
  4752. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4753. </AttrBackground>
  4754. <AttrBorder>
  4755. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4756. <newColor/>
  4757. </AttrBorder>
  4758. <AttrAlpha>
  4759. <Attr alpha="1.0"/>
  4760. </AttrAlpha>
  4761. </GI>
  4762. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  4763. <newHotTooltipStyle>
  4764. <AttrContents>
  4765. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  4766. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4767. <![CDATA[#.##]]></Format>
  4768. <PercentFormat>
  4769. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4770. <![CDATA[#0.##%]]></Format>
  4771. </PercentFormat>
  4772. </AttrContents>
  4773. </newHotTooltipStyle>
  4774. <ConditionCollection>
  4775. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  4776. <ConditionAttr name="">
  4777. <AttrList>
  4778. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  4779. <AttrTooltip>
  4780. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  4781. <TextAttr>
  4782. <Attr alignText="0" predefinedStyle="false">
  4783. <FRFont name="SimSun" style="0" size="72"/>
  4784. </Attr>
  4785. </TextAttr>
  4786. <AttrToolTipContent>
  4787. <TextAttr>
  4788. <Attr alignText="0" predefinedStyle="false">
  4789. <FRFont name="SimSun" style="0" size="72"/>
  4790. </Attr>
  4791. </TextAttr>
  4792. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  4793. <AttrTooltipRichText>
  4794. <Attr content="" isAuto="true" initParamsContent=""/>
  4795. <params>
  4796. <![CDATA[{}]]></params>
  4797. </AttrTooltipRichText>
  4798. </richText>
  4799. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  4800. <AttrTooltipValueFormat>
  4801. <Attr enable="true"/>
  4802. </AttrTooltipValueFormat>
  4803. </richTextValue>
  4804. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  4805. <AttrTooltipPercentFormat>
  4806. <Attr enable="false"/>
  4807. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4808. <![CDATA[#.##%]]></Format>
  4809. </AttrTooltipPercentFormat>
  4810. </richTextPercent>
  4811. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  4812. <AttrToolTipCategoryFormat>
  4813. <Attr enable="true"/>
  4814. </AttrToolTipCategoryFormat>
  4815. </richTextCategory>
  4816. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  4817. <AttrTooltipSeriesFormat>
  4818. <Attr enable="true"/>
  4819. </AttrTooltipSeriesFormat>
  4820. </richTextSeries>
  4821. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  4822. <AttrTooltipChangedPercentFormat>
  4823. <Attr enable="false"/>
  4824. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4825. <![CDATA[#.##%]]></Format>
  4826. </AttrTooltipChangedPercentFormat>
  4827. </richTextChangedPercent>
  4828. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  4829. <AttrTooltipChangedValueFormat>
  4830. <Attr enable="false"/>
  4831. </AttrTooltipChangedValueFormat>
  4832. </richTextChangedValue>
  4833. <TableFieldCollection/>
  4834. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  4835. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  4836. <AttrTooltipValueFormat>
  4837. <Attr enable="true"/>
  4838. </AttrTooltipValueFormat>
  4839. </value>
  4840. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  4841. <AttrTooltipPercentFormat>
  4842. <Attr enable="false"/>
  4843. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4844. <![CDATA[#.##%]]></Format>
  4845. </AttrTooltipPercentFormat>
  4846. </percent>
  4847. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  4848. <AttrToolTipCategoryFormat>
  4849. <Attr enable="true"/>
  4850. </AttrToolTipCategoryFormat>
  4851. </category>
  4852. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  4853. <AttrTooltipSeriesFormat>
  4854. <Attr enable="true"/>
  4855. </AttrTooltipSeriesFormat>
  4856. </series>
  4857. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  4858. <AttrTooltipChangedPercentFormat>
  4859. <Attr enable="false"/>
  4860. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4861. <![CDATA[#.##%]]></Format>
  4862. </AttrTooltipChangedPercentFormat>
  4863. </changedPercent>
  4864. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  4865. <AttrTooltipChangedValueFormat>
  4866. <Attr enable="false"/>
  4867. </AttrTooltipChangedValueFormat>
  4868. </changedValue>
  4869. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  4870. </AttrToolTipContent>
  4871. <GI>
  4872. <AttrBackground>
  4873. <Background name="ColorBackground" color="-16777216"/>
  4874. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  4875. </AttrBackground>
  4876. <AttrBorder>
  4877. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  4878. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4879. </AttrBorder>
  4880. <AttrAlpha>
  4881. <Attr alpha="0.5"/>
  4882. </AttrAlpha>
  4883. </GI>
  4884. </AttrTooltip>
  4885. </Attr>
  4886. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  4887. <VanAttrLine>
  4888. <Attr lineType="solid" lineWidth="2.0" lineStyle="2" nullValueBreak="true"/>
  4889. </VanAttrLine>
  4890. </Attr>
  4891. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  4892. <VanAttrMarker>
  4893. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="4.5" width="30.0" height="30.0"/>
  4894. <Background name="NullBackground"/>
  4895. </VanAttrMarker>
  4896. </Attr>
  4897. </AttrList>
  4898. </ConditionAttr>
  4899. </DefaultAttr>
  4900. </ConditionCollection>
  4901. <Legend4VanChart>
  4902. <Legend>
  4903. <GI>
  4904. <AttrBackground>
  4905. <Background name="NullBackground"/>
  4906. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4907. </AttrBackground>
  4908. <AttrBorder>
  4909. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4910. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  4911. </AttrBorder>
  4912. <AttrAlpha>
  4913. <Attr alpha="1.0"/>
  4914. </AttrAlpha>
  4915. </GI>
  4916. <Attr position="4" visible="true" predefinedStyle="false"/>
  4917. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  4918. </Legend>
  4919. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  4920. </Legend4VanChart>
  4921. <DataSheet>
  4922. <GI>
  4923. <AttrBackground>
  4924. <Background name="NullBackground"/>
  4925. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4926. </AttrBackground>
  4927. <AttrBorder>
  4928. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  4929. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4930. </AttrBorder>
  4931. <AttrAlpha>
  4932. <Attr alpha="1.0"/>
  4933. </AttrAlpha>
  4934. </GI>
  4935. <Attr isVisible="false" predefinedStyle="false"/>
  4936. <FRFont name="SimSun" style="0" size="72"/>
  4937. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  4938. <![CDATA[#.##]]></Format>
  4939. </DataSheet>
  4940. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  4941. <newPlotFillStyle>
  4942. <AttrFillStyle>
  4943. <AFStyle colorStyle="1"/>
  4944. <FillStyleName fillStyleName="新特性"/>
  4945. <isCustomFillStyle isCustomFillStyle="false"/>
  4946. <PredefinedStyle predefinedStyle="false"/>
  4947. <ColorList>
  4948. <OColor colvalue="-10243346"/>
  4949. <OColor colvalue="-8988015"/>
  4950. <OColor colvalue="-472193"/>
  4951. <OColor colvalue="-486008"/>
  4952. <OColor colvalue="-8595761"/>
  4953. <OColor colvalue="-7236949"/>
  4954. <OColor colvalue="-8873759"/>
  4955. <OColor colvalue="-1071514"/>
  4956. <OColor colvalue="-1188474"/>
  4957. <OColor colvalue="-6715442"/>
  4958. <OColor colvalue="-10243346"/>
  4959. <OColor colvalue="-8988015"/>
  4960. <OColor colvalue="-472193"/>
  4961. <OColor colvalue="-486008"/>
  4962. <OColor colvalue="-8595761"/>
  4963. <OColor colvalue="-7236949"/>
  4964. <OColor colvalue="-8873759"/>
  4965. <OColor colvalue="-1071514"/>
  4966. <OColor colvalue="-1188474"/>
  4967. <OColor colvalue="-6715442"/>
  4968. <OColor colvalue="-10243346"/>
  4969. <OColor colvalue="-8988015"/>
  4970. <OColor colvalue="-472193"/>
  4971. <OColor colvalue="-486008"/>
  4972. <OColor colvalue="-8595761"/>
  4973. <OColor colvalue="-7236949"/>
  4974. <OColor colvalue="-8873759"/>
  4975. <OColor colvalue="-1071514"/>
  4976. <OColor colvalue="-1188474"/>
  4977. <OColor colvalue="-6715442"/>
  4978. <OColor colvalue="-10243346"/>
  4979. <OColor colvalue="-8988015"/>
  4980. </ColorList>
  4981. </AttrFillStyle>
  4982. </newPlotFillStyle>
  4983. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  4984. <GradientStyle>
  4985. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  4986. </GradientStyle>
  4987. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  4988. <XAxisList>
  4989. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  4990. <Title>
  4991. <GI>
  4992. <AttrBackground>
  4993. <Background name="NullBackground"/>
  4994. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  4995. </AttrBackground>
  4996. <AttrBorder>
  4997. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  4998. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  4999. </AttrBorder>
  5000. <AttrAlpha>
  5001. <Attr alpha="1.0"/>
  5002. </AttrAlpha>
  5003. </GI>
  5004. <O>
  5005. <![CDATA[]]></O>
  5006. <TextAttr>
  5007. <Attr alignText="0" predefinedStyle="false">
  5008. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  5009. </Attr>
  5010. </TextAttr>
  5011. <TitleVisible value="true" position="0"/>
  5012. </Title>
  5013. <newAxisAttr isShowAxisLabel="true"/>
  5014. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  5015. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  5016. <AxisPosition value="3"/>
  5017. <TickLine201106 type="2" secType="0"/>
  5018. <ArrowShow arrowShow="false"/>
  5019. <TextAttr>
  5020. <Attr alignText="0" predefinedStyle="false">
  5021. <FRFont name="Verdana" style="0" size="80" foreground="-10066330"/>
  5022. </Attr>
  5023. </TextAttr>
  5024. <AxisLabelCount value="=1"/>
  5025. <AxisRange/>
  5026. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  5027. <ZoomAxisAttr isZoom="false"/>
  5028. <axisReversed axisReversed="false"/>
  5029. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="multiLine" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  5030. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5031. <alertList/>
  5032. <customBackgroundList/>
  5033. </VanChartAxis>
  5034. </XAxisList>
  5035. <YAxisList>
  5036. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  5037. <Title>
  5038. <GI>
  5039. <AttrBackground>
  5040. <Background name="NullBackground"/>
  5041. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5042. </AttrBackground>
  5043. <AttrBorder>
  5044. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  5045. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  5046. </AttrBorder>
  5047. <AttrAlpha>
  5048. <Attr alpha="1.0"/>
  5049. </AttrAlpha>
  5050. </GI>
  5051. <O>
  5052. <![CDATA[(次)]]></O>
  5053. <TextAttr>
  5054. <Attr alignText="0" predefinedStyle="false">
  5055. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  5056. </Attr>
  5057. </TextAttr>
  5058. <TitleVisible value="true" position="1"/>
  5059. </Title>
  5060. <newAxisAttr isShowAxisLabel="true"/>
  5061. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  5062. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  5063. <AxisPosition value="2"/>
  5064. <TickLine201106 type="2" secType="0"/>
  5065. <ArrowShow arrowShow="false"/>
  5066. <TextAttr>
  5067. <Attr alignText="0" predefinedStyle="false">
  5068. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  5069. </Attr>
  5070. </TextAttr>
  5071. <AxisLabelCount value="=1"/>
  5072. <AxisRange minValue="=0"/>
  5073. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  5074. <ZoomAxisAttr isZoom="false"/>
  5075. <axisReversed axisReversed="false"/>
  5076. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  5077. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5078. <alertList/>
  5079. <customBackgroundList/>
  5080. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  5081. <ds>
  5082. <RadarYAxisTableDefinition>
  5083. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  5084. <attr/>
  5085. </RadarYAxisTableDefinition>
  5086. </ds>
  5087. </VanChartAxis>
  5088. </YAxisList>
  5089. <stackAndAxisCondition>
  5090. <ConditionCollection>
  5091. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  5092. <ConditionAttr name=""/>
  5093. </DefaultAttr>
  5094. </ConditionCollection>
  5095. </stackAndAxisCondition>
  5096. </VanChartPlot>
  5097. </CustomPlotList>
  5098. </Plot>
  5099. <ChartDefinition>
  5100. <CustomDefinition>
  5101. <DefinitionMapList>
  5102. <DefinitionMap key="column">
  5103. <MoreNameCDDefinition>
  5104. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  5105. <TableData class="com.fr.data.impl.NameTableData">
  5106. <Name>
  5107. <![CDATA[ds_intervie_chart1]]></Name>
  5108. </TableData>
  5109. <CategoryName value="日期"/>
  5110. <ChartSummaryColumn name="注册用户" function="com.fr.data.util.function.NoneFunction" customName="注册用户"/>
  5111. <ChartSummaryColumn name="未注册用户" function="com.fr.data.util.function.NoneFunction" customName="未注册用户"/>
  5112. </MoreNameCDDefinition>
  5113. </DefinitionMap>
  5114. <DefinitionMap key="line">
  5115. <MoreNameCDDefinition>
  5116. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  5117. <TableData class="com.fr.data.impl.NameTableData">
  5118. <Name>
  5119. <![CDATA[ds_intervie_chart1]]></Name>
  5120. </TableData>
  5121. <CategoryName value="日期"/>
  5122. <ChartSummaryColumn name="访问总次数" function="com.fr.data.util.function.NoneFunction" customName="访问总次数"/>
  5123. </MoreNameCDDefinition>
  5124. </DefinitionMap>
  5125. </DefinitionMapList>
  5126. </CustomDefinition>
  5127. </ChartDefinition>
  5128. </Chart>
  5129. <UUID uuid="63bd5e74-d189-4deb-88d0-d10e5df6bf17"/>
  5130. <tools hidden="true" sort="false" export="true" fullScreen="true"/>
  5131. <VanChartZoom>
  5132. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  5133. <from>
  5134. <![CDATA[]]></from>
  5135. <to>
  5136. <![CDATA[]]></to>
  5137. </VanChartZoom>
  5138. <refreshMoreLabel>
  5139. <attr moreLabel="false" autoTooltip="true"/>
  5140. <AttrTooltip>
  5141. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  5142. <TextAttr>
  5143. <Attr alignText="0" predefinedStyle="false">
  5144. <FRFont name="SimSun" style="0" size="72"/>
  5145. </Attr>
  5146. </TextAttr>
  5147. <AttrToolTipContent>
  5148. <TextAttr>
  5149. <Attr alignText="0" predefinedStyle="false">
  5150. <FRFont name="SimSun" style="0" size="72"/>
  5151. </Attr>
  5152. </TextAttr>
  5153. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  5154. <AttrTooltipRichText>
  5155. <Attr content="" isAuto="true" initParamsContent=""/>
  5156. <params>
  5157. <![CDATA[{}]]></params>
  5158. </AttrTooltipRichText>
  5159. </richText>
  5160. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  5161. <AttrTooltipValueFormat>
  5162. <Attr enable="true"/>
  5163. </AttrTooltipValueFormat>
  5164. </richTextValue>
  5165. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  5166. <AttrTooltipPercentFormat>
  5167. <Attr enable="false"/>
  5168. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5169. <![CDATA[#.##%]]></Format>
  5170. </AttrTooltipPercentFormat>
  5171. </richTextPercent>
  5172. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  5173. <AttrToolTipCategoryFormat>
  5174. <Attr enable="false"/>
  5175. </AttrToolTipCategoryFormat>
  5176. </richTextCategory>
  5177. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  5178. <AttrTooltipSeriesFormat>
  5179. <Attr enable="false"/>
  5180. </AttrTooltipSeriesFormat>
  5181. </richTextSeries>
  5182. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  5183. <AttrTooltipChangedPercentFormat>
  5184. <Attr enable="false"/>
  5185. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5186. <![CDATA[#.##%]]></Format>
  5187. </AttrTooltipChangedPercentFormat>
  5188. </richTextChangedPercent>
  5189. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  5190. <AttrTooltipChangedValueFormat>
  5191. <Attr enable="false"/>
  5192. </AttrTooltipChangedValueFormat>
  5193. </richTextChangedValue>
  5194. <TableFieldCollection/>
  5195. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  5196. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  5197. <AttrTooltipValueFormat>
  5198. <Attr enable="true"/>
  5199. </AttrTooltipValueFormat>
  5200. </value>
  5201. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  5202. <AttrTooltipPercentFormat>
  5203. <Attr enable="false"/>
  5204. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5205. <![CDATA[#.##%]]></Format>
  5206. </AttrTooltipPercentFormat>
  5207. </percent>
  5208. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  5209. <AttrToolTipCategoryFormat>
  5210. <Attr enable="true"/>
  5211. </AttrToolTipCategoryFormat>
  5212. </category>
  5213. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  5214. <AttrTooltipSeriesFormat>
  5215. <Attr enable="true"/>
  5216. </AttrTooltipSeriesFormat>
  5217. </series>
  5218. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  5219. <AttrTooltipChangedPercentFormat>
  5220. <Attr enable="false"/>
  5221. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5222. <![CDATA[#.##%]]></Format>
  5223. </AttrTooltipChangedPercentFormat>
  5224. </changedPercent>
  5225. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  5226. <AttrTooltipChangedValueFormat>
  5227. <Attr enable="true"/>
  5228. </AttrTooltipChangedValueFormat>
  5229. </changedValue>
  5230. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5231. </AttrToolTipContent>
  5232. <GI>
  5233. <AttrBackground>
  5234. <Background name="ColorBackground" color="-1"/>
  5235. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5236. </AttrBackground>
  5237. <AttrBorder>
  5238. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  5239. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  5240. </AttrBorder>
  5241. <AttrAlpha>
  5242. <Attr alpha="0.8"/>
  5243. </AttrAlpha>
  5244. </GI>
  5245. </AttrTooltip>
  5246. </refreshMoreLabel>
  5247. <ThemeAttr>
  5248. <Attr darkTheme="false" predefinedStyle="false"/>
  5249. </ThemeAttr>
  5250. </Chart>
  5251. </O>
  5252. <PrivilegeControl/>
  5253. <Expand/>
  5254. </C>
  5255. <C c="0" r="19" cs="9" s="8">
  5256. <O>
  5257. <![CDATA[图5.访问量日统计]]></O>
  5258. <PrivilegeControl/>
  5259. <CellGUIAttr showAsHTML="true"/>
  5260. <CellPageAttr/>
  5261. <CellInsertPolicy/>
  5262. <Expand dir="0"/>
  5263. </C>
  5264. <C c="0" r="20" cs="9">
  5265. <O t="CC">
  5266. <LayoutAttr selectedIndex="0"/>
  5267. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  5268. <TextAttr>
  5269. <Attr alignText="0" predefinedStyle="false">
  5270. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  5271. </Attr>
  5272. </TextAttr>
  5273. </ChangeAttr>
  5274. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  5275. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  5276. <GI>
  5277. <AttrBackground>
  5278. <Background name="NullBackground"/>
  5279. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5280. </AttrBackground>
  5281. <AttrBorder>
  5282. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  5283. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  5284. </AttrBorder>
  5285. <AttrAlpha>
  5286. <Attr alpha="1.0"/>
  5287. </AttrAlpha>
  5288. </GI>
  5289. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  5290. <Title4VanChart>
  5291. <Title>
  5292. <GI>
  5293. <AttrBackground>
  5294. <Background name="NullBackground"/>
  5295. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5296. </AttrBackground>
  5297. <AttrBorder>
  5298. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  5299. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  5300. </AttrBorder>
  5301. <AttrAlpha>
  5302. <Attr alpha="1.0"/>
  5303. </AttrAlpha>
  5304. </GI>
  5305. <O>
  5306. <![CDATA[新建图表标题]]></O>
  5307. <TextAttr>
  5308. <Attr alignText="0" predefinedStyle="false">
  5309. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  5310. </Attr>
  5311. </TextAttr>
  5312. <TitleVisible value="false" position="0"/>
  5313. </Title>
  5314. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  5315. </Title4VanChart>
  5316. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  5317. <VanChartPlotVersion version="20170715"/>
  5318. <GI>
  5319. <AttrBackground>
  5320. <Background name="NullBackground"/>
  5321. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5322. </AttrBackground>
  5323. <AttrBorder>
  5324. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  5325. <newColor/>
  5326. </AttrBorder>
  5327. <AttrAlpha>
  5328. <Attr alpha="1.0"/>
  5329. </AttrAlpha>
  5330. </GI>
  5331. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  5332. <newHotTooltipStyle>
  5333. <AttrContents>
  5334. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  5335. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5336. <![CDATA[#.##]]></Format>
  5337. <PercentFormat>
  5338. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5339. <![CDATA[#0.##%]]></Format>
  5340. </PercentFormat>
  5341. </AttrContents>
  5342. </newHotTooltipStyle>
  5343. <ConditionCollection>
  5344. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  5345. <ConditionAttr name="">
  5346. <AttrList>
  5347. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  5348. <AttrTooltip>
  5349. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  5350. <TextAttr>
  5351. <Attr alignText="0" predefinedStyle="false">
  5352. <FRFont name="SimSun" style="0" size="72"/>
  5353. </Attr>
  5354. </TextAttr>
  5355. <AttrToolTipContent>
  5356. <TextAttr>
  5357. <Attr alignText="0" predefinedStyle="false">
  5358. <FRFont name="SimSun" style="0" size="72"/>
  5359. </Attr>
  5360. </TextAttr>
  5361. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  5362. <AttrTooltipRichText>
  5363. <Attr content="" isAuto="true" initParamsContent=""/>
  5364. <params>
  5365. <![CDATA[{}]]></params>
  5366. </AttrTooltipRichText>
  5367. </richText>
  5368. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  5369. <AttrTooltipValueFormat>
  5370. <Attr enable="true"/>
  5371. </AttrTooltipValueFormat>
  5372. </richTextValue>
  5373. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  5374. <AttrTooltipPercentFormat>
  5375. <Attr enable="false"/>
  5376. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5377. <![CDATA[#.##%]]></Format>
  5378. </AttrTooltipPercentFormat>
  5379. </richTextPercent>
  5380. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  5381. <AttrToolTipCategoryFormat>
  5382. <Attr enable="true"/>
  5383. </AttrToolTipCategoryFormat>
  5384. </richTextCategory>
  5385. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  5386. <AttrTooltipSeriesFormat>
  5387. <Attr enable="true"/>
  5388. </AttrTooltipSeriesFormat>
  5389. </richTextSeries>
  5390. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  5391. <AttrTooltipChangedPercentFormat>
  5392. <Attr enable="false"/>
  5393. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5394. <![CDATA[#.##%]]></Format>
  5395. </AttrTooltipChangedPercentFormat>
  5396. </richTextChangedPercent>
  5397. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  5398. <AttrTooltipChangedValueFormat>
  5399. <Attr enable="false"/>
  5400. </AttrTooltipChangedValueFormat>
  5401. </richTextChangedValue>
  5402. <TableFieldCollection/>
  5403. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  5404. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  5405. <AttrTooltipValueFormat>
  5406. <Attr enable="true"/>
  5407. </AttrTooltipValueFormat>
  5408. </value>
  5409. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  5410. <AttrTooltipPercentFormat>
  5411. <Attr enable="false"/>
  5412. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5413. <![CDATA[#.##%]]></Format>
  5414. </AttrTooltipPercentFormat>
  5415. </percent>
  5416. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  5417. <AttrToolTipCategoryFormat>
  5418. <Attr enable="true"/>
  5419. </AttrToolTipCategoryFormat>
  5420. </category>
  5421. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  5422. <AttrTooltipSeriesFormat>
  5423. <Attr enable="true"/>
  5424. </AttrTooltipSeriesFormat>
  5425. </series>
  5426. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  5427. <AttrTooltipChangedPercentFormat>
  5428. <Attr enable="false"/>
  5429. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5430. <![CDATA[#.##%]]></Format>
  5431. </AttrTooltipChangedPercentFormat>
  5432. </changedPercent>
  5433. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  5434. <AttrTooltipChangedValueFormat>
  5435. <Attr enable="false"/>
  5436. </AttrTooltipChangedValueFormat>
  5437. </changedValue>
  5438. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5439. </AttrToolTipContent>
  5440. <GI>
  5441. <AttrBackground>
  5442. <Background name="ColorBackground" color="-16777216"/>
  5443. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  5444. </AttrBackground>
  5445. <AttrBorder>
  5446. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  5447. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  5448. </AttrBorder>
  5449. <AttrAlpha>
  5450. <Attr alpha="0.5"/>
  5451. </AttrAlpha>
  5452. </GI>
  5453. </AttrTooltip>
  5454. </Attr>
  5455. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  5456. <VanAttrLine>
  5457. <Attr lineType="solid" lineWidth="3.0" lineStyle="2" nullValueBreak="true"/>
  5458. </VanAttrLine>
  5459. </Attr>
  5460. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  5461. <VanAttrMarker>
  5462. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="3.5" width="30.0" height="30.0"/>
  5463. <Background name="NullBackground"/>
  5464. </VanAttrMarker>
  5465. </Attr>
  5466. </AttrList>
  5467. </ConditionAttr>
  5468. </DefaultAttr>
  5469. </ConditionCollection>
  5470. <Legend4VanChart>
  5471. <Legend>
  5472. <GI>
  5473. <AttrBackground>
  5474. <Background name="NullBackground"/>
  5475. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5476. </AttrBackground>
  5477. <AttrBorder>
  5478. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  5479. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  5480. </AttrBorder>
  5481. <AttrAlpha>
  5482. <Attr alpha="1.0"/>
  5483. </AttrAlpha>
  5484. </GI>
  5485. <Attr position="3" visible="true" predefinedStyle="false"/>
  5486. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  5487. </Legend>
  5488. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  5489. </Legend4VanChart>
  5490. <DataSheet>
  5491. <GI>
  5492. <AttrBackground>
  5493. <Background name="NullBackground"/>
  5494. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5495. </AttrBackground>
  5496. <AttrBorder>
  5497. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  5498. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  5499. </AttrBorder>
  5500. <AttrAlpha>
  5501. <Attr alpha="1.0"/>
  5502. </AttrAlpha>
  5503. </GI>
  5504. <Attr isVisible="false" predefinedStyle="false"/>
  5505. <FRFont name="SimSun" style="0" size="72"/>
  5506. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5507. <![CDATA[#.##]]></Format>
  5508. </DataSheet>
  5509. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  5510. <newPlotFillStyle>
  5511. <AttrFillStyle>
  5512. <AFStyle colorStyle="1"/>
  5513. <FillStyleName fillStyleName=""/>
  5514. <isCustomFillStyle isCustomFillStyle="true"/>
  5515. <PredefinedStyle predefinedStyle="false"/>
  5516. <ColorList>
  5517. <OColor colvalue="-39373"/>
  5518. <OColor colvalue="-39373"/>
  5519. <OColor colvalue="-375997"/>
  5520. <OColor colvalue="-15290420"/>
  5521. <OColor colvalue="-8011743"/>
  5522. <OColor colvalue="-3069334"/>
  5523. <OColor colvalue="-15830324"/>
  5524. <OColor colvalue="-9657585"/>
  5525. <OColor colvalue="-375997"/>
  5526. <OColor colvalue="-15290420"/>
  5527. <OColor colvalue="-8011743"/>
  5528. <OColor colvalue="-3069334"/>
  5529. <OColor colvalue="-236032"/>
  5530. <OColor colvalue="-9657585"/>
  5531. <OColor colvalue="-683247"/>
  5532. <OColor colvalue="-375997"/>
  5533. <OColor colvalue="-15290420"/>
  5534. <OColor colvalue="-8011743"/>
  5535. <OColor colvalue="-3069334"/>
  5536. <OColor colvalue="-15830324"/>
  5537. <OColor colvalue="-9657585"/>
  5538. <OColor colvalue="-683247"/>
  5539. <OColor colvalue="-375997"/>
  5540. <OColor colvalue="-236032"/>
  5541. <OColor colvalue="-8011743"/>
  5542. <OColor colvalue="-3069334"/>
  5543. <OColor colvalue="-15830324"/>
  5544. <OColor colvalue="-9657585"/>
  5545. <OColor colvalue="-683247"/>
  5546. <OColor colvalue="-375997"/>
  5547. <OColor colvalue="-1"/>
  5548. </ColorList>
  5549. </AttrFillStyle>
  5550. </newPlotFillStyle>
  5551. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  5552. <GradientStyle>
  5553. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  5554. </GradientStyle>
  5555. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  5556. <XAxisList>
  5557. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  5558. <Title>
  5559. <GI>
  5560. <AttrBackground>
  5561. <Background name="NullBackground"/>
  5562. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5563. </AttrBackground>
  5564. <AttrBorder>
  5565. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  5566. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  5567. </AttrBorder>
  5568. <AttrAlpha>
  5569. <Attr alpha="1.0"/>
  5570. </AttrAlpha>
  5571. </GI>
  5572. <O>
  5573. <![CDATA[]]></O>
  5574. <TextAttr>
  5575. <Attr alignText="0" predefinedStyle="false">
  5576. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  5577. </Attr>
  5578. </TextAttr>
  5579. <TitleVisible value="true" position="0"/>
  5580. </Title>
  5581. <newAxisAttr isShowAxisLabel="true"/>
  5582. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  5583. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  5584. <AxisPosition value="3"/>
  5585. <TickLine201106 type="2" secType="0"/>
  5586. <ArrowShow arrowShow="false"/>
  5587. <TextAttr>
  5588. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  5589. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  5590. </Attr>
  5591. </TextAttr>
  5592. <Format class="com.fr.general.date.FineDateFormat">
  5593. <![CDATA[yyyy-MM-dd]]></Format>
  5594. <AxisLabelCount value="=14"/>
  5595. <AxisRange/>
  5596. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  5597. <ZoomAxisAttr isZoom="false"/>
  5598. <axisReversed axisReversed="false"/>
  5599. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  5600. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5601. <alertList/>
  5602. <customBackgroundList/>
  5603. </VanChartAxis>
  5604. </XAxisList>
  5605. <YAxisList>
  5606. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  5607. <Title>
  5608. <GI>
  5609. <AttrBackground>
  5610. <Background name="NullBackground"/>
  5611. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5612. </AttrBackground>
  5613. <AttrBorder>
  5614. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  5615. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  5616. </AttrBorder>
  5617. <AttrAlpha>
  5618. <Attr alpha="1.0"/>
  5619. </AttrAlpha>
  5620. </GI>
  5621. <O>
  5622. <![CDATA[(次)]]></O>
  5623. <TextAttr>
  5624. <Attr alignText="0" predefinedStyle="false">
  5625. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  5626. </Attr>
  5627. </TextAttr>
  5628. <TitleVisible value="true" position="1"/>
  5629. </Title>
  5630. <newAxisAttr isShowAxisLabel="true"/>
  5631. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  5632. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  5633. <AxisPosition value="2"/>
  5634. <TickLine201106 type="2" secType="0"/>
  5635. <ArrowShow arrowShow="false"/>
  5636. <TextAttr>
  5637. <Attr alignText="0" predefinedStyle="false">
  5638. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  5639. </Attr>
  5640. </TextAttr>
  5641. <AxisLabelCount value="=1"/>
  5642. <AxisRange minValue="=0"/>
  5643. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  5644. <ZoomAxisAttr isZoom="false"/>
  5645. <axisReversed axisReversed="false"/>
  5646. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  5647. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5648. <alertList/>
  5649. <customBackgroundList/>
  5650. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  5651. <ds>
  5652. <RadarYAxisTableDefinition>
  5653. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  5654. <attr/>
  5655. </RadarYAxisTableDefinition>
  5656. </ds>
  5657. </VanChartAxis>
  5658. </YAxisList>
  5659. <stackAndAxisCondition>
  5660. <ConditionCollection>
  5661. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  5662. <ConditionAttr name=""/>
  5663. </DefaultAttr>
  5664. </ConditionCollection>
  5665. </stackAndAxisCondition>
  5666. </Plot>
  5667. <ChartDefinition>
  5668. <OneValueCDDefinition seriesName="无" valueName="累计访问次数" function="com.fr.data.util.function.NoneFunction">
  5669. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  5670. <TableData class="com.fr.data.impl.NameTableData">
  5671. <Name>
  5672. <![CDATA[ds_intervie_chart2]]></Name>
  5673. </TableData>
  5674. <CategoryName value="日期"/>
  5675. </OneValueCDDefinition>
  5676. </ChartDefinition>
  5677. </Chart>
  5678. <UUID uuid="61aa0bc0-c668-4b38-ad4d-f764ecf1b429"/>
  5679. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  5680. <VanChartZoom>
  5681. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  5682. <from>
  5683. <![CDATA[]]></from>
  5684. <to>
  5685. <![CDATA[]]></to>
  5686. </VanChartZoom>
  5687. <refreshMoreLabel>
  5688. <attr moreLabel="false" autoTooltip="true"/>
  5689. <AttrTooltip>
  5690. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  5691. <TextAttr>
  5692. <Attr alignText="0" predefinedStyle="false">
  5693. <FRFont name="SimSun" style="0" size="72"/>
  5694. </Attr>
  5695. </TextAttr>
  5696. <AttrToolTipContent>
  5697. <TextAttr>
  5698. <Attr alignText="0" predefinedStyle="false">
  5699. <FRFont name="SimSun" style="0" size="72"/>
  5700. </Attr>
  5701. </TextAttr>
  5702. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  5703. <AttrTooltipRichText>
  5704. <Attr content="" isAuto="true" initParamsContent=""/>
  5705. <params>
  5706. <![CDATA[{}]]></params>
  5707. </AttrTooltipRichText>
  5708. </richText>
  5709. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  5710. <AttrTooltipValueFormat>
  5711. <Attr enable="true"/>
  5712. </AttrTooltipValueFormat>
  5713. </richTextValue>
  5714. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  5715. <AttrTooltipPercentFormat>
  5716. <Attr enable="false"/>
  5717. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5718. <![CDATA[#.##%]]></Format>
  5719. </AttrTooltipPercentFormat>
  5720. </richTextPercent>
  5721. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  5722. <AttrToolTipCategoryFormat>
  5723. <Attr enable="false"/>
  5724. </AttrToolTipCategoryFormat>
  5725. </richTextCategory>
  5726. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  5727. <AttrTooltipSeriesFormat>
  5728. <Attr enable="false"/>
  5729. </AttrTooltipSeriesFormat>
  5730. </richTextSeries>
  5731. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  5732. <AttrTooltipChangedPercentFormat>
  5733. <Attr enable="false"/>
  5734. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5735. <![CDATA[#.##%]]></Format>
  5736. </AttrTooltipChangedPercentFormat>
  5737. </richTextChangedPercent>
  5738. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  5739. <AttrTooltipChangedValueFormat>
  5740. <Attr enable="false"/>
  5741. </AttrTooltipChangedValueFormat>
  5742. </richTextChangedValue>
  5743. <TableFieldCollection/>
  5744. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  5745. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  5746. <AttrTooltipValueFormat>
  5747. <Attr enable="true"/>
  5748. </AttrTooltipValueFormat>
  5749. </value>
  5750. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  5751. <AttrTooltipPercentFormat>
  5752. <Attr enable="false"/>
  5753. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5754. <![CDATA[#.##%]]></Format>
  5755. </AttrTooltipPercentFormat>
  5756. </percent>
  5757. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  5758. <AttrToolTipCategoryFormat>
  5759. <Attr enable="true"/>
  5760. </AttrToolTipCategoryFormat>
  5761. </category>
  5762. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  5763. <AttrTooltipSeriesFormat>
  5764. <Attr enable="true"/>
  5765. </AttrTooltipSeriesFormat>
  5766. </series>
  5767. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  5768. <AttrTooltipChangedPercentFormat>
  5769. <Attr enable="false"/>
  5770. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  5771. <![CDATA[#.##%]]></Format>
  5772. </AttrTooltipChangedPercentFormat>
  5773. </changedPercent>
  5774. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  5775. <AttrTooltipChangedValueFormat>
  5776. <Attr enable="true"/>
  5777. </AttrTooltipChangedValueFormat>
  5778. </changedValue>
  5779. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  5780. </AttrToolTipContent>
  5781. <GI>
  5782. <AttrBackground>
  5783. <Background name="ColorBackground" color="-1"/>
  5784. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  5785. </AttrBackground>
  5786. <AttrBorder>
  5787. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  5788. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  5789. </AttrBorder>
  5790. <AttrAlpha>
  5791. <Attr alpha="0.8"/>
  5792. </AttrAlpha>
  5793. </GI>
  5794. </AttrTooltip>
  5795. </refreshMoreLabel>
  5796. <ThemeAttr>
  5797. <Attr darkTheme="false" predefinedStyle="false"/>
  5798. </ThemeAttr>
  5799. </Chart>
  5800. </O>
  5801. <PrivilegeControl/>
  5802. <Expand/>
  5803. </C>
  5804. <C c="0" r="21" cs="9" s="8">
  5805. <O>
  5806. <![CDATA[图6.访问量年累计]]></O>
  5807. <PrivilegeControl/>
  5808. <CellGUIAttr showAsHTML="true"/>
  5809. <CellPageAttr/>
  5810. <CellInsertPolicy/>
  5811. <Expand dir="0"/>
  5812. </C>
  5813. <C c="0" r="22" cs="9" s="13">
  5814. <O t="XMLable" class="com.fr.base.Formula">
  5815. <Attributes>
  5816. <![CDATA[="<br/><br/><br/><span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;各模块" + if($p_day_count > 1, MONTH(datedelta($p_start_day, -1)) + "月" + DAY(datedelta($p_start_day, -1)) + "日" + "至" + MONTH(datedelta($p_day, -1)) + "月" + DAY(datedelta($p_day, -1)) + "日期间", (MONTH(datedelta($p_day, -1)) + "月" + DAY(datedelta($p_day, -1)) + "日")) + "访问数据见下表</span>。"]]></Attributes>
  5817. </O>
  5818. <PrivilegeControl/>
  5819. <CellGUIAttr showAsHTML="true"/>
  5820. <CellPageAttr/>
  5821. <CellInsertPolicy/>
  5822. <Expand dir="0"/>
  5823. </C>
  5824. <C c="0" r="23" cs="9" s="8">
  5825. <O>
  5826. <![CDATA[表1.用户访问数据统计表]]></O>
  5827. <PrivilegeControl/>
  5828. <CellGUIAttr showAsHTML="true"/>
  5829. <CellPageAttr/>
  5830. <CellInsertPolicy/>
  5831. <Expand dir="0"/>
  5832. </C>
  5833. <C c="0" r="24" s="14">
  5834. <O>
  5835. <![CDATA[序号]]></O>
  5836. <PrivilegeControl/>
  5837. <CellGUIAttr showAsDefault="true"/>
  5838. <CellPageAttr/>
  5839. <Expand/>
  5840. </C>
  5841. <C c="1" r="24" s="14">
  5842. <O>
  5843. <![CDATA[栏目]]></O>
  5844. <PrivilegeControl/>
  5845. <CellGUIAttr showAsDefault="true"/>
  5846. <CellPageAttr/>
  5847. <Expand/>
  5848. </C>
  5849. <C c="2" r="24" cs="2" s="14">
  5850. <O>
  5851. <![CDATA[模块]]></O>
  5852. <PrivilegeControl/>
  5853. <CellGUIAttr showAsDefault="true"/>
  5854. <CellPageAttr/>
  5855. <Expand/>
  5856. </C>
  5857. <C c="4" r="24" cs="2" s="14">
  5858. <O>
  5859. <![CDATA[未注册用户\\n访问次数]]></O>
  5860. <PrivilegeControl/>
  5861. <CellGUIAttr showAsDefault="true"/>
  5862. <CellPageAttr/>
  5863. <Expand/>
  5864. </C>
  5865. <C c="6" r="24" s="14">
  5866. <O>
  5867. <![CDATA[注册用户\\n访问次数]]></O>
  5868. <PrivilegeControl/>
  5869. <CellGUIAttr showAsDefault="true"/>
  5870. <CellPageAttr/>
  5871. <Expand/>
  5872. </C>
  5873. <C c="7" r="24" s="14">
  5874. <O>
  5875. <![CDATA[总访问次数]]></O>
  5876. <PrivilegeControl/>
  5877. <CellGUIAttr showAsDefault="true"/>
  5878. <CellPageAttr/>
  5879. <Expand/>
  5880. </C>
  5881. <C c="8" r="24" s="14">
  5882. <O>
  5883. <![CDATA[累计访问次数]]></O>
  5884. <PrivilegeControl/>
  5885. <CellGUIAttr showAsDefault="true"/>
  5886. <CellPageAttr/>
  5887. <Expand/>
  5888. </C>
  5889. <C c="0" r="25" s="15">
  5890. <O t="XMLable" class="com.fr.base.Formula">
  5891. <Attributes>
  5892. <![CDATA[=SEQ()]]></Attributes>
  5893. </O>
  5894. <PrivilegeControl/>
  5895. <CellPageAttr/>
  5896. <CellInsertPolicy/>
  5897. <Expand leftParentDefault="false" left="D26" upParentDefault="false"/>
  5898. </C>
  5899. <C c="1" r="25" s="15">
  5900. <PrivilegeControl/>
  5901. <Expand/>
  5902. </C>
  5903. <C c="2" r="25" cs="2" s="15">
  5904. <O t="DSColumn">
  5905. <Attributes dsName="ds_interview_type" columnName="data_type"/>
  5906. <Complex/>
  5907. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  5908. <Parameters/>
  5909. </O>
  5910. <PrivilegeControl/>
  5911. <Expand dir="0"/>
  5912. </C>
  5913. <C c="4" r="25" cs="2" s="15">
  5914. <O t="DSColumn">
  5915. <Attributes dsName="ds_interview_type" columnName="unregister_number"/>
  5916. <Condition class="com.fr.data.condition.ListCondition"/>
  5917. <Complex/>
  5918. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  5919. <Result>
  5920. <![CDATA[$$$]]></Result>
  5921. <Parameters/>
  5922. </O>
  5923. <PrivilegeControl/>
  5924. <Expand dir="0"/>
  5925. </C>
  5926. <C c="6" r="25" s="15">
  5927. <O t="DSColumn">
  5928. <Attributes dsName="ds_interview_type" columnName="register_number"/>
  5929. <Complex/>
  5930. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  5931. <Parameters/>
  5932. </O>
  5933. <PrivilegeControl/>
  5934. <Expand dir="0"/>
  5935. </C>
  5936. <C c="7" r="25" s="15">
  5937. <O t="DSColumn">
  5938. <Attributes dsName="ds_interview_type" columnName="sum_number"/>
  5939. <Complex/>
  5940. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  5941. <Parameters/>
  5942. </O>
  5943. <PrivilegeControl/>
  5944. <Expand dir="0"/>
  5945. </C>
  5946. <C c="8" r="25" s="15">
  5947. <O t="DSColumn">
  5948. <Attributes dsName="ds_interview_type" columnName="all_sum_number"/>
  5949. <Condition class="com.fr.data.condition.ListCondition"/>
  5950. <Complex/>
  5951. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  5952. <Result>
  5953. <![CDATA[$$$]]></Result>
  5954. <Parameters/>
  5955. </O>
  5956. <PrivilegeControl/>
  5957. <Expand dir="0"/>
  5958. </C>
  5959. <C c="0" r="26" cs="4" s="16">
  5960. <O>
  5961. <![CDATA[总计]]></O>
  5962. <PrivilegeControl/>
  5963. <CellGUIAttr showAsDefault="true"/>
  5964. <CellPageAttr/>
  5965. <Expand/>
  5966. </C>
  5967. <C c="4" r="26" cs="2" s="16">
  5968. <O t="XMLable" class="com.fr.base.Formula">
  5969. <Attributes>
  5970. <![CDATA[=sum(E26)]]></Attributes>
  5971. </O>
  5972. <PrivilegeControl/>
  5973. <CellGUIAttr showAsDefault="true"/>
  5974. <CellPageAttr/>
  5975. <Expand/>
  5976. </C>
  5977. <C c="6" r="26" s="16">
  5978. <O t="XMLable" class="com.fr.base.Formula">
  5979. <Attributes>
  5980. <![CDATA[=sum(G26)]]></Attributes>
  5981. </O>
  5982. <PrivilegeControl/>
  5983. <CellGUIAttr showAsDefault="true"/>
  5984. <CellPageAttr/>
  5985. <Expand/>
  5986. </C>
  5987. <C c="7" r="26" s="16">
  5988. <O t="XMLable" class="com.fr.base.Formula">
  5989. <Attributes>
  5990. <![CDATA[=sum(H26)]]></Attributes>
  5991. </O>
  5992. <PrivilegeControl/>
  5993. <CellGUIAttr showAsDefault="true"/>
  5994. <CellPageAttr/>
  5995. <Expand/>
  5996. </C>
  5997. <C c="8" r="26" s="16">
  5998. <O t="XMLable" class="com.fr.base.Formula">
  5999. <Attributes>
  6000. <![CDATA[=sum(I26)]]></Attributes>
  6001. </O>
  6002. <PrivilegeControl/>
  6003. <CellGUIAttr showAsDefault="true"/>
  6004. <CellPageAttr/>
  6005. <Expand/>
  6006. </C>
  6007. <C c="0" r="28" cs="9" s="11">
  6008. <O>
  6009. <![CDATA[ (三)数据更新情况]]></O>
  6010. <PrivilegeControl/>
  6011. <Expand/>
  6012. </C>
  6013. <C c="0" r="29" cs="9" s="12">
  6014. <O t="DSColumn">
  6015. <Attributes dsName="ds_buisness_data_total" columnName="update_number_all"/>
  6016. <Condition class="com.fr.data.condition.ListCondition"/>
  6017. <Complex/>
  6018. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  6019. <Result>
  6020. <![CDATA["&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;平台"+if($p_day_count > 1, MONTH(datedelta($p_start_day,-1)) + "月" + DAY(datedelta($p_start_day,-1)) + "日" + "至"+ MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日期间"+"业务数据更新"+any_update_number+"条"+if(any_update_number>0,any_update_info,"")+"。平台业务数据累计"+format(update_number_all/10000,"##0.00")+"万条。",MONTH(datedelta($p_day,-1)) + "月" + DAY(datedelta($p_day,-1)) + "日"+"业务数据更新"+one_update_number+"条"+if(one_update_number>0,one_update_info,"")+"。平台业务数据累计"+format(update_number_all/10000,"##0.00")+"万条。")]]></Result>
  6021. <Parameters/>
  6022. </O>
  6023. <PrivilegeControl/>
  6024. <CellGUIAttr showAsHTML="true"/>
  6025. <CellPageAttr/>
  6026. <CellInsertPolicy/>
  6027. <Expand dir="0"/>
  6028. </C>
  6029. <C c="0" r="30" cs="9">
  6030. <O t="CC">
  6031. <LayoutAttr selectedIndex="0"/>
  6032. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  6033. <TextAttr>
  6034. <Attr alignText="0" predefinedStyle="false">
  6035. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  6036. </Attr>
  6037. </TextAttr>
  6038. </ChangeAttr>
  6039. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  6040. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  6041. <GI>
  6042. <AttrBackground>
  6043. <Background name="NullBackground"/>
  6044. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6045. </AttrBackground>
  6046. <AttrBorder>
  6047. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  6048. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  6049. </AttrBorder>
  6050. <AttrAlpha>
  6051. <Attr alpha="1.0"/>
  6052. </AttrAlpha>
  6053. </GI>
  6054. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  6055. <Title4VanChart>
  6056. <Title>
  6057. <GI>
  6058. <AttrBackground>
  6059. <Background name="NullBackground"/>
  6060. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6061. </AttrBackground>
  6062. <AttrBorder>
  6063. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6064. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  6065. </AttrBorder>
  6066. <AttrAlpha>
  6067. <Attr alpha="1.0"/>
  6068. </AttrAlpha>
  6069. </GI>
  6070. <O>
  6071. <![CDATA[新建图表标题]]></O>
  6072. <TextAttr>
  6073. <Attr alignText="0" predefinedStyle="false">
  6074. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  6075. </Attr>
  6076. </TextAttr>
  6077. <TitleVisible value="false" position="0"/>
  6078. </Title>
  6079. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  6080. </Title4VanChart>
  6081. <Plot class="com.fr.plugin.chart.column.VanChartColumnPlot">
  6082. <VanChartPlotVersion version="20170715"/>
  6083. <GI>
  6084. <AttrBackground>
  6085. <Background name="NullBackground"/>
  6086. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6087. </AttrBackground>
  6088. <AttrBorder>
  6089. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6090. <newColor/>
  6091. </AttrBorder>
  6092. <AttrAlpha>
  6093. <Attr alpha="1.0"/>
  6094. </AttrAlpha>
  6095. </GI>
  6096. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  6097. <newHotTooltipStyle>
  6098. <AttrContents>
  6099. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  6100. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6101. <![CDATA[#.##]]></Format>
  6102. <PercentFormat>
  6103. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6104. <![CDATA[#0.##%]]></Format>
  6105. </PercentFormat>
  6106. </AttrContents>
  6107. </newHotTooltipStyle>
  6108. <ConditionCollection>
  6109. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  6110. <ConditionAttr name="">
  6111. <AttrList>
  6112. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  6113. <AttrTooltip>
  6114. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  6115. <TextAttr>
  6116. <Attr alignText="0" predefinedStyle="false"/>
  6117. </TextAttr>
  6118. <AttrToolTipContent>
  6119. <TextAttr>
  6120. <Attr alignText="0" predefinedStyle="false"/>
  6121. </TextAttr>
  6122. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  6123. <AttrTooltipRichText>
  6124. <Attr content="" isAuto="true" initParamsContent=""/>
  6125. </AttrTooltipRichText>
  6126. </richText>
  6127. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6128. <AttrTooltipValueFormat>
  6129. <Attr enable="true"/>
  6130. </AttrTooltipValueFormat>
  6131. </richTextValue>
  6132. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6133. <AttrTooltipPercentFormat>
  6134. <Attr enable="false"/>
  6135. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6136. <![CDATA[#.##%]]></Format>
  6137. </AttrTooltipPercentFormat>
  6138. </richTextPercent>
  6139. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6140. <AttrToolTipCategoryFormat>
  6141. <Attr enable="true"/>
  6142. </AttrToolTipCategoryFormat>
  6143. </richTextCategory>
  6144. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6145. <AttrTooltipSeriesFormat>
  6146. <Attr enable="true"/>
  6147. </AttrTooltipSeriesFormat>
  6148. </richTextSeries>
  6149. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  6150. <AttrTooltipChangedPercentFormat>
  6151. <Attr enable="false"/>
  6152. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6153. <![CDATA[#.##%]]></Format>
  6154. </AttrTooltipChangedPercentFormat>
  6155. </richTextChangedPercent>
  6156. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  6157. <AttrTooltipChangedValueFormat>
  6158. <Attr enable="false"/>
  6159. </AttrTooltipChangedValueFormat>
  6160. </richTextChangedValue>
  6161. <TableFieldCollection/>
  6162. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  6163. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6164. <AttrTooltipValueFormat>
  6165. <Attr enable="true"/>
  6166. </AttrTooltipValueFormat>
  6167. </value>
  6168. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6169. <AttrTooltipPercentFormat>
  6170. <Attr enable="false"/>
  6171. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6172. <![CDATA[#.##%]]></Format>
  6173. </AttrTooltipPercentFormat>
  6174. </percent>
  6175. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6176. <AttrToolTipCategoryFormat>
  6177. <Attr enable="true"/>
  6178. </AttrToolTipCategoryFormat>
  6179. </category>
  6180. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6181. <AttrTooltipSeriesFormat>
  6182. <Attr enable="true"/>
  6183. </AttrTooltipSeriesFormat>
  6184. </series>
  6185. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  6186. <AttrTooltipChangedPercentFormat>
  6187. <Attr enable="false"/>
  6188. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6189. <![CDATA[#.##%]]></Format>
  6190. </AttrTooltipChangedPercentFormat>
  6191. </changedPercent>
  6192. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  6193. <AttrTooltipChangedValueFormat>
  6194. <Attr enable="false"/>
  6195. </AttrTooltipChangedValueFormat>
  6196. </changedValue>
  6197. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6198. </AttrToolTipContent>
  6199. <GI>
  6200. <AttrBackground>
  6201. <Background name="ColorBackground" color="-16777216"/>
  6202. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  6203. </AttrBackground>
  6204. <AttrBorder>
  6205. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  6206. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6207. </AttrBorder>
  6208. <AttrAlpha>
  6209. <Attr alpha="0.5"/>
  6210. </AttrAlpha>
  6211. </GI>
  6212. </AttrTooltip>
  6213. </Attr>
  6214. <Attr class="com.fr.chart.base.AttrBorder">
  6215. <AttrBorder>
  6216. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  6217. <newColor borderColor="-1" autoColor="false" predefinedStyle="false"/>
  6218. </AttrBorder>
  6219. </Attr>
  6220. <Attr class="com.fr.chart.base.AttrAlpha">
  6221. <AttrAlpha>
  6222. <Attr alpha="1.0"/>
  6223. </AttrAlpha>
  6224. </Attr>
  6225. </AttrList>
  6226. </ConditionAttr>
  6227. </DefaultAttr>
  6228. </ConditionCollection>
  6229. <Legend4VanChart>
  6230. <Legend>
  6231. <GI>
  6232. <AttrBackground>
  6233. <Background name="NullBackground"/>
  6234. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6235. </AttrBackground>
  6236. <AttrBorder>
  6237. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6238. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  6239. </AttrBorder>
  6240. <AttrAlpha>
  6241. <Attr alpha="1.0"/>
  6242. </AttrAlpha>
  6243. </GI>
  6244. <Attr position="3" visible="false" predefinedStyle="false"/>
  6245. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  6246. </Legend>
  6247. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="false" maxHeight="30.0" isHighlight="true"/>
  6248. </Legend4VanChart>
  6249. <DataSheet>
  6250. <GI>
  6251. <AttrBackground>
  6252. <Background name="NullBackground"/>
  6253. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6254. </AttrBackground>
  6255. <AttrBorder>
  6256. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  6257. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6258. </AttrBorder>
  6259. <AttrAlpha>
  6260. <Attr alpha="1.0"/>
  6261. </AttrAlpha>
  6262. </GI>
  6263. <Attr isVisible="false" predefinedStyle="false"/>
  6264. <FRFont name="SimSun" style="0" size="72"/>
  6265. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6266. <![CDATA[#.##]]></Format>
  6267. </DataSheet>
  6268. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  6269. <newPlotFillStyle>
  6270. <AttrFillStyle>
  6271. <AFStyle colorStyle="0"/>
  6272. <FillStyleName fillStyleName=""/>
  6273. <isCustomFillStyle isCustomFillStyle="false"/>
  6274. <PredefinedStyle predefinedStyle="false"/>
  6275. </AttrFillStyle>
  6276. </newPlotFillStyle>
  6277. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  6278. <GradientStyle>
  6279. <Attr gradientType="gradual" startColor="-12146441" endColor="-9378161"/>
  6280. </GradientStyle>
  6281. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  6282. <XAxisList>
  6283. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  6284. <Title>
  6285. <GI>
  6286. <AttrBackground>
  6287. <Background name="NullBackground"/>
  6288. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6289. </AttrBackground>
  6290. <AttrBorder>
  6291. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6292. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6293. </AttrBorder>
  6294. <AttrAlpha>
  6295. <Attr alpha="1.0"/>
  6296. </AttrAlpha>
  6297. </GI>
  6298. <O>
  6299. <![CDATA[]]></O>
  6300. <TextAttr>
  6301. <Attr alignText="0" predefinedStyle="false">
  6302. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  6303. </Attr>
  6304. </TextAttr>
  6305. <TitleVisible value="true" position="0"/>
  6306. </Title>
  6307. <newAxisAttr isShowAxisLabel="true"/>
  6308. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  6309. <newLineColor lineColor="-5197648" predefinedStyle="false"/>
  6310. <AxisPosition value="3"/>
  6311. <TickLine201106 type="2" secType="0"/>
  6312. <ArrowShow arrowShow="false"/>
  6313. <TextAttr>
  6314. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  6315. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  6316. </Attr>
  6317. </TextAttr>
  6318. <AxisLabelCount value="=1"/>
  6319. <AxisRange/>
  6320. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  6321. <ZoomAxisAttr isZoom="false"/>
  6322. <axisReversed axisReversed="false"/>
  6323. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="false" gridLineType="NONE"/>
  6324. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6325. <alertList/>
  6326. <customBackgroundList/>
  6327. </VanChartAxis>
  6328. </XAxisList>
  6329. <YAxisList>
  6330. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  6331. <Title>
  6332. <GI>
  6333. <AttrBackground>
  6334. <Background name="NullBackground"/>
  6335. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6336. </AttrBackground>
  6337. <AttrBorder>
  6338. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6339. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6340. </AttrBorder>
  6341. <AttrAlpha>
  6342. <Attr alpha="1.0"/>
  6343. </AttrAlpha>
  6344. </GI>
  6345. <O>
  6346. <![CDATA[(条)]]></O>
  6347. <TextAttr>
  6348. <Attr alignText="0" predefinedStyle="false">
  6349. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  6350. </Attr>
  6351. </TextAttr>
  6352. <TitleVisible value="true" position="1"/>
  6353. </Title>
  6354. <newAxisAttr isShowAxisLabel="true"/>
  6355. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  6356. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  6357. <AxisPosition value="2"/>
  6358. <TickLine201106 type="2" secType="0"/>
  6359. <ArrowShow arrowShow="false"/>
  6360. <TextAttr>
  6361. <Attr alignText="0" predefinedStyle="false">
  6362. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  6363. </Attr>
  6364. </TextAttr>
  6365. <AxisLabelCount value="=1"/>
  6366. <AxisRange/>
  6367. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  6368. <ZoomAxisAttr isZoom="false"/>
  6369. <axisReversed axisReversed="false"/>
  6370. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  6371. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6372. <alertList/>
  6373. <customBackgroundList/>
  6374. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  6375. <ds>
  6376. <RadarYAxisTableDefinition>
  6377. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  6378. <attr/>
  6379. </RadarYAxisTableDefinition>
  6380. </ds>
  6381. </VanChartAxis>
  6382. </YAxisList>
  6383. <stackAndAxisCondition>
  6384. <ConditionCollection>
  6385. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  6386. <ConditionAttr name=""/>
  6387. </DefaultAttr>
  6388. </ConditionCollection>
  6389. </stackAndAxisCondition>
  6390. <VanChartColumnPlotAttr seriesOverlapPercent="20.0" categoryIntervalPercent="20.0" fixedWidth="true" columnWidth="25" filledWithImage="false" isBar="false"/>
  6391. </Plot>
  6392. <ChartDefinition>
  6393. <OneValueCDDefinition seriesName="DICT_NAME" valueName="update_number" function="com.fr.data.util.function.NoneFunction">
  6394. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  6395. <TableData class="com.fr.data.impl.NameTableData">
  6396. <Name>
  6397. <![CDATA[ds_buisness_data]]></Name>
  6398. </TableData>
  6399. <CategoryName value="DICT_NAME"/>
  6400. </OneValueCDDefinition>
  6401. </ChartDefinition>
  6402. </Chart>
  6403. <UUID uuid="de0f6e97-d310-498d-b133-b1c1d86f0aa5"/>
  6404. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  6405. <VanChartZoom>
  6406. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  6407. <from>
  6408. <![CDATA[]]></from>
  6409. <to>
  6410. <![CDATA[]]></to>
  6411. </VanChartZoom>
  6412. <refreshMoreLabel>
  6413. <attr moreLabel="false" autoTooltip="true"/>
  6414. <AttrTooltip>
  6415. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  6416. <TextAttr>
  6417. <Attr alignText="0" predefinedStyle="false"/>
  6418. </TextAttr>
  6419. <AttrToolTipContent>
  6420. <TextAttr>
  6421. <Attr alignText="0" predefinedStyle="false"/>
  6422. </TextAttr>
  6423. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  6424. <AttrTooltipRichText>
  6425. <Attr content="" isAuto="true" initParamsContent=""/>
  6426. </AttrTooltipRichText>
  6427. </richText>
  6428. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6429. <AttrTooltipValueFormat>
  6430. <Attr enable="true"/>
  6431. </AttrTooltipValueFormat>
  6432. </richTextValue>
  6433. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6434. <AttrTooltipPercentFormat>
  6435. <Attr enable="false"/>
  6436. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6437. <![CDATA[#.##%]]></Format>
  6438. </AttrTooltipPercentFormat>
  6439. </richTextPercent>
  6440. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6441. <AttrToolTipCategoryFormat>
  6442. <Attr enable="false"/>
  6443. </AttrToolTipCategoryFormat>
  6444. </richTextCategory>
  6445. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6446. <AttrTooltipSeriesFormat>
  6447. <Attr enable="false"/>
  6448. </AttrTooltipSeriesFormat>
  6449. </richTextSeries>
  6450. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  6451. <AttrTooltipChangedPercentFormat>
  6452. <Attr enable="false"/>
  6453. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6454. <![CDATA[#.##%]]></Format>
  6455. </AttrTooltipChangedPercentFormat>
  6456. </richTextChangedPercent>
  6457. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  6458. <AttrTooltipChangedValueFormat>
  6459. <Attr enable="false"/>
  6460. </AttrTooltipChangedValueFormat>
  6461. </richTextChangedValue>
  6462. <TableFieldCollection/>
  6463. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  6464. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6465. <AttrTooltipValueFormat>
  6466. <Attr enable="true"/>
  6467. </AttrTooltipValueFormat>
  6468. </value>
  6469. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6470. <AttrTooltipPercentFormat>
  6471. <Attr enable="false"/>
  6472. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6473. <![CDATA[#.##%]]></Format>
  6474. </AttrTooltipPercentFormat>
  6475. </percent>
  6476. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6477. <AttrToolTipCategoryFormat>
  6478. <Attr enable="true"/>
  6479. </AttrToolTipCategoryFormat>
  6480. </category>
  6481. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6482. <AttrTooltipSeriesFormat>
  6483. <Attr enable="true"/>
  6484. </AttrTooltipSeriesFormat>
  6485. </series>
  6486. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  6487. <AttrTooltipChangedPercentFormat>
  6488. <Attr enable="false"/>
  6489. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6490. <![CDATA[#.##%]]></Format>
  6491. </AttrTooltipChangedPercentFormat>
  6492. </changedPercent>
  6493. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  6494. <AttrTooltipChangedValueFormat>
  6495. <Attr enable="true"/>
  6496. </AttrTooltipChangedValueFormat>
  6497. </changedValue>
  6498. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6499. </AttrToolTipContent>
  6500. <GI>
  6501. <AttrBackground>
  6502. <Background name="ColorBackground" color="-1"/>
  6503. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6504. </AttrBackground>
  6505. <AttrBorder>
  6506. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  6507. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  6508. </AttrBorder>
  6509. <AttrAlpha>
  6510. <Attr alpha="0.8"/>
  6511. </AttrAlpha>
  6512. </GI>
  6513. </AttrTooltip>
  6514. </refreshMoreLabel>
  6515. <ThemeAttr>
  6516. <Attr darkTheme="false" predefinedStyle="false"/>
  6517. </ThemeAttr>
  6518. </Chart>
  6519. </O>
  6520. <PrivilegeControl/>
  6521. <Expand/>
  6522. </C>
  6523. <C c="0" r="31" cs="9" s="8">
  6524. <O>
  6525. <![CDATA[图7.业务数据日统计]]></O>
  6526. <PrivilegeControl/>
  6527. <CellGUIAttr showAsHTML="true"/>
  6528. <CellPageAttr/>
  6529. <CellInsertPolicy/>
  6530. <Expand dir="0"/>
  6531. </C>
  6532. <C c="0" r="32" cs="9">
  6533. <O t="CC">
  6534. <LayoutAttr selectedIndex="0"/>
  6535. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  6536. <TextAttr>
  6537. <Attr alignText="0" predefinedStyle="false">
  6538. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  6539. </Attr>
  6540. </TextAttr>
  6541. </ChangeAttr>
  6542. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  6543. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  6544. <GI>
  6545. <AttrBackground>
  6546. <Background name="NullBackground"/>
  6547. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6548. </AttrBackground>
  6549. <AttrBorder>
  6550. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  6551. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  6552. </AttrBorder>
  6553. <AttrAlpha>
  6554. <Attr alpha="1.0"/>
  6555. </AttrAlpha>
  6556. </GI>
  6557. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  6558. <Title4VanChart>
  6559. <Title>
  6560. <GI>
  6561. <AttrBackground>
  6562. <Background name="NullBackground"/>
  6563. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6564. </AttrBackground>
  6565. <AttrBorder>
  6566. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6567. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  6568. </AttrBorder>
  6569. <AttrAlpha>
  6570. <Attr alpha="1.0"/>
  6571. </AttrAlpha>
  6572. </GI>
  6573. <O>
  6574. <![CDATA[新建图表标题]]></O>
  6575. <TextAttr>
  6576. <Attr alignText="0" predefinedStyle="false">
  6577. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  6578. </Attr>
  6579. </TextAttr>
  6580. <TitleVisible value="false" position="0"/>
  6581. </Title>
  6582. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  6583. </Title4VanChart>
  6584. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  6585. <VanChartPlotVersion version="20170715"/>
  6586. <GI>
  6587. <AttrBackground>
  6588. <Background name="NullBackground"/>
  6589. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6590. </AttrBackground>
  6591. <AttrBorder>
  6592. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6593. <newColor/>
  6594. </AttrBorder>
  6595. <AttrAlpha>
  6596. <Attr alpha="1.0"/>
  6597. </AttrAlpha>
  6598. </GI>
  6599. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  6600. <newHotTooltipStyle>
  6601. <AttrContents>
  6602. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  6603. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6604. <![CDATA[#.##]]></Format>
  6605. <PercentFormat>
  6606. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6607. <![CDATA[#0.##%]]></Format>
  6608. </PercentFormat>
  6609. </AttrContents>
  6610. </newHotTooltipStyle>
  6611. <ConditionCollection>
  6612. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  6613. <ConditionAttr name="">
  6614. <AttrList>
  6615. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  6616. <AttrTooltip>
  6617. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  6618. <TextAttr>
  6619. <Attr alignText="0" predefinedStyle="false">
  6620. <FRFont name="SimSun" style="0" size="72"/>
  6621. </Attr>
  6622. </TextAttr>
  6623. <AttrToolTipContent>
  6624. <TextAttr>
  6625. <Attr alignText="0" predefinedStyle="false">
  6626. <FRFont name="SimSun" style="0" size="72"/>
  6627. </Attr>
  6628. </TextAttr>
  6629. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  6630. <AttrTooltipRichText>
  6631. <Attr content="" isAuto="true" initParamsContent=""/>
  6632. <params>
  6633. <![CDATA[{}]]></params>
  6634. </AttrTooltipRichText>
  6635. </richText>
  6636. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6637. <AttrTooltipValueFormat>
  6638. <Attr enable="true"/>
  6639. </AttrTooltipValueFormat>
  6640. </richTextValue>
  6641. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6642. <AttrTooltipPercentFormat>
  6643. <Attr enable="false"/>
  6644. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6645. <![CDATA[#.##%]]></Format>
  6646. </AttrTooltipPercentFormat>
  6647. </richTextPercent>
  6648. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6649. <AttrToolTipCategoryFormat>
  6650. <Attr enable="true"/>
  6651. </AttrToolTipCategoryFormat>
  6652. </richTextCategory>
  6653. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6654. <AttrTooltipSeriesFormat>
  6655. <Attr enable="true"/>
  6656. </AttrTooltipSeriesFormat>
  6657. </richTextSeries>
  6658. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  6659. <AttrTooltipChangedPercentFormat>
  6660. <Attr enable="false"/>
  6661. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6662. <![CDATA[#.##%]]></Format>
  6663. </AttrTooltipChangedPercentFormat>
  6664. </richTextChangedPercent>
  6665. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  6666. <AttrTooltipChangedValueFormat>
  6667. <Attr enable="false"/>
  6668. </AttrTooltipChangedValueFormat>
  6669. </richTextChangedValue>
  6670. <TableFieldCollection/>
  6671. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  6672. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6673. <AttrTooltipValueFormat>
  6674. <Attr enable="true"/>
  6675. </AttrTooltipValueFormat>
  6676. </value>
  6677. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6678. <AttrTooltipPercentFormat>
  6679. <Attr enable="false"/>
  6680. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6681. <![CDATA[#.##%]]></Format>
  6682. </AttrTooltipPercentFormat>
  6683. </percent>
  6684. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6685. <AttrToolTipCategoryFormat>
  6686. <Attr enable="true"/>
  6687. </AttrToolTipCategoryFormat>
  6688. </category>
  6689. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6690. <AttrTooltipSeriesFormat>
  6691. <Attr enable="true"/>
  6692. </AttrTooltipSeriesFormat>
  6693. </series>
  6694. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  6695. <AttrTooltipChangedPercentFormat>
  6696. <Attr enable="false"/>
  6697. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6698. <![CDATA[#.##%]]></Format>
  6699. </AttrTooltipChangedPercentFormat>
  6700. </changedPercent>
  6701. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  6702. <AttrTooltipChangedValueFormat>
  6703. <Attr enable="false"/>
  6704. </AttrTooltipChangedValueFormat>
  6705. </changedValue>
  6706. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6707. </AttrToolTipContent>
  6708. <GI>
  6709. <AttrBackground>
  6710. <Background name="ColorBackground" color="-16777216"/>
  6711. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  6712. </AttrBackground>
  6713. <AttrBorder>
  6714. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  6715. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6716. </AttrBorder>
  6717. <AttrAlpha>
  6718. <Attr alpha="0.5"/>
  6719. </AttrAlpha>
  6720. </GI>
  6721. </AttrTooltip>
  6722. </Attr>
  6723. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  6724. <VanAttrLine>
  6725. <Attr lineType="solid" lineWidth="3.0" lineStyle="2" nullValueBreak="true"/>
  6726. </VanAttrLine>
  6727. </Attr>
  6728. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  6729. <VanAttrMarker>
  6730. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="3.5" width="30.0" height="30.0"/>
  6731. <Background name="NullBackground"/>
  6732. </VanAttrMarker>
  6733. </Attr>
  6734. </AttrList>
  6735. </ConditionAttr>
  6736. </DefaultAttr>
  6737. </ConditionCollection>
  6738. <Legend4VanChart>
  6739. <Legend>
  6740. <GI>
  6741. <AttrBackground>
  6742. <Background name="NullBackground"/>
  6743. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6744. </AttrBackground>
  6745. <AttrBorder>
  6746. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6747. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  6748. </AttrBorder>
  6749. <AttrAlpha>
  6750. <Attr alpha="1.0"/>
  6751. </AttrAlpha>
  6752. </GI>
  6753. <Attr position="3" visible="true" predefinedStyle="false"/>
  6754. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  6755. </Legend>
  6756. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  6757. </Legend4VanChart>
  6758. <DataSheet>
  6759. <GI>
  6760. <AttrBackground>
  6761. <Background name="NullBackground"/>
  6762. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6763. </AttrBackground>
  6764. <AttrBorder>
  6765. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  6766. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6767. </AttrBorder>
  6768. <AttrAlpha>
  6769. <Attr alpha="1.0"/>
  6770. </AttrAlpha>
  6771. </GI>
  6772. <Attr isVisible="false" predefinedStyle="false"/>
  6773. <FRFont name="SimSun" style="0" size="72"/>
  6774. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6775. <![CDATA[#.##]]></Format>
  6776. </DataSheet>
  6777. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  6778. <newPlotFillStyle>
  6779. <AttrFillStyle>
  6780. <AFStyle colorStyle="1"/>
  6781. <FillStyleName fillStyleName=""/>
  6782. <isCustomFillStyle isCustomFillStyle="true"/>
  6783. <PredefinedStyle predefinedStyle="false"/>
  6784. <ColorList>
  6785. <OColor colvalue="-39373"/>
  6786. <OColor colvalue="-39373"/>
  6787. <OColor colvalue="-375997"/>
  6788. <OColor colvalue="-15290420"/>
  6789. <OColor colvalue="-8011743"/>
  6790. <OColor colvalue="-3069334"/>
  6791. <OColor colvalue="-15830324"/>
  6792. <OColor colvalue="-9657585"/>
  6793. <OColor colvalue="-375997"/>
  6794. <OColor colvalue="-15290420"/>
  6795. <OColor colvalue="-8011743"/>
  6796. <OColor colvalue="-3069334"/>
  6797. <OColor colvalue="-236032"/>
  6798. <OColor colvalue="-9657585"/>
  6799. <OColor colvalue="-683247"/>
  6800. <OColor colvalue="-375997"/>
  6801. <OColor colvalue="-15290420"/>
  6802. <OColor colvalue="-8011743"/>
  6803. <OColor colvalue="-3069334"/>
  6804. <OColor colvalue="-15830324"/>
  6805. <OColor colvalue="-9657585"/>
  6806. <OColor colvalue="-683247"/>
  6807. <OColor colvalue="-375997"/>
  6808. <OColor colvalue="-236032"/>
  6809. <OColor colvalue="-8011743"/>
  6810. <OColor colvalue="-3069334"/>
  6811. <OColor colvalue="-15830324"/>
  6812. <OColor colvalue="-9657585"/>
  6813. <OColor colvalue="-683247"/>
  6814. <OColor colvalue="-375997"/>
  6815. <OColor colvalue="-1"/>
  6816. </ColorList>
  6817. </AttrFillStyle>
  6818. </newPlotFillStyle>
  6819. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  6820. <GradientStyle>
  6821. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  6822. </GradientStyle>
  6823. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  6824. <XAxisList>
  6825. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  6826. <Title>
  6827. <GI>
  6828. <AttrBackground>
  6829. <Background name="NullBackground"/>
  6830. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6831. </AttrBackground>
  6832. <AttrBorder>
  6833. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6834. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6835. </AttrBorder>
  6836. <AttrAlpha>
  6837. <Attr alpha="1.0"/>
  6838. </AttrAlpha>
  6839. </GI>
  6840. <O>
  6841. <![CDATA[条]]></O>
  6842. <TextAttr>
  6843. <Attr alignText="0" predefinedStyle="false">
  6844. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  6845. </Attr>
  6846. </TextAttr>
  6847. <TitleVisible value="true" position="2"/>
  6848. </Title>
  6849. <newAxisAttr isShowAxisLabel="true"/>
  6850. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  6851. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  6852. <AxisPosition value="3"/>
  6853. <TickLine201106 type="2" secType="0"/>
  6854. <ArrowShow arrowShow="false"/>
  6855. <TextAttr>
  6856. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  6857. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  6858. </Attr>
  6859. </TextAttr>
  6860. <Format class="com.fr.general.date.FineDateFormat">
  6861. <![CDATA[yyyy-MM-dd]]></Format>
  6862. <AxisLabelCount value="=14"/>
  6863. <AxisRange/>
  6864. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  6865. <ZoomAxisAttr isZoom="false"/>
  6866. <axisReversed axisReversed="false"/>
  6867. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="false" gridLineType="solid"/>
  6868. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6869. <alertList/>
  6870. <customBackgroundList/>
  6871. </VanChartAxis>
  6872. </XAxisList>
  6873. <YAxisList>
  6874. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  6875. <Title>
  6876. <GI>
  6877. <AttrBackground>
  6878. <Background name="NullBackground"/>
  6879. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  6880. </AttrBackground>
  6881. <AttrBorder>
  6882. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  6883. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  6884. </AttrBorder>
  6885. <AttrAlpha>
  6886. <Attr alpha="1.0"/>
  6887. </AttrAlpha>
  6888. </GI>
  6889. <O>
  6890. <![CDATA[(条)]]></O>
  6891. <TextAttr>
  6892. <Attr alignText="0" predefinedStyle="false">
  6893. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  6894. </Attr>
  6895. </TextAttr>
  6896. <TitleVisible value="true" position="1"/>
  6897. </Title>
  6898. <newAxisAttr isShowAxisLabel="true"/>
  6899. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  6900. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  6901. <AxisPosition value="2"/>
  6902. <TickLine201106 type="2" secType="0"/>
  6903. <ArrowShow arrowShow="false"/>
  6904. <TextAttr>
  6905. <Attr alignText="0" predefinedStyle="false">
  6906. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  6907. </Attr>
  6908. </TextAttr>
  6909. <AxisLabelCount value="=1"/>
  6910. <AxisRange minValue="=15000"/>
  6911. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  6912. <ZoomAxisAttr isZoom="false"/>
  6913. <axisReversed axisReversed="false"/>
  6914. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  6915. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  6916. <alertList/>
  6917. <customBackgroundList/>
  6918. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  6919. <ds>
  6920. <RadarYAxisTableDefinition>
  6921. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  6922. <attr/>
  6923. </RadarYAxisTableDefinition>
  6924. </ds>
  6925. </VanChartAxis>
  6926. </YAxisList>
  6927. <stackAndAxisCondition>
  6928. <ConditionCollection>
  6929. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  6930. <ConditionAttr name=""/>
  6931. </DefaultAttr>
  6932. </ConditionCollection>
  6933. </stackAndAxisCondition>
  6934. </Plot>
  6935. <ChartDefinition>
  6936. <OneValueCDDefinition seriesName="无" valueName="累计业务数据" function="com.fr.data.util.function.NoneFunction">
  6937. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  6938. <TableData class="com.fr.data.impl.NameTableData">
  6939. <Name>
  6940. <![CDATA[ds_buisness_data_chart2]]></Name>
  6941. </TableData>
  6942. <CategoryName value="日期"/>
  6943. </OneValueCDDefinition>
  6944. </ChartDefinition>
  6945. </Chart>
  6946. <UUID uuid="b86dfdea-03d5-45e2-8df7-f1cdd0a9f96c"/>
  6947. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  6948. <VanChartZoom>
  6949. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  6950. <from>
  6951. <![CDATA[]]></from>
  6952. <to>
  6953. <![CDATA[]]></to>
  6954. </VanChartZoom>
  6955. <refreshMoreLabel>
  6956. <attr moreLabel="false" autoTooltip="true"/>
  6957. <AttrTooltip>
  6958. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  6959. <TextAttr>
  6960. <Attr alignText="0" predefinedStyle="false">
  6961. <FRFont name="SimSun" style="0" size="72"/>
  6962. </Attr>
  6963. </TextAttr>
  6964. <AttrToolTipContent>
  6965. <TextAttr>
  6966. <Attr alignText="0" predefinedStyle="false">
  6967. <FRFont name="SimSun" style="0" size="72"/>
  6968. </Attr>
  6969. </TextAttr>
  6970. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  6971. <AttrTooltipRichText>
  6972. <Attr content="" isAuto="true" initParamsContent=""/>
  6973. <params>
  6974. <![CDATA[{}]]></params>
  6975. </AttrTooltipRichText>
  6976. </richText>
  6977. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  6978. <AttrTooltipValueFormat>
  6979. <Attr enable="true"/>
  6980. </AttrTooltipValueFormat>
  6981. </richTextValue>
  6982. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  6983. <AttrTooltipPercentFormat>
  6984. <Attr enable="false"/>
  6985. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  6986. <![CDATA[#.##%]]></Format>
  6987. </AttrTooltipPercentFormat>
  6988. </richTextPercent>
  6989. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  6990. <AttrToolTipCategoryFormat>
  6991. <Attr enable="false"/>
  6992. </AttrToolTipCategoryFormat>
  6993. </richTextCategory>
  6994. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  6995. <AttrTooltipSeriesFormat>
  6996. <Attr enable="false"/>
  6997. </AttrTooltipSeriesFormat>
  6998. </richTextSeries>
  6999. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  7000. <AttrTooltipChangedPercentFormat>
  7001. <Attr enable="false"/>
  7002. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7003. <![CDATA[#.##%]]></Format>
  7004. </AttrTooltipChangedPercentFormat>
  7005. </richTextChangedPercent>
  7006. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  7007. <AttrTooltipChangedValueFormat>
  7008. <Attr enable="false"/>
  7009. </AttrTooltipChangedValueFormat>
  7010. </richTextChangedValue>
  7011. <TableFieldCollection/>
  7012. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  7013. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  7014. <AttrTooltipValueFormat>
  7015. <Attr enable="true"/>
  7016. </AttrTooltipValueFormat>
  7017. </value>
  7018. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  7019. <AttrTooltipPercentFormat>
  7020. <Attr enable="false"/>
  7021. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7022. <![CDATA[#.##%]]></Format>
  7023. </AttrTooltipPercentFormat>
  7024. </percent>
  7025. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  7026. <AttrToolTipCategoryFormat>
  7027. <Attr enable="true"/>
  7028. </AttrToolTipCategoryFormat>
  7029. </category>
  7030. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  7031. <AttrTooltipSeriesFormat>
  7032. <Attr enable="true"/>
  7033. </AttrTooltipSeriesFormat>
  7034. </series>
  7035. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  7036. <AttrTooltipChangedPercentFormat>
  7037. <Attr enable="false"/>
  7038. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7039. <![CDATA[#.##%]]></Format>
  7040. </AttrTooltipChangedPercentFormat>
  7041. </changedPercent>
  7042. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  7043. <AttrTooltipChangedValueFormat>
  7044. <Attr enable="true"/>
  7045. </AttrTooltipChangedValueFormat>
  7046. </changedValue>
  7047. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  7048. </AttrToolTipContent>
  7049. <GI>
  7050. <AttrBackground>
  7051. <Background name="ColorBackground" color="-1"/>
  7052. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7053. </AttrBackground>
  7054. <AttrBorder>
  7055. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  7056. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  7057. </AttrBorder>
  7058. <AttrAlpha>
  7059. <Attr alpha="0.8"/>
  7060. </AttrAlpha>
  7061. </GI>
  7062. </AttrTooltip>
  7063. </refreshMoreLabel>
  7064. <ThemeAttr>
  7065. <Attr darkTheme="false" predefinedStyle="false"/>
  7066. </ThemeAttr>
  7067. </Chart>
  7068. </O>
  7069. <PrivilegeControl/>
  7070. <Expand/>
  7071. </C>
  7072. <C c="0" r="33" cs="9" s="8">
  7073. <O>
  7074. <![CDATA[图8.业务数据年累计]]></O>
  7075. <PrivilegeControl/>
  7076. <CellGUIAttr showAsHTML="true"/>
  7077. <CellPageAttr/>
  7078. <CellInsertPolicy/>
  7079. <Expand dir="0"/>
  7080. </C>
  7081. <C c="0" r="34" cs="9" s="13">
  7082. <O t="XMLable" class="com.fr.base.Formula">
  7083. <Attributes>
  7084. <![CDATA[="&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;各模块业务数据统计结果见下表。"]]></Attributes>
  7085. </O>
  7086. <PrivilegeControl/>
  7087. <CellGUIAttr showAsHTML="true"/>
  7088. <CellPageAttr/>
  7089. <CellInsertPolicy/>
  7090. <Expand dir="0"/>
  7091. </C>
  7092. <C c="0" r="35" cs="9" s="8">
  7093. <O>
  7094. <![CDATA[表2.业务数据统计表]]></O>
  7095. <PrivilegeControl/>
  7096. <CellGUIAttr showAsHTML="true"/>
  7097. <CellPageAttr/>
  7098. <CellInsertPolicy/>
  7099. <Expand dir="0"/>
  7100. </C>
  7101. <C c="0" r="36" s="14">
  7102. <O>
  7103. <![CDATA[序号]]></O>
  7104. <PrivilegeControl/>
  7105. <CellGUIAttr showAsDefault="true"/>
  7106. <CellPageAttr/>
  7107. <Expand/>
  7108. </C>
  7109. <C c="1" r="36" s="14">
  7110. <O>
  7111. <![CDATA[栏目]]></O>
  7112. <PrivilegeControl/>
  7113. <CellGUIAttr showAsDefault="true"/>
  7114. <CellPageAttr/>
  7115. <Expand/>
  7116. </C>
  7117. <C c="2" r="36" cs="2" s="14">
  7118. <O>
  7119. <![CDATA[模块]]></O>
  7120. <PrivilegeControl/>
  7121. <CellGUIAttr showAsDefault="true"/>
  7122. <CellPageAttr/>
  7123. <Expand/>
  7124. </C>
  7125. <C c="4" r="36" cs="2" s="14">
  7126. <O>
  7127. <![CDATA[新增/修改数据量]]></O>
  7128. <PrivilegeControl/>
  7129. <CellGUIAttr showAsDefault="true"/>
  7130. <CellPageAttr/>
  7131. <Expand/>
  7132. </C>
  7133. <C c="6" r="36" cs="2" s="14">
  7134. <O>
  7135. <![CDATA[累计业务数据量]]></O>
  7136. <PrivilegeControl/>
  7137. <CellGUIAttr showAsDefault="true"/>
  7138. <CellPageAttr/>
  7139. <Expand/>
  7140. </C>
  7141. <C c="8" r="36" s="14">
  7142. <O>
  7143. <![CDATA[责任部门]]></O>
  7144. <PrivilegeControl/>
  7145. <CellGUIAttr showAsDefault="true"/>
  7146. <CellPageAttr/>
  7147. <Expand/>
  7148. </C>
  7149. <C c="0" r="37" s="15">
  7150. <O t="XMLable" class="com.fr.base.Formula">
  7151. <Attributes>
  7152. <![CDATA[=SEQ()]]></Attributes>
  7153. </O>
  7154. <PrivilegeControl/>
  7155. <Present class="com.fr.base.present.FormulaPresent">
  7156. <Content>
  7157. <![CDATA[=seq(1)]]></Content>
  7158. </Present>
  7159. <Expand extendable="1" leftParentDefault="false" left="G38" upParentDefault="false"/>
  7160. </C>
  7161. <C c="1" r="37" s="15">
  7162. <PrivilegeControl/>
  7163. <Expand/>
  7164. </C>
  7165. <C c="2" r="37" cs="2" s="15">
  7166. <O t="DSColumn">
  7167. <Attributes dsName="ds_buisness_data" columnName="DICT_NAME"/>
  7168. <Complex/>
  7169. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  7170. <Parameters/>
  7171. </O>
  7172. <PrivilegeControl/>
  7173. <Expand dir="0" leftParentDefault="false"/>
  7174. </C>
  7175. <C c="4" r="37" cs="2" s="15">
  7176. <O t="DSColumn">
  7177. <Attributes dsName="ds_buisness_data" columnName="update_number"/>
  7178. <Complex/>
  7179. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  7180. <Parameters/>
  7181. </O>
  7182. <PrivilegeControl/>
  7183. <Expand dir="0"/>
  7184. </C>
  7185. <C c="6" r="37" cs="2" s="15">
  7186. <O t="DSColumn">
  7187. <Attributes dsName="ds_buisness_data" columnName="update_number_all"/>
  7188. <Complex/>
  7189. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  7190. <Parameters/>
  7191. </O>
  7192. <PrivilegeControl/>
  7193. <Expand dir="0"/>
  7194. </C>
  7195. <C c="8" r="37" s="15">
  7196. <O t="DSColumn">
  7197. <Attributes dsName="ds_buisness_data" columnName="DICT_DESCRIPTION"/>
  7198. <Complex/>
  7199. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  7200. <Parameters/>
  7201. </O>
  7202. <PrivilegeControl/>
  7203. <Expand dir="0"/>
  7204. </C>
  7205. <C c="0" r="38" cs="4" s="16">
  7206. <O>
  7207. <![CDATA[总计]]></O>
  7208. <PrivilegeControl/>
  7209. <CellGUIAttr showAsDefault="true"/>
  7210. <CellPageAttr/>
  7211. <Expand/>
  7212. </C>
  7213. <C c="4" r="38" cs="2" s="16">
  7214. <O t="XMLable" class="com.fr.base.Formula">
  7215. <Attributes>
  7216. <![CDATA[=sum(E38)]]></Attributes>
  7217. </O>
  7218. <PrivilegeControl/>
  7219. <CellGUIAttr showAsDefault="true"/>
  7220. <CellPageAttr/>
  7221. <Expand/>
  7222. </C>
  7223. <C c="6" r="38" cs="2" s="16">
  7224. <O t="XMLable" class="com.fr.base.Formula">
  7225. <Attributes>
  7226. <![CDATA[=sum(G38)]]></Attributes>
  7227. </O>
  7228. <PrivilegeControl/>
  7229. <CellGUIAttr showAsDefault="true"/>
  7230. <CellPageAttr/>
  7231. <Expand/>
  7232. </C>
  7233. <C c="8" r="38" s="16">
  7234. <PrivilegeControl/>
  7235. <CellGUIAttr showAsDefault="true"/>
  7236. <CellPageAttr/>
  7237. <Expand/>
  7238. </C>
  7239. <C c="0" r="40" cs="9" s="17">
  7240. <O>
  7241. <![CDATA[ 二、本日工作进展情况]]></O>
  7242. <PrivilegeControl/>
  7243. <Expand/>
  7244. </C>
  7245. <C c="0" r="41" cs="9" s="18">
  7246. <O t="DSColumn">
  7247. <Attributes dsName="ds_work_list" columnName="dict_value"/>
  7248. <Condition class="com.fr.data.condition.ListCondition"/>
  7249. <Complex/>
  7250. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  7251. <Result>
  7252. <![CDATA[="&nbsp;&nbsp;&nbsp;&nbsp;("+dict_value+")"+cooperation]]></Result>
  7253. <Parameters/>
  7254. </O>
  7255. <PrivilegeControl/>
  7256. <CellGUIAttr printBackground="false" showAsHTML="true"/>
  7257. <CellPageAttr/>
  7258. <Expand dir="0"/>
  7259. </C>
  7260. <C c="0" r="42" cs="9" s="12">
  7261. <O t="DSColumn">
  7262. <Attributes dsName="ds_work_list" columnName="message"/>
  7263. <Condition class="com.fr.data.condition.ListCondition"/>
  7264. <Complex/>
  7265. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  7266. <Result>
  7267. <![CDATA["&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;"+$$$]]></Result>
  7268. <Parameters/>
  7269. </O>
  7270. <PrivilegeControl/>
  7271. <CellGUIAttr showAsHTML="true"/>
  7272. <CellPageAttr/>
  7273. <CellInsertPolicy/>
  7274. <Expand dir="0" leftParentDefault="false" upParentDefault="false" up="A42"/>
  7275. </C>
  7276. <C c="0" r="45" cs="9" s="19">
  7277. <O>
  7278. <![CDATA[ 附件:平台访问数据统计图]]></O>
  7279. <PrivilegeControl/>
  7280. <Expand/>
  7281. </C>
  7282. <C c="0" r="50" cs="9">
  7283. <PrivilegeControl/>
  7284. <Expand leftParentDefault="false" upParentDefault="false"/>
  7285. </C>
  7286. <C c="0" r="59" cs="9" rs="5">
  7287. <PrivilegeControl/>
  7288. <Expand leftParentDefault="false" upParentDefault="false"/>
  7289. </C>
  7290. <C c="0" r="74" cs="9">
  7291. <PrivilegeControl/>
  7292. <Expand dir="1" leftParentDefault="false" upParentDefault="false"/>
  7293. </C>
  7294. <C c="0" r="75" cs="9" s="13">
  7295. <O>
  7296. <![CDATA[附件]]></O>
  7297. <PrivilegeControl/>
  7298. <Expand leftParentDefault="false" upParentDefault="false"/>
  7299. </C>
  7300. <C c="0" r="76" cs="9" s="20">
  7301. <O>
  7302. <![CDATA[平台访问数据统计图]]></O>
  7303. <PrivilegeControl/>
  7304. <Expand/>
  7305. </C>
  7306. <C c="0" r="78" cs="9" s="21">
  7307. <O t="XMLable" class="com.fr.base.Formula">
  7308. <Attributes>
  7309. <![CDATA[="统计日期:" + YEAR(datedelta($p_day, -120)) + "年" + MONTH(datedelta($p_day, -120)) + "月" + DAY(datedelta($p_day, -1)) + "日 至 " + YEAR($p_day) + "年" + MONTH($p_day) + "月" + DAY(datedelta($p_day, -1)) + "日"]]></Attributes>
  7310. </O>
  7311. <PrivilegeControl/>
  7312. <Expand/>
  7313. </C>
  7314. <C c="0" r="80" cs="9">
  7315. <O t="CC">
  7316. <LayoutAttr selectedIndex="0"/>
  7317. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  7318. <TextAttr>
  7319. <Attr alignText="0" predefinedStyle="false">
  7320. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  7321. </Attr>
  7322. </TextAttr>
  7323. </ChangeAttr>
  7324. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  7325. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  7326. <GI>
  7327. <AttrBackground>
  7328. <Background name="NullBackground"/>
  7329. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7330. </AttrBackground>
  7331. <AttrBorder>
  7332. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  7333. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  7334. </AttrBorder>
  7335. <AttrAlpha>
  7336. <Attr alpha="1.0"/>
  7337. </AttrAlpha>
  7338. </GI>
  7339. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  7340. <Title4VanChart>
  7341. <Title>
  7342. <GI>
  7343. <AttrBackground>
  7344. <Background name="NullBackground"/>
  7345. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7346. </AttrBackground>
  7347. <AttrBorder>
  7348. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7349. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  7350. </AttrBorder>
  7351. <AttrAlpha>
  7352. <Attr alpha="1.0"/>
  7353. </AttrAlpha>
  7354. </GI>
  7355. <O>
  7356. <![CDATA[新建图表标题]]></O>
  7357. <TextAttr>
  7358. <Attr alignText="0" predefinedStyle="false">
  7359. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  7360. </Attr>
  7361. </TextAttr>
  7362. <TitleVisible value="false" position="0"/>
  7363. </Title>
  7364. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  7365. </Title4VanChart>
  7366. <Plot class="com.fr.plugin.chart.custom.VanChartCustomPlot">
  7367. <VanChartPlotVersion version="20170715"/>
  7368. <GI>
  7369. <AttrBackground>
  7370. <Background name="NullBackground"/>
  7371. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7372. </AttrBackground>
  7373. <AttrBorder>
  7374. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7375. <newColor/>
  7376. </AttrBorder>
  7377. <AttrAlpha>
  7378. <Attr alpha="1.0"/>
  7379. </AttrAlpha>
  7380. </GI>
  7381. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  7382. <newHotTooltipStyle>
  7383. <AttrContents>
  7384. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  7385. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7386. <![CDATA[#.##]]></Format>
  7387. <PercentFormat>
  7388. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7389. <![CDATA[#0.##%]]></Format>
  7390. </PercentFormat>
  7391. </AttrContents>
  7392. </newHotTooltipStyle>
  7393. <ConditionCollection>
  7394. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  7395. <ConditionAttr name=""/>
  7396. </DefaultAttr>
  7397. </ConditionCollection>
  7398. <Legend4VanChart>
  7399. <Legend>
  7400. <GI>
  7401. <AttrBackground>
  7402. <Background name="NullBackground"/>
  7403. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7404. </AttrBackground>
  7405. <AttrBorder>
  7406. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7407. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  7408. </AttrBorder>
  7409. <AttrAlpha>
  7410. <Attr alpha="1.0"/>
  7411. </AttrAlpha>
  7412. </GI>
  7413. <Attr position="3" visible="true" predefinedStyle="false"/>
  7414. <FRFont name="微软雅黑" style="0" size="88" foreground="-10066330"/>
  7415. </Legend>
  7416. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  7417. </Legend4VanChart>
  7418. <DataSheet>
  7419. <GI>
  7420. <AttrBackground>
  7421. <Background name="NullBackground"/>
  7422. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7423. </AttrBackground>
  7424. <AttrBorder>
  7425. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  7426. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7427. </AttrBorder>
  7428. <AttrAlpha>
  7429. <Attr alpha="1.0"/>
  7430. </AttrAlpha>
  7431. </GI>
  7432. <Attr isVisible="false" predefinedStyle="false"/>
  7433. <FRFont name="宋体" style="0" size="72"/>
  7434. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7435. <![CDATA[#.##]]></Format>
  7436. </DataSheet>
  7437. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  7438. <newPlotFillStyle>
  7439. <AttrFillStyle>
  7440. <AFStyle colorStyle="1"/>
  7441. <FillStyleName fillStyleName=""/>
  7442. <isCustomFillStyle isCustomFillStyle="true"/>
  7443. <PredefinedStyle predefinedStyle="false"/>
  7444. <ColorList>
  7445. <OColor colvalue="-16744620"/>
  7446. <OColor colvalue="-9654529"/>
  7447. <OColor colvalue="-26368"/>
  7448. <OColor colvalue="-39373"/>
  7449. <OColor colvalue="-3658447"/>
  7450. <OColor colvalue="-10331231"/>
  7451. <OColor colvalue="-7763575"/>
  7452. <OColor colvalue="-6514688"/>
  7453. <OColor colvalue="-16744620"/>
  7454. <OColor colvalue="-6187579"/>
  7455. <OColor colvalue="-15714713"/>
  7456. <OColor colvalue="-945550"/>
  7457. <OColor colvalue="-4092928"/>
  7458. <OColor colvalue="-13224394"/>
  7459. <OColor colvalue="-12423245"/>
  7460. <OColor colvalue="-10043521"/>
  7461. <OColor colvalue="-406154"/>
  7462. <OColor colvalue="-13031292"/>
  7463. <OColor colvalue="-16732559"/>
  7464. <OColor colvalue="-7099690"/>
  7465. <OColor colvalue="-11991199"/>
  7466. <OColor colvalue="-331445"/>
  7467. <OColor colvalue="-6991099"/>
  7468. <OColor colvalue="-16686527"/>
  7469. <OColor colvalue="-9205567"/>
  7470. <OColor colvalue="-7397856"/>
  7471. <OColor colvalue="-406154"/>
  7472. <OColor colvalue="-2712831"/>
  7473. <OColor colvalue="-4737097"/>
  7474. <OColor colvalue="-11460720"/>
  7475. <OColor colvalue="-6696775"/>
  7476. <OColor colvalue="-3685632"/>
  7477. </ColorList>
  7478. </AttrFillStyle>
  7479. </newPlotFillStyle>
  7480. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  7481. <GradientStyle>
  7482. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  7483. </GradientStyle>
  7484. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  7485. <XAxisList>
  7486. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  7487. <Title>
  7488. <GI>
  7489. <AttrBackground>
  7490. <Background name="NullBackground"/>
  7491. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7492. </AttrBackground>
  7493. <AttrBorder>
  7494. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7495. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7496. </AttrBorder>
  7497. <AttrAlpha>
  7498. <Attr alpha="1.0"/>
  7499. </AttrAlpha>
  7500. </GI>
  7501. <O>
  7502. <![CDATA[]]></O>
  7503. <TextAttr>
  7504. <Attr alignText="0" predefinedStyle="false">
  7505. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  7506. </Attr>
  7507. </TextAttr>
  7508. <TitleVisible value="true" position="0"/>
  7509. </Title>
  7510. <newAxisAttr isShowAxisLabel="true"/>
  7511. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  7512. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  7513. <AxisPosition value="3"/>
  7514. <TickLine201106 type="2" secType="0"/>
  7515. <ArrowShow arrowShow="false"/>
  7516. <TextAttr>
  7517. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  7518. <FRFont name="Verdana" style="0" size="64" foreground="-10066330"/>
  7519. </Attr>
  7520. </TextAttr>
  7521. <Format class="com.fr.general.date.FineDateFormat">
  7522. <![CDATA[yyyy-MM-dd]]></Format>
  7523. <AxisLabelCount value="=14"/>
  7524. <AxisRange/>
  7525. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  7526. <ZoomAxisAttr isZoom="false"/>
  7527. <axisReversed axisReversed="false"/>
  7528. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  7529. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  7530. <alertList/>
  7531. <customBackgroundList/>
  7532. </VanChartAxis>
  7533. </XAxisList>
  7534. <YAxisList>
  7535. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  7536. <Title>
  7537. <GI>
  7538. <AttrBackground>
  7539. <Background name="NullBackground"/>
  7540. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7541. </AttrBackground>
  7542. <AttrBorder>
  7543. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7544. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7545. </AttrBorder>
  7546. <AttrAlpha>
  7547. <Attr alpha="1.0"/>
  7548. </AttrAlpha>
  7549. </GI>
  7550. <O>
  7551. <![CDATA[]]></O>
  7552. <TextAttr>
  7553. <Attr rotation="-90" alignText="0" predefinedStyle="false">
  7554. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  7555. </Attr>
  7556. </TextAttr>
  7557. <TitleVisible value="true" position="0"/>
  7558. </Title>
  7559. <newAxisAttr isShowAxisLabel="true"/>
  7560. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  7561. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  7562. <AxisPosition value="2"/>
  7563. <TickLine201106 type="2" secType="0"/>
  7564. <ArrowShow arrowShow="false"/>
  7565. <TextAttr>
  7566. <Attr alignText="0" predefinedStyle="false">
  7567. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  7568. </Attr>
  7569. </TextAttr>
  7570. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7571. <![CDATA[#0]]></Format>
  7572. <AxisLabelCount value="=1"/>
  7573. <AxisRange minValue="=0"/>
  7574. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  7575. <ZoomAxisAttr isZoom="false"/>
  7576. <axisReversed axisReversed="false"/>
  7577. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  7578. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  7579. <alertList/>
  7580. <customBackgroundList/>
  7581. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  7582. <ds>
  7583. <RadarYAxisTableDefinition>
  7584. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  7585. <attr/>
  7586. </RadarYAxisTableDefinition>
  7587. </ds>
  7588. </VanChartAxis>
  7589. </YAxisList>
  7590. <stackAndAxisCondition>
  7591. <ConditionCollection>
  7592. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  7593. <ConditionAttr name=""/>
  7594. </DefaultAttr>
  7595. </ConditionCollection>
  7596. </stackAndAxisCondition>
  7597. <VanChartCustomPlotAttr customStyle="stack_column_line"/>
  7598. <CustomPlotList>
  7599. <VanChartPlot class="com.fr.plugin.chart.column.VanChartColumnPlot">
  7600. <VanChartPlotVersion version="20170715"/>
  7601. <GI>
  7602. <AttrBackground>
  7603. <Background name="NullBackground"/>
  7604. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7605. </AttrBackground>
  7606. <AttrBorder>
  7607. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7608. <newColor/>
  7609. </AttrBorder>
  7610. <AttrAlpha>
  7611. <Attr alpha="1.0"/>
  7612. </AttrAlpha>
  7613. </GI>
  7614. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  7615. <newHotTooltipStyle>
  7616. <AttrContents>
  7617. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  7618. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7619. <![CDATA[#.##]]></Format>
  7620. <PercentFormat>
  7621. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7622. <![CDATA[#0.##%]]></Format>
  7623. </PercentFormat>
  7624. </AttrContents>
  7625. </newHotTooltipStyle>
  7626. <ConditionCollection>
  7627. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  7628. <ConditionAttr name="">
  7629. <AttrList>
  7630. <Attr class="com.fr.chart.base.AttrBorder">
  7631. <AttrBorder>
  7632. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  7633. <newColor borderColor="-1" autoColor="false" predefinedStyle="false"/>
  7634. </AttrBorder>
  7635. </Attr>
  7636. <Attr class="com.fr.chart.base.AttrAlpha">
  7637. <AttrAlpha>
  7638. <Attr alpha="1.0"/>
  7639. </AttrAlpha>
  7640. </Attr>
  7641. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  7642. <AttrTooltip>
  7643. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  7644. <TextAttr>
  7645. <Attr alignText="0" predefinedStyle="false">
  7646. <FRFont name="宋体" style="0" size="72"/>
  7647. </Attr>
  7648. </TextAttr>
  7649. <AttrToolTipContent>
  7650. <TextAttr>
  7651. <Attr alignText="0" predefinedStyle="false">
  7652. <FRFont name="宋体" style="0" size="72"/>
  7653. </Attr>
  7654. </TextAttr>
  7655. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  7656. <AttrTooltipRichText>
  7657. <Attr content="" isAuto="true" initParamsContent=""/>
  7658. <params>
  7659. <![CDATA[{}]]></params>
  7660. </AttrTooltipRichText>
  7661. </richText>
  7662. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  7663. <AttrTooltipValueFormat>
  7664. <Attr enable="true"/>
  7665. </AttrTooltipValueFormat>
  7666. </richTextValue>
  7667. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  7668. <AttrTooltipPercentFormat>
  7669. <Attr enable="false"/>
  7670. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7671. <![CDATA[#.##%]]></Format>
  7672. </AttrTooltipPercentFormat>
  7673. </richTextPercent>
  7674. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  7675. <AttrToolTipCategoryFormat>
  7676. <Attr enable="true"/>
  7677. </AttrToolTipCategoryFormat>
  7678. </richTextCategory>
  7679. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  7680. <AttrTooltipSeriesFormat>
  7681. <Attr enable="true"/>
  7682. </AttrTooltipSeriesFormat>
  7683. </richTextSeries>
  7684. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  7685. <AttrTooltipChangedPercentFormat>
  7686. <Attr enable="false"/>
  7687. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7688. <![CDATA[#.##%]]></Format>
  7689. </AttrTooltipChangedPercentFormat>
  7690. </richTextChangedPercent>
  7691. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  7692. <AttrTooltipChangedValueFormat>
  7693. <Attr enable="false"/>
  7694. </AttrTooltipChangedValueFormat>
  7695. </richTextChangedValue>
  7696. <TableFieldCollection/>
  7697. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  7698. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  7699. <AttrTooltipValueFormat>
  7700. <Attr enable="true"/>
  7701. </AttrTooltipValueFormat>
  7702. </value>
  7703. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  7704. <AttrTooltipPercentFormat>
  7705. <Attr enable="false"/>
  7706. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7707. <![CDATA[#.##%]]></Format>
  7708. </AttrTooltipPercentFormat>
  7709. </percent>
  7710. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  7711. <AttrToolTipCategoryFormat>
  7712. <Attr enable="true"/>
  7713. </AttrToolTipCategoryFormat>
  7714. </category>
  7715. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  7716. <AttrTooltipSeriesFormat>
  7717. <Attr enable="true"/>
  7718. </AttrTooltipSeriesFormat>
  7719. </series>
  7720. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  7721. <AttrTooltipChangedPercentFormat>
  7722. <Attr enable="false"/>
  7723. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7724. <![CDATA[#.##%]]></Format>
  7725. </AttrTooltipChangedPercentFormat>
  7726. </changedPercent>
  7727. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  7728. <AttrTooltipChangedValueFormat>
  7729. <Attr enable="false"/>
  7730. </AttrTooltipChangedValueFormat>
  7731. </changedValue>
  7732. <HtmlLabel customText="function(){ return this.category+this.seriesName+this.value;}" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  7733. </AttrToolTipContent>
  7734. <GI>
  7735. <AttrBackground>
  7736. <Background name="ColorBackground" color="-16777216"/>
  7737. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  7738. </AttrBackground>
  7739. <AttrBorder>
  7740. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  7741. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7742. </AttrBorder>
  7743. <AttrAlpha>
  7744. <Attr alpha="0.5"/>
  7745. </AttrAlpha>
  7746. </GI>
  7747. </AttrTooltip>
  7748. </Attr>
  7749. </AttrList>
  7750. </ConditionAttr>
  7751. </DefaultAttr>
  7752. </ConditionCollection>
  7753. <Legend4VanChart>
  7754. <Legend>
  7755. <GI>
  7756. <AttrBackground>
  7757. <Background name="NullBackground"/>
  7758. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7759. </AttrBackground>
  7760. <AttrBorder>
  7761. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7762. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  7763. </AttrBorder>
  7764. <AttrAlpha>
  7765. <Attr alpha="1.0"/>
  7766. </AttrAlpha>
  7767. </GI>
  7768. <Attr position="4" visible="true" predefinedStyle="false"/>
  7769. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  7770. </Legend>
  7771. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  7772. </Legend4VanChart>
  7773. <DataSheet>
  7774. <GI>
  7775. <AttrBackground>
  7776. <Background name="NullBackground"/>
  7777. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7778. </AttrBackground>
  7779. <AttrBorder>
  7780. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  7781. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7782. </AttrBorder>
  7783. <AttrAlpha>
  7784. <Attr alpha="1.0"/>
  7785. </AttrAlpha>
  7786. </GI>
  7787. <Attr isVisible="false" predefinedStyle="false"/>
  7788. <FRFont name="宋体" style="0" size="72"/>
  7789. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7790. <![CDATA[#.##]]></Format>
  7791. </DataSheet>
  7792. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  7793. <newPlotFillStyle>
  7794. <AttrFillStyle>
  7795. <AFStyle colorStyle="1"/>
  7796. <FillStyleName fillStyleName="新特性"/>
  7797. <isCustomFillStyle isCustomFillStyle="false"/>
  7798. <PredefinedStyle predefinedStyle="false"/>
  7799. <ColorList>
  7800. <OColor colvalue="-10243346"/>
  7801. <OColor colvalue="-8988015"/>
  7802. <OColor colvalue="-472193"/>
  7803. <OColor colvalue="-486008"/>
  7804. <OColor colvalue="-8595761"/>
  7805. <OColor colvalue="-7236949"/>
  7806. <OColor colvalue="-8873759"/>
  7807. <OColor colvalue="-1071514"/>
  7808. <OColor colvalue="-1188474"/>
  7809. <OColor colvalue="-6715442"/>
  7810. <OColor colvalue="-10243346"/>
  7811. <OColor colvalue="-8988015"/>
  7812. <OColor colvalue="-472193"/>
  7813. <OColor colvalue="-486008"/>
  7814. <OColor colvalue="-8595761"/>
  7815. <OColor colvalue="-7236949"/>
  7816. <OColor colvalue="-8873759"/>
  7817. <OColor colvalue="-1071514"/>
  7818. <OColor colvalue="-1188474"/>
  7819. <OColor colvalue="-6715442"/>
  7820. <OColor colvalue="-10243346"/>
  7821. <OColor colvalue="-8988015"/>
  7822. <OColor colvalue="-472193"/>
  7823. <OColor colvalue="-486008"/>
  7824. <OColor colvalue="-8595761"/>
  7825. <OColor colvalue="-7236949"/>
  7826. <OColor colvalue="-8873759"/>
  7827. <OColor colvalue="-1071514"/>
  7828. <OColor colvalue="-1188474"/>
  7829. <OColor colvalue="-6715442"/>
  7830. <OColor colvalue="-10243346"/>
  7831. <OColor colvalue="-8988015"/>
  7832. </ColorList>
  7833. </AttrFillStyle>
  7834. </newPlotFillStyle>
  7835. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  7836. <GradientStyle>
  7837. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  7838. </GradientStyle>
  7839. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  7840. <XAxisList>
  7841. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  7842. <Title>
  7843. <GI>
  7844. <AttrBackground>
  7845. <Background name="NullBackground"/>
  7846. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7847. </AttrBackground>
  7848. <AttrBorder>
  7849. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7850. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7851. </AttrBorder>
  7852. <AttrAlpha>
  7853. <Attr alpha="1.0"/>
  7854. </AttrAlpha>
  7855. </GI>
  7856. <O>
  7857. <![CDATA[]]></O>
  7858. <TextAttr>
  7859. <Attr alignText="0" predefinedStyle="false">
  7860. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  7861. </Attr>
  7862. </TextAttr>
  7863. <TitleVisible value="true" position="0"/>
  7864. </Title>
  7865. <newAxisAttr isShowAxisLabel="true"/>
  7866. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  7867. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  7868. <AxisPosition value="3"/>
  7869. <TickLine201106 type="2" secType="0"/>
  7870. <ArrowShow arrowShow="false"/>
  7871. <TextAttr>
  7872. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  7873. <FRFont name="Verdana" style="0" size="64" foreground="-10066330"/>
  7874. </Attr>
  7875. </TextAttr>
  7876. <Format class="com.fr.general.date.FineDateFormat">
  7877. <![CDATA[yyyy-MM-dd]]></Format>
  7878. <AxisLabelCount value="=14"/>
  7879. <AxisRange/>
  7880. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  7881. <ZoomAxisAttr isZoom="false"/>
  7882. <axisReversed axisReversed="false"/>
  7883. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  7884. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  7885. <alertList/>
  7886. <customBackgroundList/>
  7887. </VanChartAxis>
  7888. </XAxisList>
  7889. <YAxisList>
  7890. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  7891. <Title>
  7892. <GI>
  7893. <AttrBackground>
  7894. <Background name="NullBackground"/>
  7895. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7896. </AttrBackground>
  7897. <AttrBorder>
  7898. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7899. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  7900. </AttrBorder>
  7901. <AttrAlpha>
  7902. <Attr alpha="1.0"/>
  7903. </AttrAlpha>
  7904. </GI>
  7905. <O>
  7906. <![CDATA[]]></O>
  7907. <TextAttr>
  7908. <Attr rotation="-90" alignText="0" predefinedStyle="false">
  7909. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  7910. </Attr>
  7911. </TextAttr>
  7912. <TitleVisible value="true" position="0"/>
  7913. </Title>
  7914. <newAxisAttr isShowAxisLabel="true"/>
  7915. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  7916. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  7917. <AxisPosition value="2"/>
  7918. <TickLine201106 type="2" secType="0"/>
  7919. <ArrowShow arrowShow="false"/>
  7920. <TextAttr>
  7921. <Attr alignText="0" predefinedStyle="false">
  7922. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  7923. </Attr>
  7924. </TextAttr>
  7925. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7926. <![CDATA[#0]]></Format>
  7927. <AxisLabelCount value="=1"/>
  7928. <AxisRange minValue="=0"/>
  7929. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  7930. <ZoomAxisAttr isZoom="false"/>
  7931. <axisReversed axisReversed="false"/>
  7932. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  7933. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  7934. <alertList/>
  7935. <customBackgroundList/>
  7936. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  7937. <ds>
  7938. <RadarYAxisTableDefinition>
  7939. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  7940. <attr/>
  7941. </RadarYAxisTableDefinition>
  7942. </ds>
  7943. </VanChartAxis>
  7944. </YAxisList>
  7945. <stackAndAxisCondition>
  7946. <ConditionCollection>
  7947. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  7948. <ConditionAttr name=""/>
  7949. </DefaultAttr>
  7950. <ConditionAttrList>
  7951. <List index="0">
  7952. <ConditionAttr name="堆积和坐标轴1">
  7953. <AttrList>
  7954. <Attr class="com.fr.plugin.chart.base.AttrSeriesStackAndAxis">
  7955. <AttrSeriesStackAndAxis>
  7956. <Attr xAxisIndex="0" yAxisIndex="0" stacked="true" percentStacked="false" stackID="堆积和坐标轴1"/>
  7957. </AttrSeriesStackAndAxis>
  7958. </Attr>
  7959. </AttrList>
  7960. <Condition class="com.fr.data.condition.ListCondition"/>
  7961. </ConditionAttr>
  7962. </List>
  7963. </ConditionAttrList>
  7964. </ConditionCollection>
  7965. </stackAndAxisCondition>
  7966. <VanChartColumnPlotAttr seriesOverlapPercent="20.0" categoryIntervalPercent="20.0" fixedWidth="false" columnWidth="0" filledWithImage="false" isBar="false"/>
  7967. </VanChartPlot>
  7968. <VanChartPlot class="com.fr.plugin.chart.line.VanChartLinePlot">
  7969. <VanChartPlotVersion version="20170715"/>
  7970. <GI>
  7971. <AttrBackground>
  7972. <Background name="NullBackground"/>
  7973. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  7974. </AttrBackground>
  7975. <AttrBorder>
  7976. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  7977. <newColor/>
  7978. </AttrBorder>
  7979. <AttrAlpha>
  7980. <Attr alpha="1.0"/>
  7981. </AttrAlpha>
  7982. </GI>
  7983. <Attr isNullValueBreak="true" autoRefreshPerSecond="0" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  7984. <newHotTooltipStyle>
  7985. <AttrContents>
  7986. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  7987. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7988. <![CDATA[#.##]]></Format>
  7989. <PercentFormat>
  7990. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  7991. <![CDATA[#0.##%]]></Format>
  7992. </PercentFormat>
  7993. </AttrContents>
  7994. </newHotTooltipStyle>
  7995. <ConditionCollection>
  7996. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  7997. <ConditionAttr name="">
  7998. <AttrList>
  7999. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  8000. <AttrTooltip>
  8001. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="true" isCustom="false"/>
  8002. <TextAttr>
  8003. <Attr alignText="0" predefinedStyle="false">
  8004. <FRFont name="宋体" style="0" size="72"/>
  8005. </Attr>
  8006. </TextAttr>
  8007. <AttrToolTipContent>
  8008. <TextAttr>
  8009. <Attr alignText="0" predefinedStyle="false">
  8010. <FRFont name="宋体" style="0" size="72"/>
  8011. </Attr>
  8012. </TextAttr>
  8013. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  8014. <AttrTooltipRichText>
  8015. <Attr content="" isAuto="true" initParamsContent=""/>
  8016. <params>
  8017. <![CDATA[{}]]></params>
  8018. </AttrTooltipRichText>
  8019. </richText>
  8020. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  8021. <AttrTooltipValueFormat>
  8022. <Attr enable="true"/>
  8023. </AttrTooltipValueFormat>
  8024. </richTextValue>
  8025. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  8026. <AttrTooltipPercentFormat>
  8027. <Attr enable="false"/>
  8028. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8029. <![CDATA[#.##%]]></Format>
  8030. </AttrTooltipPercentFormat>
  8031. </richTextPercent>
  8032. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  8033. <AttrToolTipCategoryFormat>
  8034. <Attr enable="true"/>
  8035. </AttrToolTipCategoryFormat>
  8036. </richTextCategory>
  8037. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  8038. <AttrTooltipSeriesFormat>
  8039. <Attr enable="true"/>
  8040. </AttrTooltipSeriesFormat>
  8041. </richTextSeries>
  8042. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  8043. <AttrTooltipChangedPercentFormat>
  8044. <Attr enable="false"/>
  8045. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8046. <![CDATA[#.##%]]></Format>
  8047. </AttrTooltipChangedPercentFormat>
  8048. </richTextChangedPercent>
  8049. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  8050. <AttrTooltipChangedValueFormat>
  8051. <Attr enable="false"/>
  8052. </AttrTooltipChangedValueFormat>
  8053. </richTextChangedValue>
  8054. <TableFieldCollection/>
  8055. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  8056. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  8057. <AttrTooltipValueFormat>
  8058. <Attr enable="true"/>
  8059. </AttrTooltipValueFormat>
  8060. </value>
  8061. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  8062. <AttrTooltipPercentFormat>
  8063. <Attr enable="false"/>
  8064. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8065. <![CDATA[#.##%]]></Format>
  8066. </AttrTooltipPercentFormat>
  8067. </percent>
  8068. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  8069. <AttrToolTipCategoryFormat>
  8070. <Attr enable="true"/>
  8071. </AttrToolTipCategoryFormat>
  8072. </category>
  8073. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  8074. <AttrTooltipSeriesFormat>
  8075. <Attr enable="true"/>
  8076. </AttrTooltipSeriesFormat>
  8077. </series>
  8078. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  8079. <AttrTooltipChangedPercentFormat>
  8080. <Attr enable="false"/>
  8081. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8082. <![CDATA[#.##%]]></Format>
  8083. </AttrTooltipChangedPercentFormat>
  8084. </changedPercent>
  8085. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  8086. <AttrTooltipChangedValueFormat>
  8087. <Attr enable="false"/>
  8088. </AttrTooltipChangedValueFormat>
  8089. </changedValue>
  8090. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  8091. </AttrToolTipContent>
  8092. <GI>
  8093. <AttrBackground>
  8094. <Background name="ColorBackground" color="-16777216"/>
  8095. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  8096. </AttrBackground>
  8097. <AttrBorder>
  8098. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  8099. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  8100. </AttrBorder>
  8101. <AttrAlpha>
  8102. <Attr alpha="0.5"/>
  8103. </AttrAlpha>
  8104. </GI>
  8105. </AttrTooltip>
  8106. </Attr>
  8107. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  8108. <VanAttrLine>
  8109. <Attr lineType="solid" lineWidth="2.0" lineStyle="2" nullValueBreak="true"/>
  8110. </VanAttrLine>
  8111. </Attr>
  8112. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  8113. <VanAttrMarker>
  8114. <Attr isCommon="true" anchorSize="22.0" markerType="NullMarker" radius="4.5" width="30.0" height="30.0"/>
  8115. <Background name="NullBackground"/>
  8116. </VanAttrMarker>
  8117. </Attr>
  8118. </AttrList>
  8119. </ConditionAttr>
  8120. </DefaultAttr>
  8121. </ConditionCollection>
  8122. <Legend4VanChart>
  8123. <Legend>
  8124. <GI>
  8125. <AttrBackground>
  8126. <Background name="NullBackground"/>
  8127. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  8128. </AttrBackground>
  8129. <AttrBorder>
  8130. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  8131. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  8132. </AttrBorder>
  8133. <AttrAlpha>
  8134. <Attr alpha="1.0"/>
  8135. </AttrAlpha>
  8136. </GI>
  8137. <Attr position="4" visible="true" predefinedStyle="false"/>
  8138. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  8139. </Legend>
  8140. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="true" maxHeight="100.0" isHighlight="true"/>
  8141. </Legend4VanChart>
  8142. <DataSheet>
  8143. <GI>
  8144. <AttrBackground>
  8145. <Background name="NullBackground"/>
  8146. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  8147. </AttrBackground>
  8148. <AttrBorder>
  8149. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  8150. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  8151. </AttrBorder>
  8152. <AttrAlpha>
  8153. <Attr alpha="1.0"/>
  8154. </AttrAlpha>
  8155. </GI>
  8156. <Attr isVisible="false" predefinedStyle="false"/>
  8157. <FRFont name="宋体" style="0" size="72"/>
  8158. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8159. <![CDATA[#.##]]></Format>
  8160. </DataSheet>
  8161. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  8162. <newPlotFillStyle>
  8163. <AttrFillStyle>
  8164. <AFStyle colorStyle="1"/>
  8165. <FillStyleName fillStyleName="新特性"/>
  8166. <isCustomFillStyle isCustomFillStyle="false"/>
  8167. <PredefinedStyle predefinedStyle="false"/>
  8168. <ColorList>
  8169. <OColor colvalue="-10243346"/>
  8170. <OColor colvalue="-8988015"/>
  8171. <OColor colvalue="-472193"/>
  8172. <OColor colvalue="-486008"/>
  8173. <OColor colvalue="-8595761"/>
  8174. <OColor colvalue="-7236949"/>
  8175. <OColor colvalue="-8873759"/>
  8176. <OColor colvalue="-1071514"/>
  8177. <OColor colvalue="-1188474"/>
  8178. <OColor colvalue="-6715442"/>
  8179. <OColor colvalue="-10243346"/>
  8180. <OColor colvalue="-8988015"/>
  8181. <OColor colvalue="-472193"/>
  8182. <OColor colvalue="-486008"/>
  8183. <OColor colvalue="-8595761"/>
  8184. <OColor colvalue="-7236949"/>
  8185. <OColor colvalue="-8873759"/>
  8186. <OColor colvalue="-1071514"/>
  8187. <OColor colvalue="-1188474"/>
  8188. <OColor colvalue="-6715442"/>
  8189. <OColor colvalue="-10243346"/>
  8190. <OColor colvalue="-8988015"/>
  8191. <OColor colvalue="-472193"/>
  8192. <OColor colvalue="-486008"/>
  8193. <OColor colvalue="-8595761"/>
  8194. <OColor colvalue="-7236949"/>
  8195. <OColor colvalue="-8873759"/>
  8196. <OColor colvalue="-1071514"/>
  8197. <OColor colvalue="-1188474"/>
  8198. <OColor colvalue="-6715442"/>
  8199. <OColor colvalue="-10243346"/>
  8200. <OColor colvalue="-8988015"/>
  8201. </ColorList>
  8202. </AttrFillStyle>
  8203. </newPlotFillStyle>
  8204. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  8205. <GradientStyle>
  8206. <Attr gradientType="normal" startColor="-12146441" endColor="-9378161"/>
  8207. </GradientStyle>
  8208. <VanChartRectanglePlotAttr vanChartPlotType="custom" isDefaultIntervalBackground="true"/>
  8209. <XAxisList>
  8210. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  8211. <Title>
  8212. <GI>
  8213. <AttrBackground>
  8214. <Background name="NullBackground"/>
  8215. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  8216. </AttrBackground>
  8217. <AttrBorder>
  8218. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  8219. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  8220. </AttrBorder>
  8221. <AttrAlpha>
  8222. <Attr alpha="1.0"/>
  8223. </AttrAlpha>
  8224. </GI>
  8225. <O>
  8226. <![CDATA[]]></O>
  8227. <TextAttr>
  8228. <Attr alignText="0" predefinedStyle="false">
  8229. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  8230. </Attr>
  8231. </TextAttr>
  8232. <TitleVisible value="true" position="0"/>
  8233. </Title>
  8234. <newAxisAttr isShowAxisLabel="true"/>
  8235. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  8236. <newLineColor mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  8237. <AxisPosition value="3"/>
  8238. <TickLine201106 type="2" secType="0"/>
  8239. <ArrowShow arrowShow="false"/>
  8240. <TextAttr>
  8241. <Attr rotation="-45" alignText="0" predefinedStyle="false">
  8242. <FRFont name="Verdana" style="0" size="64" foreground="-10066330"/>
  8243. </Attr>
  8244. </TextAttr>
  8245. <Format class="com.fr.general.date.FineDateFormat">
  8246. <![CDATA[yyyy-MM-dd]]></Format>
  8247. <AxisLabelCount value="=14"/>
  8248. <AxisRange/>
  8249. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  8250. <ZoomAxisAttr isZoom="false"/>
  8251. <axisReversed axisReversed="false"/>
  8252. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="false" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  8253. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  8254. <alertList/>
  8255. <customBackgroundList/>
  8256. </VanChartAxis>
  8257. </XAxisList>
  8258. <YAxisList>
  8259. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  8260. <Title>
  8261. <GI>
  8262. <AttrBackground>
  8263. <Background name="NullBackground"/>
  8264. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  8265. </AttrBackground>
  8266. <AttrBorder>
  8267. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  8268. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  8269. </AttrBorder>
  8270. <AttrAlpha>
  8271. <Attr alpha="1.0"/>
  8272. </AttrAlpha>
  8273. </GI>
  8274. <O>
  8275. <![CDATA[]]></O>
  8276. <TextAttr>
  8277. <Attr rotation="-90" alignText="0" predefinedStyle="false">
  8278. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  8279. </Attr>
  8280. </TextAttr>
  8281. <TitleVisible value="true" position="0"/>
  8282. </Title>
  8283. <newAxisAttr isShowAxisLabel="true"/>
  8284. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  8285. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  8286. <AxisPosition value="2"/>
  8287. <TickLine201106 type="2" secType="0"/>
  8288. <ArrowShow arrowShow="false"/>
  8289. <TextAttr>
  8290. <Attr alignText="0" predefinedStyle="false">
  8291. <FRFont name="Verdana" style="0" size="72" foreground="-10066330"/>
  8292. </Attr>
  8293. </TextAttr>
  8294. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8295. <![CDATA[#0]]></Format>
  8296. <AxisLabelCount value="=1"/>
  8297. <AxisRange minValue="=0"/>
  8298. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  8299. <ZoomAxisAttr isZoom="false"/>
  8300. <axisReversed axisReversed="false"/>
  8301. <VanChartAxisAttr mainTickLine="0" secTickLine="0" axisName="Y轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="solid"/>
  8302. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  8303. <alertList/>
  8304. <customBackgroundList/>
  8305. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  8306. <ds>
  8307. <RadarYAxisTableDefinition>
  8308. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  8309. <attr/>
  8310. </RadarYAxisTableDefinition>
  8311. </ds>
  8312. </VanChartAxis>
  8313. </YAxisList>
  8314. <stackAndAxisCondition>
  8315. <ConditionCollection>
  8316. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  8317. <ConditionAttr name=""/>
  8318. </DefaultAttr>
  8319. </ConditionCollection>
  8320. </stackAndAxisCondition>
  8321. </VanChartPlot>
  8322. </CustomPlotList>
  8323. </Plot>
  8324. <ChartDefinition>
  8325. <CustomDefinition>
  8326. <DefinitionMapList>
  8327. <DefinitionMap key="column">
  8328. <MoreNameCDDefinition>
  8329. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  8330. <TableData class="com.fr.data.impl.NameTableData">
  8331. <Name>
  8332. <![CDATA[ds_intervie_chart_daily_trend]]></Name>
  8333. </TableData>
  8334. <CategoryName value="日期"/>
  8335. <ChartSummaryColumn name="注册用户" function="com.fr.data.util.function.NoneFunction" customName="注册用户"/>
  8336. <ChartSummaryColumn name="未注册用户" function="com.fr.data.util.function.NoneFunction" customName="未注册用户"/>
  8337. </MoreNameCDDefinition>
  8338. </DefinitionMap>
  8339. <DefinitionMap key="line">
  8340. <MoreNameCDDefinition>
  8341. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  8342. <TableData class="com.fr.data.impl.NameTableData">
  8343. <Name>
  8344. <![CDATA[ds_intervie_chart_daily_trend]]></Name>
  8345. </TableData>
  8346. <CategoryName value="日期"/>
  8347. <ChartSummaryColumn name="访问总次数" function="com.fr.data.util.function.NoneFunction" customName="访问总次数"/>
  8348. </MoreNameCDDefinition>
  8349. </DefinitionMap>
  8350. </DefinitionMapList>
  8351. </CustomDefinition>
  8352. </ChartDefinition>
  8353. </Chart>
  8354. <UUID uuid="3abd665b-4a96-4945-82da-fab979f58c09"/>
  8355. <tools hidden="true" sort="false" export="true" fullScreen="true"/>
  8356. <VanChartZoom>
  8357. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  8358. <from>
  8359. <![CDATA[]]></from>
  8360. <to>
  8361. <![CDATA[]]></to>
  8362. </VanChartZoom>
  8363. <refreshMoreLabel>
  8364. <attr moreLabel="false" autoTooltip="true"/>
  8365. <AttrTooltip>
  8366. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  8367. <TextAttr>
  8368. <Attr alignText="0" predefinedStyle="false">
  8369. <FRFont name="SimSun" style="0" size="72"/>
  8370. </Attr>
  8371. </TextAttr>
  8372. <AttrToolTipContent>
  8373. <TextAttr>
  8374. <Attr alignText="0" predefinedStyle="false">
  8375. <FRFont name="SimSun" style="0" size="72"/>
  8376. </Attr>
  8377. </TextAttr>
  8378. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  8379. <AttrTooltipRichText>
  8380. <Attr content="" isAuto="true" initParamsContent=""/>
  8381. <params>
  8382. <![CDATA[{}]]></params>
  8383. </AttrTooltipRichText>
  8384. </richText>
  8385. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  8386. <AttrTooltipValueFormat>
  8387. <Attr enable="true"/>
  8388. </AttrTooltipValueFormat>
  8389. </richTextValue>
  8390. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  8391. <AttrTooltipPercentFormat>
  8392. <Attr enable="false"/>
  8393. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8394. <![CDATA[#.##%]]></Format>
  8395. </AttrTooltipPercentFormat>
  8396. </richTextPercent>
  8397. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  8398. <AttrToolTipCategoryFormat>
  8399. <Attr enable="false"/>
  8400. </AttrToolTipCategoryFormat>
  8401. </richTextCategory>
  8402. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  8403. <AttrTooltipSeriesFormat>
  8404. <Attr enable="false"/>
  8405. </AttrTooltipSeriesFormat>
  8406. </richTextSeries>
  8407. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  8408. <AttrTooltipChangedPercentFormat>
  8409. <Attr enable="false"/>
  8410. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8411. <![CDATA[#.##%]]></Format>
  8412. </AttrTooltipChangedPercentFormat>
  8413. </richTextChangedPercent>
  8414. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  8415. <AttrTooltipChangedValueFormat>
  8416. <Attr enable="false"/>
  8417. </AttrTooltipChangedValueFormat>
  8418. </richTextChangedValue>
  8419. <TableFieldCollection/>
  8420. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  8421. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  8422. <AttrTooltipValueFormat>
  8423. <Attr enable="true"/>
  8424. </AttrTooltipValueFormat>
  8425. </value>
  8426. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  8427. <AttrTooltipPercentFormat>
  8428. <Attr enable="false"/>
  8429. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8430. <![CDATA[#.##%]]></Format>
  8431. </AttrTooltipPercentFormat>
  8432. </percent>
  8433. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  8434. <AttrToolTipCategoryFormat>
  8435. <Attr enable="true"/>
  8436. </AttrToolTipCategoryFormat>
  8437. </category>
  8438. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  8439. <AttrTooltipSeriesFormat>
  8440. <Attr enable="true"/>
  8441. </AttrTooltipSeriesFormat>
  8442. </series>
  8443. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  8444. <AttrTooltipChangedPercentFormat>
  8445. <Attr enable="false"/>
  8446. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  8447. <![CDATA[#.##%]]></Format>
  8448. </AttrTooltipChangedPercentFormat>
  8449. </changedPercent>
  8450. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  8451. <AttrTooltipChangedValueFormat>
  8452. <Attr enable="true"/>
  8453. </AttrTooltipChangedValueFormat>
  8454. </changedValue>
  8455. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  8456. </AttrToolTipContent>
  8457. <GI>
  8458. <AttrBackground>
  8459. <Background name="ColorBackground" color="-1"/>
  8460. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  8461. </AttrBackground>
  8462. <AttrBorder>
  8463. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  8464. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  8465. </AttrBorder>
  8466. <AttrAlpha>
  8467. <Attr alpha="0.8"/>
  8468. </AttrAlpha>
  8469. </GI>
  8470. </AttrTooltip>
  8471. </refreshMoreLabel>
  8472. <ThemeAttr>
  8473. <Attr darkTheme="false" predefinedStyle="false"/>
  8474. </ThemeAttr>
  8475. </Chart>
  8476. </O>
  8477. <PrivilegeControl/>
  8478. <Expand/>
  8479. </C>
  8480. <C c="0" r="81" cs="9" s="8">
  8481. <O>
  8482. <![CDATA[图9.日访问量走势图]]></O>
  8483. <PrivilegeControl/>
  8484. <CellGUIAttr showAsHTML="true"/>
  8485. <CellPageAttr/>
  8486. <CellInsertPolicy/>
  8487. <Expand dir="0"/>
  8488. </C>
  8489. </CellElementList>
  8490. <ReportAttrSet>
  8491. <ReportSettings headerHeight="0" footerHeight="2448000">
  8492. <PaperSetting>
  8493. <Margin top="5040000" left="4032000" bottom="3600000" right="4032000"/>
  8494. </PaperSetting>
  8495. <Background name="ColorBackground" color="-1"/>
  8496. </ReportSettings>
  8497. <Header reportPageType="0">
  8498. <Background name="NullBackground"/>
  8499. <LeftList/>
  8500. <CenterList/>
  8501. <RightList/>
  8502. </Header>
  8503. <Footer reportPageType="0">
  8504. <Background name="NullBackground"/>
  8505. <LeftList/>
  8506. <CenterList>
  8507. <HFElement className="com.fr.base.headerfooter.TextHFElement">
  8508. <FRFont name="宋体" style="0" size="128"/>
  8509. <![CDATA[— ]]></HFElement>
  8510. <HFElement className="com.fr.base.headerfooter.PageNumberHFElement">
  8511. <FRFont name="宋体" style="0" size="96"/>
  8512. <![CDATA[1]]></HFElement>
  8513. <HFElement className="com.fr.base.headerfooter.TextHFElement">
  8514. <FRFont name="宋体" style="0" size="128"/>
  8515. <![CDATA[ —]]></HFElement>
  8516. </CenterList>
  8517. <RightList/>
  8518. </Footer>
  8519. </ReportAttrSet>
  8520. <PrivilegeControl/>
  8521. </Report>
  8522. <ReportParameterAttr>
  8523. <Attributes showWindow="true" delayPlaying="true" windowPosition="1" align="0" useParamsTemplate="true" currentIndex="0"/>
  8524. <PWTitle>
  8525. <![CDATA[参数]]></PWTitle>
  8526. <Parameter>
  8527. <Attributes name="p_day"/>
  8528. <O>
  8529. <![CDATA[2021-05-26]]></O>
  8530. </Parameter>
  8531. <Parameter>
  8532. <Attributes name="p_start_day"/>
  8533. <O>
  8534. <![CDATA[2021-05-26]]></O>
  8535. </Parameter>
  8536. <Parameter>
  8537. <Attributes name="p_day_count"/>
  8538. <O>
  8539. <![CDATA[1]]></O>
  8540. </Parameter>
  8541. <Parameter>
  8542. <Attributes name="p_report_no"/>
  8543. <O>
  8544. <![CDATA[0]]></O>
  8545. </Parameter>
  8546. <Parameter>
  8547. <Attributes name="p_work_count"/>
  8548. <O t="I">
  8549. <![CDATA[5]]></O>
  8550. </Parameter>
  8551. <Parameter>
  8552. <Attributes name="p_day1"/>
  8553. <O>
  8554. <![CDATA[2021-05-25]]></O>
  8555. </Parameter>
  8556. </ReportParameterAttr>
  8557. <StyleList>
  8558. <Style horizontal_alignment="0" imageLayout="1" paddingLeft="1" paddingRight="1" spacingBefore="20" spacingAfter="20">
  8559. <FRFont name="宋体" style="1" size="208"/>
  8560. <Background name="NullBackground"/>
  8561. <Border/>
  8562. </Style>
  8563. <Style horizontal_alignment="2" imageLayout="1">
  8564. <FRFont name="仿宋" style="0" size="128"/>
  8565. <Background name="NullBackground"/>
  8566. <Border/>
  8567. </Style>
  8568. <Style imageLayout="1">
  8569. <FRFont name="仿宋" style="0" size="128"/>
  8570. <Background name="NullBackground"/>
  8571. <Border/>
  8572. </Style>
  8573. <Style horizontal_alignment="4" imageLayout="1">
  8574. <FRFont name="仿宋" style="0" size="128"/>
  8575. <Background name="NullBackground"/>
  8576. <Border/>
  8577. </Style>
  8578. <Style imageLayout="1">
  8579. <FRFont name="SimSun" style="0" size="72"/>
  8580. <Background name="ColorBackground" color="-1"/>
  8581. <Border>
  8582. <Top style="2" color="-65536"/>
  8583. <Bottom color="-65536"/>
  8584. <Left color="-65536"/>
  8585. <Right color="-65536"/>
  8586. </Border>
  8587. </Style>
  8588. <Style imageLayout="1" paddingLeft="0" paddingRight="0" lineSpacing="1">
  8589. <FRFont name="黑体" style="1" size="152"/>
  8590. <Background name="NullBackground"/>
  8591. <Border/>
  8592. </Style>
  8593. <Style imageLayout="1" paddingLeft="0" paddingRight="0" lineSpacing="1">
  8594. <FRFont name="楷体" style="1" size="152"/>
  8595. <Background name="NullBackground"/>
  8596. <Border/>
  8597. </Style>
  8598. <Style horizontal_alignment="6" imageLayout="1" paddingLeft="0" paddingRight="0" lineSpacing="1">
  8599. <FRFont name="仿宋" style="0" size="152"/>
  8600. <Background name="NullBackground"/>
  8601. <Border/>
  8602. </Style>
  8603. <Style horizontal_alignment="0" imageLayout="1" paddingLeft="0" paddingRight="0">
  8604. <FRFont name="仿宋" style="0" size="112"/>
  8605. <Background name="NullBackground"/>
  8606. <Border/>
  8607. </Style>
  8608. <Style horizontal_alignment="2" imageLayout="1" paddingLeft="0" paddingRight="0" spacingAfter="-24" lineSpacing="7">
  8609. <FRFont name="仿宋" style="0" size="152"/>
  8610. <Background name="NullBackground"/>
  8611. <Border/>
  8612. </Style>
  8613. <Style imageLayout="1" paddingLeft="0" paddingRight="0" spacingBefore="100" lineSpacing="-24">
  8614. <FRFont name="SimSun" style="0" size="72"/>
  8615. <Background name="NullBackground"/>
  8616. <Border/>
  8617. </Style>
  8618. <Style imageLayout="1" paddingLeft="0" paddingRight="0">
  8619. <FRFont name="楷体" style="1" size="152"/>
  8620. <Background name="NullBackground"/>
  8621. <Border/>
  8622. </Style>
  8623. <Style horizontal_alignment="6" imageLayout="1" paddingLeft="0" paddingRight="0" lineSpacing="7">
  8624. <FRFont name="仿宋" style="0" size="152"/>
  8625. <Background name="NullBackground"/>
  8626. <Border/>
  8627. </Style>
  8628. <Style horizontal_alignment="2" imageLayout="1" paddingLeft="0" paddingRight="0" lineSpacing="7">
  8629. <FRFont name="仿宋" style="0" size="152"/>
  8630. <Background name="NullBackground"/>
  8631. <Border/>
  8632. </Style>
  8633. <Style horizontal_alignment="0" imageLayout="1">
  8634. <FRFont name="仿宋" style="1" size="96"/>
  8635. <Background name="ColorBackground" color="-4144960"/>
  8636. <Border>
  8637. <Top style="1" color="-16777216"/>
  8638. <Bottom style="1" color="-16777216"/>
  8639. <Left style="1" color="-16777216"/>
  8640. <Right style="1" color="-16777216"/>
  8641. </Border>
  8642. </Style>
  8643. <Style horizontal_alignment="0" imageLayout="1">
  8644. <FRFont name="仿宋" style="0" size="96"/>
  8645. <Background name="NullBackground"/>
  8646. <Border>
  8647. <Top style="1" color="-16777216"/>
  8648. <Bottom style="1" color="-16777216"/>
  8649. <Left style="1" color="-16777216"/>
  8650. <Right style="1" color="-16777216"/>
  8651. </Border>
  8652. </Style>
  8653. <Style horizontal_alignment="0" imageLayout="1">
  8654. <FRFont name="仿宋" style="1" size="96"/>
  8655. <Background name="NullBackground"/>
  8656. <Border>
  8657. <Top style="1"/>
  8658. <Bottom style="1"/>
  8659. <Left style="1"/>
  8660. <Right style="1"/>
  8661. </Border>
  8662. </Style>
  8663. <Style imageLayout="1" paddingLeft="0" paddingRight="0">
  8664. <FRFont name="黑体" style="0" size="152"/>
  8665. <Background name="NullBackground"/>
  8666. <Border/>
  8667. </Style>
  8668. <Style imageLayout="1" paddingLeft="0" paddingRight="0" lineSpacing="7">
  8669. <FRFont name="楷体" style="0" size="152"/>
  8670. <Background name="NullBackground"/>
  8671. <Border/>
  8672. </Style>
  8673. <Style horizontal_alignment="6" imageLayout="1">
  8674. <FRFont name="仿宋" style="0" size="152"/>
  8675. <Background name="NullBackground"/>
  8676. <Border/>
  8677. </Style>
  8678. <Style horizontal_alignment="0" imageLayout="1">
  8679. <FRFont name="SimSun" style="1" size="208"/>
  8680. <Background name="NullBackground"/>
  8681. <Border/>
  8682. </Style>
  8683. <Style horizontal_alignment="4" imageLayout="1">
  8684. <FRFont name="仿宋" style="0" size="104"/>
  8685. <Background name="NullBackground"/>
  8686. <Border/>
  8687. </Style>
  8688. </StyleList>
  8689. <DesignerVersion DesignerVersion="KAA"/>
  8690. <PreviewType PreviewType="0"/>
  8691. <TemplateCloudInfoAttrMark class="com.fr.plugin.cloud.analytics.attr.TemplateInfoAttrMark" pluginID="com.fr.plugin.cloud.analytics.v10" plugin-version="2.13.0.20230105">
  8692. <TemplateCloudInfoAttrMark createTime="1630662507409"/>
  8693. </TemplateCloudInfoAttrMark>
  8694. <TemplateIdAttMark class="com.fr.base.iofile.attr.TemplateIdAttrMark">
  8695. <TemplateIdAttMark TemplateId="910cf8d8-9115-4841-b579-7a78e1eb1c22"/>
  8696. </TemplateIdAttMark>
  8697. </WorkBook>