three_rule.cpt 69 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <WorkBook xmlVersion="20170720" releaseVersion="10.0.0">
  3. <TableDataMap>
  4. <TableData name="one_tule" class="com.fr.data.impl.DBTableData">
  5. <Parameters>
  6. <Parameter>
  7. <Attributes name="start_time"/>
  8. <O>
  9. <![CDATA[2010]]></O>
  10. </Parameter>
  11. <Parameter>
  12. <Attributes name="end_time"/>
  13. <O>
  14. <![CDATA[2018]]></O>
  15. </Parameter>
  16. <Parameter>
  17. <Attributes name="index_name"/>
  18. <O>
  19. <![CDATA[人口总数]]></O>
  20. </Parameter>
  21. <Parameter>
  22. <Attributes name="country_list"/>
  23. <O>
  24. <![CDATA[\'中国\',\'日本\']]></O>
  25. </Parameter>
  26. <Parameter>
  27. <Attributes name="table_name1"/>
  28. <O>
  29. <![CDATA[gei_app_data_wb]]></O>
  30. </Parameter>
  31. <Parameter>
  32. <Attributes name="index_id"/>
  33. <O>
  34. <![CDATA[]]></O>
  35. </Parameter>
  36. </Parameters>
  37. <Attributes maxMemRowCount="-1"/>
  38. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  39. <DatabaseName>
  40. <![CDATA[dcp]]></DatabaseName>
  41. </Connection>
  42. <Query>
  43. <![CDATA[SELECT gs.EN_NAME as COUNTRY_CN_NAME,p.DATA_VALUE ,ifnull(p.INDEX_EN_NAME,'${index_name}') as INDEX_CN_NAME ,p.DATA_YEAR from gei_sys_country gs
  44. left JOIN (SELECT DATA_YEAR,COUNTRY_CN_NAME,INDEX_EN_NAME,DATA_VALUE FROM ${table_name1} WHERE DATA_YEAR >='${start_time}' AND DATA_YEAR <='${end_time}' AND INDEX_EN_NAME = '${index_name}'and INDEX_ID = ${index_id} AND COUNTRY_CN_NAME in(${country_list}))p on p.COUNTRY_CN_NAME = gs.CN_NAME
  45. WHERE gs.CN_NAME in (${country_list})order by p.DATA_YEAR asc;]]></Query>
  46. <PageQuery>
  47. <![CDATA[]]></PageQuery>
  48. </TableData>
  49. <TableData name="two_rule" class="com.fr.data.impl.DBTableData">
  50. <Parameters>
  51. <Parameter>
  52. <Attributes name="start_time"/>
  53. <O>
  54. <![CDATA[2010]]></O>
  55. </Parameter>
  56. <Parameter>
  57. <Attributes name="end_time"/>
  58. <O>
  59. <![CDATA[2018]]></O>
  60. </Parameter>
  61. <Parameter>
  62. <Attributes name="country_list"/>
  63. <O>
  64. <![CDATA[\"中国\",\"日本\"]]></O>
  65. </Parameter>
  66. <Parameter>
  67. <Attributes name="table_name2"/>
  68. <O>
  69. <![CDATA[gei_app_data_wb]]></O>
  70. </Parameter>
  71. <Parameter>
  72. <Attributes name="index_name1"/>
  73. <O>
  74. <![CDATA[]]></O>
  75. </Parameter>
  76. <Parameter>
  77. <Attributes name="index_id1"/>
  78. <O>
  79. <![CDATA[]]></O>
  80. </Parameter>
  81. </Parameters>
  82. <Attributes maxMemRowCount="-1"/>
  83. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  84. <DatabaseName>
  85. <![CDATA[dcp]]></DatabaseName>
  86. </Connection>
  87. <Query>
  88. <![CDATA[SELECT gs.EN_NAME as COUNTRY_CN_NAME,p.DATA_VALUE ,ifnull(p.INDEX_EN_NAME,'${index_name1}') as INDEX_CN_NAME ,p.DATA_YEAR from gei_sys_country gs
  89. left JOIN (SELECT DATA_YEAR,COUNTRY_CN_NAME,INDEX_EN_NAME,DATA_VALUE FROM ${table_name2} WHERE DATA_YEAR >='${start_time}' AND DATA_YEAR <='${end_time}' AND INDEX_EN_NAME = '${index_name1}'and INDEX_ID = ${index_id1} AND COUNTRY_CN_NAME in(${country_list}))p on p.COUNTRY_CN_NAME = gs.CN_NAME
  90. WHERE gs.CN_NAME in (${country_list})order by p.DATA_YEAR asc;]]></Query>
  91. <PageQuery>
  92. <![CDATA[]]></PageQuery>
  93. </TableData>
  94. <TableData name="three_rule" class="com.fr.data.impl.DBTableData">
  95. <Parameters>
  96. <Parameter>
  97. <Attributes name="start_time"/>
  98. <O>
  99. <![CDATA[2010]]></O>
  100. </Parameter>
  101. <Parameter>
  102. <Attributes name="end_time"/>
  103. <O>
  104. <![CDATA[2018]]></O>
  105. </Parameter>
  106. <Parameter>
  107. <Attributes name="index_name2"/>
  108. <O>
  109. <![CDATA[GDP增长率]]></O>
  110. </Parameter>
  111. <Parameter>
  112. <Attributes name="country_list"/>
  113. <O>
  114. <![CDATA[\"中国\",\"韩国\"]]></O>
  115. </Parameter>
  116. <Parameter>
  117. <Attributes name="table_name3"/>
  118. <O>
  119. <![CDATA[gei_app_data_wb]]></O>
  120. </Parameter>
  121. <Parameter>
  122. <Attributes name="index_id2"/>
  123. <O>
  124. <![CDATA[]]></O>
  125. </Parameter>
  126. </Parameters>
  127. <Attributes maxMemRowCount="-1"/>
  128. <Connection class="com.fr.data.impl.NameDatabaseConnection">
  129. <DatabaseName>
  130. <![CDATA[dcp]]></DatabaseName>
  131. </Connection>
  132. <Query>
  133. <![CDATA[SELECT gs.EN_NAME as COUNTRY_CN_NAME,p.DATA_VALUE ,ifnull(p.INDEX_EN_NAME,'${index_name2}') as INDEX_CN_NAME ,p.DATA_YEAR from gei_sys_country gs
  134. left JOIN (SELECT DATA_YEAR,COUNTRY_CN_NAME,INDEX_EN_NAME,DATA_VALUE FROM ${table_name3} WHERE DATA_YEAR >='${start_time}' AND DATA_YEAR <='${end_time}' AND INDEX_EN_NAME = '${index_name2}'and INDEX_ID = ${index_id2} AND COUNTRY_CN_NAME in(${country_list}))p on p.COUNTRY_CN_NAME = gs.CN_NAME
  135. WHERE gs.CN_NAME in (${country_list})order by p.DATA_YEAR asc;]]></Query>
  136. <PageQuery>
  137. <![CDATA[]]></PageQuery>
  138. </TableData>
  139. </TableDataMap>
  140. <ElementCaseMobileAttr>
  141. <ElementCaseMobileAttrProvider horizontal="4" vertical="4" zoom="true" refresh="false" isUseHTML="false" isMobileCanvasSize="false" appearRefresh="false" allowFullScreen="false" allowDoubleClickOrZoom="true" functionalWhenUnactivated="false"/>
  142. </ElementCaseMobileAttr>
  143. <Report class="com.fr.report.worksheet.WorkSheet" name="sheet1">
  144. <ReportPageAttr>
  145. <HR/>
  146. <FR/>
  147. <HC/>
  148. <FC/>
  149. </ReportPageAttr>
  150. <ColumnPrivilegeControl/>
  151. <RowPrivilegeControl/>
  152. <RowHeight defaultValue="723900">
  153. <![CDATA[12725400,723900,647700,1066800,1104900,1066800,723900,11963400,723900,723900,1066800,1143000,1066800,723900,13258800,723900,723900,1066800,1333500,1066800,723900]]></RowHeight>
  154. <ColumnWidth defaultValue="2743200">
  155. <![CDATA[3619500,3848100,3810000,0,0,0,0,0,0,0,0,0,0,0,0,0,2743200]]></ColumnWidth>
  156. <CellElementList>
  157. <C c="0" r="0" cs="19">
  158. <O t="CC">
  159. <LayoutAttr selectedIndex="0"/>
  160. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  161. <TextAttr>
  162. <Attr alignText="0" predefinedStyle="false">
  163. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  164. </Attr>
  165. </TextAttr>
  166. </ChangeAttr>
  167. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  168. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  169. <GI>
  170. <AttrBackground>
  171. <Background name="NullBackground"/>
  172. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  173. </AttrBackground>
  174. <AttrBorder>
  175. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  176. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  177. </AttrBorder>
  178. <AttrAlpha>
  179. <Attr alpha="1.0"/>
  180. </AttrAlpha>
  181. </GI>
  182. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  183. <Title4VanChart>
  184. <Title>
  185. <GI>
  186. <AttrBackground>
  187. <Background name="NullBackground"/>
  188. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  189. </AttrBackground>
  190. <AttrBorder>
  191. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  192. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  193. </AttrBorder>
  194. <AttrAlpha>
  195. <Attr alpha="1.0"/>
  196. </AttrAlpha>
  197. </GI>
  198. <O t="XMLable" class="com.fr.base.Formula">
  199. <Attributes>
  200. <![CDATA[=$index_name]]></Attributes>
  201. </O>
  202. <TextAttr>
  203. <Attr alignText="0" predefinedStyle="false">
  204. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  205. </Attr>
  206. </TextAttr>
  207. <TitleVisible value="true" position="0"/>
  208. </Title>
  209. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  210. </Title4VanChart>
  211. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  212. <VanChartPlotVersion version="20170715"/>
  213. <GI>
  214. <AttrBackground>
  215. <Background name="NullBackground"/>
  216. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  217. </AttrBackground>
  218. <AttrBorder>
  219. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  220. <newColor/>
  221. </AttrBorder>
  222. <AttrAlpha>
  223. <Attr alpha="1.0"/>
  224. </AttrAlpha>
  225. </GI>
  226. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  227. <newHotTooltipStyle>
  228. <AttrContents>
  229. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  230. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  231. <![CDATA[#.##]]></Format>
  232. <PercentFormat>
  233. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  234. <![CDATA[#0.##%]]></Format>
  235. </PercentFormat>
  236. </AttrContents>
  237. </newHotTooltipStyle>
  238. <ConditionCollection>
  239. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  240. <ConditionAttr name="">
  241. <AttrList>
  242. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  243. <AttrTooltip>
  244. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  245. <TextAttr>
  246. <Attr alignText="0" predefinedStyle="false"/>
  247. </TextAttr>
  248. <AttrToolTipContent>
  249. <TextAttr>
  250. <Attr alignText="0" predefinedStyle="false"/>
  251. </TextAttr>
  252. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  253. <AttrTooltipRichText>
  254. <Attr content="" isAuto="true" initParamsContent=""/>
  255. </AttrTooltipRichText>
  256. </richText>
  257. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  258. <AttrTooltipValueFormat>
  259. <Attr enable="true"/>
  260. </AttrTooltipValueFormat>
  261. </richTextValue>
  262. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  263. <AttrTooltipPercentFormat>
  264. <Attr enable="false"/>
  265. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  266. <![CDATA[#.##%]]></Format>
  267. </AttrTooltipPercentFormat>
  268. </richTextPercent>
  269. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  270. <AttrToolTipCategoryFormat>
  271. <Attr enable="true"/>
  272. </AttrToolTipCategoryFormat>
  273. </richTextCategory>
  274. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  275. <AttrTooltipSeriesFormat>
  276. <Attr enable="true"/>
  277. </AttrTooltipSeriesFormat>
  278. </richTextSeries>
  279. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  280. <AttrTooltipChangedPercentFormat>
  281. <Attr enable="false"/>
  282. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  283. <![CDATA[#.##%]]></Format>
  284. </AttrTooltipChangedPercentFormat>
  285. </richTextChangedPercent>
  286. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  287. <AttrTooltipChangedValueFormat>
  288. <Attr enable="false"/>
  289. </AttrTooltipChangedValueFormat>
  290. </richTextChangedValue>
  291. <TableFieldCollection/>
  292. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  293. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  294. <AttrTooltipValueFormat>
  295. <Attr enable="true"/>
  296. </AttrTooltipValueFormat>
  297. </value>
  298. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  299. <AttrTooltipPercentFormat>
  300. <Attr enable="false"/>
  301. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  302. <![CDATA[#.##%]]></Format>
  303. </AttrTooltipPercentFormat>
  304. </percent>
  305. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  306. <AttrToolTipCategoryFormat>
  307. <Attr enable="true"/>
  308. </AttrToolTipCategoryFormat>
  309. </category>
  310. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  311. <AttrTooltipSeriesFormat>
  312. <Attr enable="true"/>
  313. </AttrTooltipSeriesFormat>
  314. </series>
  315. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  316. <AttrTooltipChangedPercentFormat>
  317. <Attr enable="false"/>
  318. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  319. <![CDATA[#.##%]]></Format>
  320. </AttrTooltipChangedPercentFormat>
  321. </changedPercent>
  322. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  323. <AttrTooltipChangedValueFormat>
  324. <Attr enable="false"/>
  325. </AttrTooltipChangedValueFormat>
  326. </changedValue>
  327. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  328. </AttrToolTipContent>
  329. <GI>
  330. <AttrBackground>
  331. <Background name="ColorBackground" color="-16777216"/>
  332. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  333. </AttrBackground>
  334. <AttrBorder>
  335. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  336. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  337. </AttrBorder>
  338. <AttrAlpha>
  339. <Attr alpha="0.5"/>
  340. </AttrAlpha>
  341. </GI>
  342. </AttrTooltip>
  343. </Attr>
  344. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  345. <VanAttrMarker>
  346. <Attr isCommon="true" anchorSize="22.0" markerType="AutoMarker" radius="3.5" width="30.0" height="30.0"/>
  347. <Background name="NullBackground"/>
  348. </VanAttrMarker>
  349. </Attr>
  350. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  351. <VanAttrLine>
  352. <Attr lineType="solid" lineWidth="2.0" lineStyle="0" nullValueBreak="true"/>
  353. </VanAttrLine>
  354. </Attr>
  355. </AttrList>
  356. </ConditionAttr>
  357. </DefaultAttr>
  358. </ConditionCollection>
  359. <Legend4VanChart>
  360. <Legend>
  361. <GI>
  362. <AttrBackground>
  363. <Background name="NullBackground"/>
  364. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  365. </AttrBackground>
  366. <AttrBorder>
  367. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  368. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  369. </AttrBorder>
  370. <AttrAlpha>
  371. <Attr alpha="1.0"/>
  372. </AttrAlpha>
  373. </GI>
  374. <Attr position="4" visible="true" predefinedStyle="false"/>
  375. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  376. </Legend>
  377. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="false" maxHeight="30.0" isHighlight="true"/>
  378. </Legend4VanChart>
  379. <DataSheet>
  380. <GI>
  381. <AttrBackground>
  382. <Background name="NullBackground"/>
  383. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  384. </AttrBackground>
  385. <AttrBorder>
  386. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  387. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  388. </AttrBorder>
  389. <AttrAlpha>
  390. <Attr alpha="1.0"/>
  391. </AttrAlpha>
  392. </GI>
  393. <Attr isVisible="false" predefinedStyle="false"/>
  394. <FRFont name="SimSun" style="0" size="72"/>
  395. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  396. <![CDATA[#.##]]></Format>
  397. </DataSheet>
  398. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  399. <newPlotFillStyle>
  400. <AttrFillStyle>
  401. <AFStyle colorStyle="0"/>
  402. <FillStyleName fillStyleName=""/>
  403. <isCustomFillStyle isCustomFillStyle="false"/>
  404. <PredefinedStyle predefinedStyle="false"/>
  405. </AttrFillStyle>
  406. </newPlotFillStyle>
  407. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  408. <GradientStyle>
  409. <Attr gradientType="gradual" startColor="-12146441" endColor="-9378161"/>
  410. </GradientStyle>
  411. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  412. <XAxisList>
  413. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  414. <Title>
  415. <GI>
  416. <AttrBackground>
  417. <Background name="NullBackground"/>
  418. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  419. </AttrBackground>
  420. <AttrBorder>
  421. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  422. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  423. </AttrBorder>
  424. <AttrAlpha>
  425. <Attr alpha="1.0"/>
  426. </AttrAlpha>
  427. </GI>
  428. <O>
  429. <![CDATA[YEAR]]></O>
  430. <TextAttr>
  431. <Attr alignText="0" predefinedStyle="false">
  432. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  433. </Attr>
  434. </TextAttr>
  435. <TitleVisible value="true" position="4"/>
  436. </Title>
  437. <newAxisAttr isShowAxisLabel="true"/>
  438. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  439. <newLineColor lineColor="-5197648" predefinedStyle="false"/>
  440. <AxisPosition value="3"/>
  441. <TickLine201106 type="2" secType="0"/>
  442. <ArrowShow arrowShow="false"/>
  443. <TextAttr>
  444. <Attr alignText="0" predefinedStyle="false">
  445. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  446. </Attr>
  447. </TextAttr>
  448. <AxisLabelCount value="=1"/>
  449. <AxisRange/>
  450. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  451. <ZoomAxisAttr isZoom="false"/>
  452. <axisReversed axisReversed="false"/>
  453. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="NONE"/>
  454. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  455. <alertList/>
  456. <customBackgroundList/>
  457. </VanChartAxis>
  458. </XAxisList>
  459. <YAxisList>
  460. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  461. <Title>
  462. <GI>
  463. <AttrBackground>
  464. <Background name="NullBackground"/>
  465. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  466. </AttrBackground>
  467. <AttrBorder>
  468. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  469. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  470. </AttrBorder>
  471. <AttrAlpha>
  472. <Attr alpha="1.0"/>
  473. </AttrAlpha>
  474. </GI>
  475. <O t="XMLable" class="com.fr.base.Formula">
  476. <Attributes>
  477. <![CDATA[=$unit_name1]]></Attributes>
  478. </O>
  479. <TextAttr>
  480. <Attr rotation="-90" alignText="0" predefinedStyle="false">
  481. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  482. </Attr>
  483. </TextAttr>
  484. <TitleVisible value="true" position="1"/>
  485. </Title>
  486. <newAxisAttr isShowAxisLabel="true"/>
  487. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  488. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  489. <AxisPosition value="2"/>
  490. <TickLine201106 type="2" secType="0"/>
  491. <ArrowShow arrowShow="false"/>
  492. <TextAttr>
  493. <Attr alignText="0" predefinedStyle="false">
  494. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  495. </Attr>
  496. </TextAttr>
  497. <AxisLabelCount value="=1"/>
  498. <AxisRange/>
  499. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  500. <ZoomAxisAttr isZoom="false"/>
  501. <axisReversed axisReversed="false"/>
  502. <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"/>
  503. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  504. <alertList/>
  505. <customBackgroundList/>
  506. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  507. <ds>
  508. <RadarYAxisTableDefinition>
  509. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  510. <attr/>
  511. </RadarYAxisTableDefinition>
  512. </ds>
  513. </VanChartAxis>
  514. </YAxisList>
  515. <stackAndAxisCondition>
  516. <ConditionCollection>
  517. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  518. <ConditionAttr name=""/>
  519. </DefaultAttr>
  520. </ConditionCollection>
  521. </stackAndAxisCondition>
  522. </Plot>
  523. <ChartDefinition>
  524. <OneValueCDDefinition seriesName="COUNTRY_CN_NAME" valueName="DATA_VALUE" function="com.fr.data.util.function.SumFunction">
  525. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  526. <TableData class="com.fr.data.impl.NameTableData">
  527. <Name>
  528. <![CDATA[one_tule]]></Name>
  529. </TableData>
  530. <CategoryName value="DATA_YEAR"/>
  531. </OneValueCDDefinition>
  532. </ChartDefinition>
  533. </Chart>
  534. <UUID uuid="7471bb7c-9860-47c0-8f30-c17f5ac640e2"/>
  535. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  536. <VanChartZoom>
  537. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  538. <from>
  539. <![CDATA[]]></from>
  540. <to>
  541. <![CDATA[]]></to>
  542. </VanChartZoom>
  543. <refreshMoreLabel>
  544. <attr moreLabel="false" autoTooltip="true"/>
  545. <AttrTooltip>
  546. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  547. <TextAttr>
  548. <Attr alignText="0" predefinedStyle="false"/>
  549. </TextAttr>
  550. <AttrToolTipContent>
  551. <TextAttr>
  552. <Attr alignText="0" predefinedStyle="false"/>
  553. </TextAttr>
  554. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  555. <AttrTooltipRichText>
  556. <Attr content="" isAuto="true" initParamsContent=""/>
  557. </AttrTooltipRichText>
  558. </richText>
  559. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  560. <AttrTooltipValueFormat>
  561. <Attr enable="true"/>
  562. </AttrTooltipValueFormat>
  563. </richTextValue>
  564. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  565. <AttrTooltipPercentFormat>
  566. <Attr enable="false"/>
  567. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  568. <![CDATA[#.##%]]></Format>
  569. </AttrTooltipPercentFormat>
  570. </richTextPercent>
  571. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  572. <AttrToolTipCategoryFormat>
  573. <Attr enable="false"/>
  574. </AttrToolTipCategoryFormat>
  575. </richTextCategory>
  576. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  577. <AttrTooltipSeriesFormat>
  578. <Attr enable="false"/>
  579. </AttrTooltipSeriesFormat>
  580. </richTextSeries>
  581. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  582. <AttrTooltipChangedPercentFormat>
  583. <Attr enable="false"/>
  584. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  585. <![CDATA[#.##%]]></Format>
  586. </AttrTooltipChangedPercentFormat>
  587. </richTextChangedPercent>
  588. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  589. <AttrTooltipChangedValueFormat>
  590. <Attr enable="false"/>
  591. </AttrTooltipChangedValueFormat>
  592. </richTextChangedValue>
  593. <TableFieldCollection/>
  594. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  595. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  596. <AttrTooltipValueFormat>
  597. <Attr enable="true"/>
  598. </AttrTooltipValueFormat>
  599. </value>
  600. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  601. <AttrTooltipPercentFormat>
  602. <Attr enable="false"/>
  603. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  604. <![CDATA[#.##%]]></Format>
  605. </AttrTooltipPercentFormat>
  606. </percent>
  607. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  608. <AttrToolTipCategoryFormat>
  609. <Attr enable="true"/>
  610. </AttrToolTipCategoryFormat>
  611. </category>
  612. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  613. <AttrTooltipSeriesFormat>
  614. <Attr enable="true"/>
  615. </AttrTooltipSeriesFormat>
  616. </series>
  617. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  618. <AttrTooltipChangedPercentFormat>
  619. <Attr enable="false"/>
  620. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  621. <![CDATA[#.##%]]></Format>
  622. </AttrTooltipChangedPercentFormat>
  623. </changedPercent>
  624. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  625. <AttrTooltipChangedValueFormat>
  626. <Attr enable="true"/>
  627. </AttrTooltipChangedValueFormat>
  628. </changedValue>
  629. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  630. </AttrToolTipContent>
  631. <GI>
  632. <AttrBackground>
  633. <Background name="ColorBackground" color="-1"/>
  634. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  635. </AttrBackground>
  636. <AttrBorder>
  637. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  638. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  639. </AttrBorder>
  640. <AttrAlpha>
  641. <Attr alpha="0.8"/>
  642. </AttrAlpha>
  643. </GI>
  644. </AttrTooltip>
  645. </refreshMoreLabel>
  646. <ThemeAttr>
  647. <Attr darkTheme="false" predefinedStyle="false"/>
  648. </ThemeAttr>
  649. </Chart>
  650. </O>
  651. <PrivilegeControl/>
  652. <Expand/>
  653. </C>
  654. <C c="0" r="1" cs="3" s="0">
  655. <O t="XMLable" class="com.fr.base.Formula">
  656. <Attributes>
  657. <![CDATA[="PS:The data comes from international organizations such as the world bank.(DATA SOURCE:" + (if(find("wb", $table_name1) > 0, "WORLD BANK", "") || if(find("iea", $table_name1) > 0, "IEA", "") || if(find("eia", $table_name1) > 0, "EIA)", "") || if(find("bp", $table_name1) > 0, "BP", "")) + ")"]]></Attributes>
  658. </O>
  659. <PrivilegeControl/>
  660. <Expand/>
  661. </C>
  662. <C c="0" r="3" s="1">
  663. <O t="XMLable" class="com.fr.base.Formula">
  664. <Attributes>
  665. <![CDATA[="YEAR(INDEX'S UNIT:" + $unit_name1 + ")"]]></Attributes>
  666. </O>
  667. <PrivilegeControl/>
  668. <Expand/>
  669. </C>
  670. <C c="1" r="3" s="1">
  671. <O t="DSColumn">
  672. <Attributes dsName="one_tule" columnName="COUNTRY_CN_NAME"/>
  673. <Condition class="com.fr.data.condition.ListCondition"/>
  674. <Complex/>
  675. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  676. <Result>
  677. <![CDATA[$$$]]></Result>
  678. <Parameters/>
  679. </O>
  680. <PrivilegeControl/>
  681. <Expand dir="1"/>
  682. </C>
  683. <C c="2" r="3" s="1">
  684. <O>
  685. <![CDATA[SUM]]></O>
  686. <PrivilegeControl/>
  687. <Expand/>
  688. </C>
  689. <C c="3" r="3" s="2">
  690. <PrivilegeControl/>
  691. <Expand/>
  692. </C>
  693. <C c="0" r="4" s="1">
  694. <O t="DSColumn">
  695. <Attributes dsName="one_tule" columnName="DATA_YEAR"/>
  696. <Condition class="com.fr.data.condition.ListCondition"/>
  697. <Complex/>
  698. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  699. <Result>
  700. <![CDATA[$$$]]></Result>
  701. <Parameters/>
  702. </O>
  703. <PrivilegeControl/>
  704. <HighlightList>
  705. <Highlight class="com.fr.report.cell.cellattr.highlight.DefaultHighlight">
  706. <Name>
  707. <![CDATA[条件属性1]]></Name>
  708. <Condition class="com.fr.data.condition.FormulaCondition">
  709. <Formula>
  710. <![CDATA[len(A5) = 0]]></Formula>
  711. </Condition>
  712. <HighlightAction class="com.fr.report.cell.cellattr.highlight.RowHeightHighlightAction"/>
  713. </Highlight>
  714. </HighlightList>
  715. <Expand dir="0"/>
  716. </C>
  717. <C c="1" r="4" s="3">
  718. <O t="DSColumn">
  719. <Attributes dsName="one_tule" columnName="DATA_VALUE"/>
  720. <Condition class="com.fr.data.condition.ListCondition"/>
  721. <Complex/>
  722. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  723. <Result>
  724. <![CDATA[$$$]]></Result>
  725. <Parameters/>
  726. </O>
  727. <PrivilegeControl/>
  728. <Expand/>
  729. </C>
  730. <C c="2" r="4" s="3">
  731. <O t="XMLable" class="com.fr.base.Formula">
  732. <Attributes>
  733. <![CDATA[=if(ISNULL(B5), "", SUM(B5))]]></Attributes>
  734. </O>
  735. <PrivilegeControl/>
  736. <Expand/>
  737. </C>
  738. <C c="3" r="4" s="2">
  739. <PrivilegeControl/>
  740. <Expand/>
  741. </C>
  742. <C c="0" r="5" s="1">
  743. <O>
  744. <![CDATA[SUM]]></O>
  745. <PrivilegeControl/>
  746. <Expand/>
  747. </C>
  748. <C c="1" r="5" s="3">
  749. <O t="XMLable" class="com.fr.base.Formula">
  750. <Attributes>
  751. <![CDATA[=if(ISNULL(B5), "", SUM(B5))]]></Attributes>
  752. </O>
  753. <PrivilegeControl/>
  754. <Expand/>
  755. </C>
  756. <C c="2" r="5" s="3">
  757. <O t="XMLable" class="com.fr.base.Formula">
  758. <Attributes>
  759. <![CDATA[=if(ISNULL(C5), "", SUM(C5))]]></Attributes>
  760. </O>
  761. <PrivilegeControl/>
  762. <Expand/>
  763. </C>
  764. <C c="3" r="5" s="2">
  765. <PrivilegeControl/>
  766. <Expand/>
  767. </C>
  768. <C c="0" r="7" cs="19">
  769. <O t="CC">
  770. <LayoutAttr selectedIndex="0"/>
  771. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  772. <TextAttr>
  773. <Attr alignText="0" predefinedStyle="false">
  774. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  775. </Attr>
  776. </TextAttr>
  777. </ChangeAttr>
  778. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  779. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  780. <GI>
  781. <AttrBackground>
  782. <Background name="NullBackground"/>
  783. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  784. </AttrBackground>
  785. <AttrBorder>
  786. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  787. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  788. </AttrBorder>
  789. <AttrAlpha>
  790. <Attr alpha="1.0"/>
  791. </AttrAlpha>
  792. </GI>
  793. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  794. <Title4VanChart>
  795. <Title>
  796. <GI>
  797. <AttrBackground>
  798. <Background name="NullBackground"/>
  799. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  800. </AttrBackground>
  801. <AttrBorder>
  802. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  803. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  804. </AttrBorder>
  805. <AttrAlpha>
  806. <Attr alpha="1.0"/>
  807. </AttrAlpha>
  808. </GI>
  809. <O t="XMLable" class="com.fr.base.Formula">
  810. <Attributes>
  811. <![CDATA[=$index_name1]]></Attributes>
  812. </O>
  813. <TextAttr>
  814. <Attr alignText="0" predefinedStyle="false">
  815. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  816. </Attr>
  817. </TextAttr>
  818. <TitleVisible value="true" position="0"/>
  819. </Title>
  820. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  821. </Title4VanChart>
  822. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  823. <VanChartPlotVersion version="20170715"/>
  824. <GI>
  825. <AttrBackground>
  826. <Background name="NullBackground"/>
  827. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  828. </AttrBackground>
  829. <AttrBorder>
  830. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  831. <newColor/>
  832. </AttrBorder>
  833. <AttrAlpha>
  834. <Attr alpha="1.0"/>
  835. </AttrAlpha>
  836. </GI>
  837. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  838. <newHotTooltipStyle>
  839. <AttrContents>
  840. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  841. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  842. <![CDATA[#.##]]></Format>
  843. <PercentFormat>
  844. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  845. <![CDATA[#0.##%]]></Format>
  846. </PercentFormat>
  847. </AttrContents>
  848. </newHotTooltipStyle>
  849. <ConditionCollection>
  850. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  851. <ConditionAttr name="">
  852. <AttrList>
  853. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  854. <AttrTooltip>
  855. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  856. <TextAttr>
  857. <Attr alignText="0" predefinedStyle="false"/>
  858. </TextAttr>
  859. <AttrToolTipContent>
  860. <TextAttr>
  861. <Attr alignText="0" predefinedStyle="false"/>
  862. </TextAttr>
  863. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  864. <AttrTooltipRichText>
  865. <Attr content="" isAuto="true" initParamsContent=""/>
  866. </AttrTooltipRichText>
  867. </richText>
  868. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  869. <AttrTooltipValueFormat>
  870. <Attr enable="true"/>
  871. </AttrTooltipValueFormat>
  872. </richTextValue>
  873. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  874. <AttrTooltipPercentFormat>
  875. <Attr enable="false"/>
  876. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  877. <![CDATA[#.##%]]></Format>
  878. </AttrTooltipPercentFormat>
  879. </richTextPercent>
  880. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  881. <AttrToolTipCategoryFormat>
  882. <Attr enable="true"/>
  883. </AttrToolTipCategoryFormat>
  884. </richTextCategory>
  885. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  886. <AttrTooltipSeriesFormat>
  887. <Attr enable="true"/>
  888. </AttrTooltipSeriesFormat>
  889. </richTextSeries>
  890. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  891. <AttrTooltipChangedPercentFormat>
  892. <Attr enable="false"/>
  893. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  894. <![CDATA[#.##%]]></Format>
  895. </AttrTooltipChangedPercentFormat>
  896. </richTextChangedPercent>
  897. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  898. <AttrTooltipChangedValueFormat>
  899. <Attr enable="false"/>
  900. </AttrTooltipChangedValueFormat>
  901. </richTextChangedValue>
  902. <TableFieldCollection/>
  903. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  904. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  905. <AttrTooltipValueFormat>
  906. <Attr enable="true"/>
  907. </AttrTooltipValueFormat>
  908. </value>
  909. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  910. <AttrTooltipPercentFormat>
  911. <Attr enable="false"/>
  912. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  913. <![CDATA[#.##%]]></Format>
  914. </AttrTooltipPercentFormat>
  915. </percent>
  916. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  917. <AttrToolTipCategoryFormat>
  918. <Attr enable="true"/>
  919. </AttrToolTipCategoryFormat>
  920. </category>
  921. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  922. <AttrTooltipSeriesFormat>
  923. <Attr enable="true"/>
  924. </AttrTooltipSeriesFormat>
  925. </series>
  926. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  927. <AttrTooltipChangedPercentFormat>
  928. <Attr enable="false"/>
  929. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  930. <![CDATA[#.##%]]></Format>
  931. </AttrTooltipChangedPercentFormat>
  932. </changedPercent>
  933. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  934. <AttrTooltipChangedValueFormat>
  935. <Attr enable="false"/>
  936. </AttrTooltipChangedValueFormat>
  937. </changedValue>
  938. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  939. </AttrToolTipContent>
  940. <GI>
  941. <AttrBackground>
  942. <Background name="ColorBackground" color="-16777216"/>
  943. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  944. </AttrBackground>
  945. <AttrBorder>
  946. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  947. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  948. </AttrBorder>
  949. <AttrAlpha>
  950. <Attr alpha="0.5"/>
  951. </AttrAlpha>
  952. </GI>
  953. </AttrTooltip>
  954. </Attr>
  955. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  956. <VanAttrMarker>
  957. <Attr isCommon="true" anchorSize="22.0" markerType="AutoMarker" radius="3.5" width="30.0" height="30.0"/>
  958. <Background name="NullBackground"/>
  959. </VanAttrMarker>
  960. </Attr>
  961. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  962. <VanAttrLine>
  963. <Attr lineType="solid" lineWidth="2.0" lineStyle="0" nullValueBreak="true"/>
  964. </VanAttrLine>
  965. </Attr>
  966. </AttrList>
  967. </ConditionAttr>
  968. </DefaultAttr>
  969. </ConditionCollection>
  970. <Legend4VanChart>
  971. <Legend>
  972. <GI>
  973. <AttrBackground>
  974. <Background name="NullBackground"/>
  975. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  976. </AttrBackground>
  977. <AttrBorder>
  978. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  979. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  980. </AttrBorder>
  981. <AttrAlpha>
  982. <Attr alpha="1.0"/>
  983. </AttrAlpha>
  984. </GI>
  985. <Attr position="4" visible="true" predefinedStyle="false"/>
  986. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  987. </Legend>
  988. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="false" maxHeight="30.0" isHighlight="true"/>
  989. </Legend4VanChart>
  990. <DataSheet>
  991. <GI>
  992. <AttrBackground>
  993. <Background name="NullBackground"/>
  994. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  995. </AttrBackground>
  996. <AttrBorder>
  997. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  998. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  999. </AttrBorder>
  1000. <AttrAlpha>
  1001. <Attr alpha="1.0"/>
  1002. </AttrAlpha>
  1003. </GI>
  1004. <Attr isVisible="false" predefinedStyle="false"/>
  1005. <FRFont name="SimSun" style="0" size="72"/>
  1006. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1007. <![CDATA[#.##]]></Format>
  1008. </DataSheet>
  1009. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  1010. <newPlotFillStyle>
  1011. <AttrFillStyle>
  1012. <AFStyle colorStyle="0"/>
  1013. <FillStyleName fillStyleName=""/>
  1014. <isCustomFillStyle isCustomFillStyle="false"/>
  1015. <PredefinedStyle predefinedStyle="false"/>
  1016. </AttrFillStyle>
  1017. </newPlotFillStyle>
  1018. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  1019. <GradientStyle>
  1020. <Attr gradientType="gradual" startColor="-12146441" endColor="-9378161"/>
  1021. </GradientStyle>
  1022. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  1023. <XAxisList>
  1024. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  1025. <Title>
  1026. <GI>
  1027. <AttrBackground>
  1028. <Background name="NullBackground"/>
  1029. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1030. </AttrBackground>
  1031. <AttrBorder>
  1032. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1033. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1034. </AttrBorder>
  1035. <AttrAlpha>
  1036. <Attr alpha="1.0"/>
  1037. </AttrAlpha>
  1038. </GI>
  1039. <O>
  1040. <![CDATA[YEAR]]></O>
  1041. <TextAttr>
  1042. <Attr alignText="0" predefinedStyle="false">
  1043. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1044. </Attr>
  1045. </TextAttr>
  1046. <TitleVisible value="true" position="4"/>
  1047. </Title>
  1048. <newAxisAttr isShowAxisLabel="true"/>
  1049. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  1050. <newLineColor lineColor="-5197648" predefinedStyle="false"/>
  1051. <AxisPosition value="3"/>
  1052. <TickLine201106 type="2" secType="0"/>
  1053. <ArrowShow arrowShow="false"/>
  1054. <TextAttr>
  1055. <Attr alignText="0" predefinedStyle="false">
  1056. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1057. </Attr>
  1058. </TextAttr>
  1059. <AxisLabelCount value="=1"/>
  1060. <AxisRange/>
  1061. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1062. <ZoomAxisAttr isZoom="false"/>
  1063. <axisReversed axisReversed="false"/>
  1064. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="NONE"/>
  1065. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1066. <alertList/>
  1067. <customBackgroundList/>
  1068. </VanChartAxis>
  1069. </XAxisList>
  1070. <YAxisList>
  1071. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  1072. <Title>
  1073. <GI>
  1074. <AttrBackground>
  1075. <Background name="NullBackground"/>
  1076. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1077. </AttrBackground>
  1078. <AttrBorder>
  1079. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1080. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1081. </AttrBorder>
  1082. <AttrAlpha>
  1083. <Attr alpha="1.0"/>
  1084. </AttrAlpha>
  1085. </GI>
  1086. <O t="XMLable" class="com.fr.base.Formula">
  1087. <Attributes>
  1088. <![CDATA[=$unit_name2]]></Attributes>
  1089. </O>
  1090. <TextAttr>
  1091. <Attr rotation="-90" alignText="0" predefinedStyle="false">
  1092. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1093. </Attr>
  1094. </TextAttr>
  1095. <TitleVisible value="true" position="1"/>
  1096. </Title>
  1097. <newAxisAttr isShowAxisLabel="true"/>
  1098. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  1099. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  1100. <AxisPosition value="2"/>
  1101. <TickLine201106 type="2" secType="0"/>
  1102. <ArrowShow arrowShow="false"/>
  1103. <TextAttr>
  1104. <Attr alignText="0" predefinedStyle="false">
  1105. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1106. </Attr>
  1107. </TextAttr>
  1108. <AxisLabelCount value="=1"/>
  1109. <AxisRange/>
  1110. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1111. <ZoomAxisAttr isZoom="false"/>
  1112. <axisReversed axisReversed="false"/>
  1113. <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"/>
  1114. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1115. <alertList/>
  1116. <customBackgroundList/>
  1117. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  1118. <ds>
  1119. <RadarYAxisTableDefinition>
  1120. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1121. <attr/>
  1122. </RadarYAxisTableDefinition>
  1123. </ds>
  1124. </VanChartAxis>
  1125. </YAxisList>
  1126. <stackAndAxisCondition>
  1127. <ConditionCollection>
  1128. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1129. <ConditionAttr name=""/>
  1130. </DefaultAttr>
  1131. </ConditionCollection>
  1132. </stackAndAxisCondition>
  1133. </Plot>
  1134. <ChartDefinition>
  1135. <OneValueCDDefinition seriesName="COUNTRY_CN_NAME" valueName="DATA_VALUE" function="com.fr.data.util.function.SumFunction">
  1136. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1137. <TableData class="com.fr.data.impl.NameTableData">
  1138. <Name>
  1139. <![CDATA[two_rule]]></Name>
  1140. </TableData>
  1141. <CategoryName value="DATA_YEAR"/>
  1142. </OneValueCDDefinition>
  1143. </ChartDefinition>
  1144. </Chart>
  1145. <UUID uuid="377140b9-aa79-4a28-a012-ede799afba05"/>
  1146. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  1147. <VanChartZoom>
  1148. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  1149. <from>
  1150. <![CDATA[]]></from>
  1151. <to>
  1152. <![CDATA[]]></to>
  1153. </VanChartZoom>
  1154. <refreshMoreLabel>
  1155. <attr moreLabel="false" autoTooltip="true"/>
  1156. <AttrTooltip>
  1157. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  1158. <TextAttr>
  1159. <Attr alignText="0" predefinedStyle="false"/>
  1160. </TextAttr>
  1161. <AttrToolTipContent>
  1162. <TextAttr>
  1163. <Attr alignText="0" predefinedStyle="false"/>
  1164. </TextAttr>
  1165. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  1166. <AttrTooltipRichText>
  1167. <Attr content="" isAuto="true" initParamsContent=""/>
  1168. </AttrTooltipRichText>
  1169. </richText>
  1170. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1171. <AttrTooltipValueFormat>
  1172. <Attr enable="true"/>
  1173. </AttrTooltipValueFormat>
  1174. </richTextValue>
  1175. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1176. <AttrTooltipPercentFormat>
  1177. <Attr enable="false"/>
  1178. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1179. <![CDATA[#.##%]]></Format>
  1180. </AttrTooltipPercentFormat>
  1181. </richTextPercent>
  1182. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1183. <AttrToolTipCategoryFormat>
  1184. <Attr enable="false"/>
  1185. </AttrToolTipCategoryFormat>
  1186. </richTextCategory>
  1187. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1188. <AttrTooltipSeriesFormat>
  1189. <Attr enable="false"/>
  1190. </AttrTooltipSeriesFormat>
  1191. </richTextSeries>
  1192. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1193. <AttrTooltipChangedPercentFormat>
  1194. <Attr enable="false"/>
  1195. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1196. <![CDATA[#.##%]]></Format>
  1197. </AttrTooltipChangedPercentFormat>
  1198. </richTextChangedPercent>
  1199. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1200. <AttrTooltipChangedValueFormat>
  1201. <Attr enable="false"/>
  1202. </AttrTooltipChangedValueFormat>
  1203. </richTextChangedValue>
  1204. <TableFieldCollection/>
  1205. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  1206. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1207. <AttrTooltipValueFormat>
  1208. <Attr enable="true"/>
  1209. </AttrTooltipValueFormat>
  1210. </value>
  1211. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1212. <AttrTooltipPercentFormat>
  1213. <Attr enable="false"/>
  1214. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1215. <![CDATA[#.##%]]></Format>
  1216. </AttrTooltipPercentFormat>
  1217. </percent>
  1218. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1219. <AttrToolTipCategoryFormat>
  1220. <Attr enable="true"/>
  1221. </AttrToolTipCategoryFormat>
  1222. </category>
  1223. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1224. <AttrTooltipSeriesFormat>
  1225. <Attr enable="true"/>
  1226. </AttrTooltipSeriesFormat>
  1227. </series>
  1228. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1229. <AttrTooltipChangedPercentFormat>
  1230. <Attr enable="false"/>
  1231. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1232. <![CDATA[#.##%]]></Format>
  1233. </AttrTooltipChangedPercentFormat>
  1234. </changedPercent>
  1235. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1236. <AttrTooltipChangedValueFormat>
  1237. <Attr enable="true"/>
  1238. </AttrTooltipChangedValueFormat>
  1239. </changedValue>
  1240. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1241. </AttrToolTipContent>
  1242. <GI>
  1243. <AttrBackground>
  1244. <Background name="ColorBackground" color="-1"/>
  1245. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1246. </AttrBackground>
  1247. <AttrBorder>
  1248. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  1249. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  1250. </AttrBorder>
  1251. <AttrAlpha>
  1252. <Attr alpha="0.8"/>
  1253. </AttrAlpha>
  1254. </GI>
  1255. </AttrTooltip>
  1256. </refreshMoreLabel>
  1257. <ThemeAttr>
  1258. <Attr darkTheme="false" predefinedStyle="false"/>
  1259. </ThemeAttr>
  1260. </Chart>
  1261. </O>
  1262. <PrivilegeControl/>
  1263. <Expand leftParentDefault="false" upParentDefault="false"/>
  1264. </C>
  1265. <C c="0" r="8" cs="3" s="0">
  1266. <O t="XMLable" class="com.fr.base.Formula">
  1267. <Attributes>
  1268. <![CDATA[="PS:The data comes from international organizations such as the world bank.(DATA SOURCE:" + (if(find("wb", $table_name1) > 0, "WORLD BANK", "") || if(find("iea", $table_name1) > 0, "IEA", "") || if(find("eia", $table_name1) > 0, "EIA)", "") || if(find("bp", $table_name1) > 0, "BP", "")) + ")"]]></Attributes>
  1269. </O>
  1270. <PrivilegeControl/>
  1271. <Expand/>
  1272. </C>
  1273. <C c="0" r="10" s="1">
  1274. <O t="XMLable" class="com.fr.base.Formula">
  1275. <Attributes>
  1276. <![CDATA[="YEAR(INDEX'S UNIT:" + $unit_name1 + ")"]]></Attributes>
  1277. </O>
  1278. <PrivilegeControl/>
  1279. <Expand/>
  1280. </C>
  1281. <C c="1" r="10" s="1">
  1282. <O t="DSColumn">
  1283. <Attributes dsName="two_rule" columnName="COUNTRY_CN_NAME"/>
  1284. <Condition class="com.fr.data.condition.ListCondition"/>
  1285. <Complex/>
  1286. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  1287. <Result>
  1288. <![CDATA[$$$]]></Result>
  1289. <Parameters/>
  1290. </O>
  1291. <PrivilegeControl/>
  1292. <Expand dir="1"/>
  1293. </C>
  1294. <C c="2" r="10" s="1">
  1295. <O>
  1296. <![CDATA[SUM]]></O>
  1297. <PrivilegeControl/>
  1298. <Expand/>
  1299. </C>
  1300. <C c="0" r="11" s="1">
  1301. <O t="DSColumn">
  1302. <Attributes dsName="two_rule" columnName="DATA_YEAR"/>
  1303. <Condition class="com.fr.data.condition.ListCondition"/>
  1304. <Complex/>
  1305. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  1306. <Result>
  1307. <![CDATA[$$$]]></Result>
  1308. <Parameters/>
  1309. </O>
  1310. <PrivilegeControl/>
  1311. <HighlightList>
  1312. <Highlight class="com.fr.report.cell.cellattr.highlight.DefaultHighlight">
  1313. <Name>
  1314. <![CDATA[条件属性1]]></Name>
  1315. <Condition class="com.fr.data.condition.FormulaCondition">
  1316. <Formula>
  1317. <![CDATA[len(A12) = 0]]></Formula>
  1318. </Condition>
  1319. <HighlightAction class="com.fr.report.cell.cellattr.highlight.RowHeightHighlightAction"/>
  1320. </Highlight>
  1321. </HighlightList>
  1322. <Expand dir="0"/>
  1323. </C>
  1324. <C c="1" r="11" s="3">
  1325. <O t="DSColumn">
  1326. <Attributes dsName="two_rule" columnName="DATA_VALUE"/>
  1327. <Condition class="com.fr.data.condition.ListCondition"/>
  1328. <Complex/>
  1329. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  1330. <Result>
  1331. <![CDATA[$$$]]></Result>
  1332. <Parameters/>
  1333. </O>
  1334. <PrivilegeControl/>
  1335. <Expand/>
  1336. </C>
  1337. <C c="2" r="11" s="3">
  1338. <O t="XMLable" class="com.fr.base.Formula">
  1339. <Attributes>
  1340. <![CDATA[=if(ISNULL(B12), "", SUM(B12))]]></Attributes>
  1341. </O>
  1342. <PrivilegeControl/>
  1343. <Expand/>
  1344. </C>
  1345. <C c="0" r="12" s="1">
  1346. <O>
  1347. <![CDATA[SUM]]></O>
  1348. <PrivilegeControl/>
  1349. <Expand/>
  1350. </C>
  1351. <C c="1" r="12" s="3">
  1352. <O t="XMLable" class="com.fr.base.Formula">
  1353. <Attributes>
  1354. <![CDATA[=if(ISNULL(B12), "", SUM(B12))]]></Attributes>
  1355. </O>
  1356. <PrivilegeControl/>
  1357. <Expand/>
  1358. </C>
  1359. <C c="2" r="12" s="3">
  1360. <O t="XMLable" class="com.fr.base.Formula">
  1361. <Attributes>
  1362. <![CDATA[=if(ISNULL(C12), "", SUM(C12))]]></Attributes>
  1363. </O>
  1364. <PrivilegeControl/>
  1365. <Expand/>
  1366. </C>
  1367. <C c="0" r="14" cs="19">
  1368. <O t="CC">
  1369. <LayoutAttr selectedIndex="0"/>
  1370. <ChangeAttr enable="false" changeType="button" timeInterval="5" buttonColor="-6710887" carouselColor="-8421505" showArrow="true">
  1371. <TextAttr>
  1372. <Attr alignText="0" predefinedStyle="false">
  1373. <FRFont name="PingFangSC-Regular" style="0" size="96" foreground="-1"/>
  1374. </Attr>
  1375. </TextAttr>
  1376. </ChangeAttr>
  1377. <Chart name="默认" chartClass="com.fr.plugin.chart.vanchart.VanChart">
  1378. <Chart class="com.fr.plugin.chart.vanchart.VanChart">
  1379. <GI>
  1380. <AttrBackground>
  1381. <Background name="NullBackground"/>
  1382. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1383. </AttrBackground>
  1384. <AttrBorder>
  1385. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1386. <newColor borderColor="-1118482" autoColor="false" predefinedStyle="false"/>
  1387. </AttrBorder>
  1388. <AttrAlpha>
  1389. <Attr alpha="1.0"/>
  1390. </AttrAlpha>
  1391. </GI>
  1392. <ChartAttr isJSDraw="true" isStyleGlobal="false"/>
  1393. <Title4VanChart>
  1394. <Title>
  1395. <GI>
  1396. <AttrBackground>
  1397. <Background name="NullBackground"/>
  1398. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1399. </AttrBackground>
  1400. <AttrBorder>
  1401. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1402. <newColor borderColor="-6908266" autoColor="false" predefinedStyle="false"/>
  1403. </AttrBorder>
  1404. <AttrAlpha>
  1405. <Attr alpha="1.0"/>
  1406. </AttrAlpha>
  1407. </GI>
  1408. <O t="XMLable" class="com.fr.base.Formula">
  1409. <Attributes>
  1410. <![CDATA[=$index_name2]]></Attributes>
  1411. </O>
  1412. <TextAttr>
  1413. <Attr alignText="0" predefinedStyle="false">
  1414. <FRFont name="微软雅黑" style="0" size="128" foreground="-13421773"/>
  1415. </Attr>
  1416. </TextAttr>
  1417. <TitleVisible value="true" position="0"/>
  1418. </Title>
  1419. <Attr4VanChart useHtml="false" floating="false" x="0.0" y="0.0" limitSize="false" maxHeight="15.0"/>
  1420. </Title4VanChart>
  1421. <Plot class="com.fr.plugin.chart.line.VanChartLinePlot">
  1422. <VanChartPlotVersion version="20170715"/>
  1423. <GI>
  1424. <AttrBackground>
  1425. <Background name="NullBackground"/>
  1426. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1427. </AttrBackground>
  1428. <AttrBorder>
  1429. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1430. <newColor/>
  1431. </AttrBorder>
  1432. <AttrAlpha>
  1433. <Attr alpha="1.0"/>
  1434. </AttrAlpha>
  1435. </GI>
  1436. <Attr isNullValueBreak="true" autoRefreshPerSecond="6" seriesDragEnable="false" plotStyle="0" combinedSize="50.0"/>
  1437. <newHotTooltipStyle>
  1438. <AttrContents>
  1439. <Attr showLine="false" position="1" isWhiteBackground="true" isShowMutiSeries="false" seriesLabel="${VALUE}"/>
  1440. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1441. <![CDATA[#.##]]></Format>
  1442. <PercentFormat>
  1443. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1444. <![CDATA[#0.##%]]></Format>
  1445. </PercentFormat>
  1446. </AttrContents>
  1447. </newHotTooltipStyle>
  1448. <ConditionCollection>
  1449. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1450. <ConditionAttr name="">
  1451. <AttrList>
  1452. <Attr class="com.fr.plugin.chart.base.AttrTooltip">
  1453. <AttrTooltip>
  1454. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  1455. <TextAttr>
  1456. <Attr alignText="0" predefinedStyle="false"/>
  1457. </TextAttr>
  1458. <AttrToolTipContent>
  1459. <TextAttr>
  1460. <Attr alignText="0" predefinedStyle="false"/>
  1461. </TextAttr>
  1462. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  1463. <AttrTooltipRichText>
  1464. <Attr content="" isAuto="true" initParamsContent=""/>
  1465. </AttrTooltipRichText>
  1466. </richText>
  1467. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1468. <AttrTooltipValueFormat>
  1469. <Attr enable="true"/>
  1470. </AttrTooltipValueFormat>
  1471. </richTextValue>
  1472. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1473. <AttrTooltipPercentFormat>
  1474. <Attr enable="false"/>
  1475. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1476. <![CDATA[#.##%]]></Format>
  1477. </AttrTooltipPercentFormat>
  1478. </richTextPercent>
  1479. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1480. <AttrToolTipCategoryFormat>
  1481. <Attr enable="true"/>
  1482. </AttrToolTipCategoryFormat>
  1483. </richTextCategory>
  1484. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1485. <AttrTooltipSeriesFormat>
  1486. <Attr enable="true"/>
  1487. </AttrTooltipSeriesFormat>
  1488. </richTextSeries>
  1489. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1490. <AttrTooltipChangedPercentFormat>
  1491. <Attr enable="false"/>
  1492. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1493. <![CDATA[#.##%]]></Format>
  1494. </AttrTooltipChangedPercentFormat>
  1495. </richTextChangedPercent>
  1496. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1497. <AttrTooltipChangedValueFormat>
  1498. <Attr enable="false"/>
  1499. </AttrTooltipChangedValueFormat>
  1500. </richTextChangedValue>
  1501. <TableFieldCollection/>
  1502. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  1503. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1504. <AttrTooltipValueFormat>
  1505. <Attr enable="true"/>
  1506. </AttrTooltipValueFormat>
  1507. </value>
  1508. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1509. <AttrTooltipPercentFormat>
  1510. <Attr enable="false"/>
  1511. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1512. <![CDATA[#.##%]]></Format>
  1513. </AttrTooltipPercentFormat>
  1514. </percent>
  1515. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1516. <AttrToolTipCategoryFormat>
  1517. <Attr enable="true"/>
  1518. </AttrToolTipCategoryFormat>
  1519. </category>
  1520. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1521. <AttrTooltipSeriesFormat>
  1522. <Attr enable="true"/>
  1523. </AttrTooltipSeriesFormat>
  1524. </series>
  1525. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1526. <AttrTooltipChangedPercentFormat>
  1527. <Attr enable="false"/>
  1528. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1529. <![CDATA[#.##%]]></Format>
  1530. </AttrTooltipChangedPercentFormat>
  1531. </changedPercent>
  1532. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1533. <AttrTooltipChangedValueFormat>
  1534. <Attr enable="false"/>
  1535. </AttrTooltipChangedValueFormat>
  1536. </changedValue>
  1537. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1538. </AttrToolTipContent>
  1539. <GI>
  1540. <AttrBackground>
  1541. <Background name="ColorBackground" color="-16777216"/>
  1542. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="true" autoBackground="false" predefinedStyle="false"/>
  1543. </AttrBackground>
  1544. <AttrBorder>
  1545. <Attr lineStyle="0" isRoundBorder="false" roundRadius="2"/>
  1546. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1547. </AttrBorder>
  1548. <AttrAlpha>
  1549. <Attr alpha="0.5"/>
  1550. </AttrAlpha>
  1551. </GI>
  1552. </AttrTooltip>
  1553. </Attr>
  1554. <Attr class="com.fr.plugin.chart.base.VanChartAttrMarker">
  1555. <VanAttrMarker>
  1556. <Attr isCommon="true" anchorSize="22.0" markerType="AutoMarker" radius="3.5" width="30.0" height="30.0"/>
  1557. <Background name="NullBackground"/>
  1558. </VanAttrMarker>
  1559. </Attr>
  1560. <Attr class="com.fr.plugin.chart.base.VanChartAttrLine">
  1561. <VanAttrLine>
  1562. <Attr lineType="solid" lineWidth="2.0" lineStyle="0" nullValueBreak="true"/>
  1563. </VanAttrLine>
  1564. </Attr>
  1565. </AttrList>
  1566. </ConditionAttr>
  1567. </DefaultAttr>
  1568. </ConditionCollection>
  1569. <Legend4VanChart>
  1570. <Legend>
  1571. <GI>
  1572. <AttrBackground>
  1573. <Background name="NullBackground"/>
  1574. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1575. </AttrBackground>
  1576. <AttrBorder>
  1577. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1578. <newColor borderColor="-3355444" autoColor="false" predefinedStyle="false"/>
  1579. </AttrBorder>
  1580. <AttrAlpha>
  1581. <Attr alpha="1.0"/>
  1582. </AttrAlpha>
  1583. </GI>
  1584. <Attr position="4" visible="true" predefinedStyle="false"/>
  1585. <FRFont name="Microsoft YaHei" style="0" size="88" foreground="-10066330"/>
  1586. </Legend>
  1587. <Attr4VanChart floating="false" x="0.0" y="0.0" layout="aligned" customSize="false" maxHeight="30.0" isHighlight="true"/>
  1588. </Legend4VanChart>
  1589. <DataSheet>
  1590. <GI>
  1591. <AttrBackground>
  1592. <Background name="NullBackground"/>
  1593. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1594. </AttrBackground>
  1595. <AttrBorder>
  1596. <Attr lineStyle="1" isRoundBorder="false" roundRadius="0"/>
  1597. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1598. </AttrBorder>
  1599. <AttrAlpha>
  1600. <Attr alpha="1.0"/>
  1601. </AttrAlpha>
  1602. </GI>
  1603. <Attr isVisible="false" predefinedStyle="false"/>
  1604. <FRFont name="SimSun" style="0" size="72"/>
  1605. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1606. <![CDATA[#.##]]></Format>
  1607. </DataSheet>
  1608. <DataProcessor class="com.fr.base.chart.chartdata.model.NormalDataModel"/>
  1609. <newPlotFillStyle>
  1610. <AttrFillStyle>
  1611. <AFStyle colorStyle="0"/>
  1612. <FillStyleName fillStyleName=""/>
  1613. <isCustomFillStyle isCustomFillStyle="false"/>
  1614. <PredefinedStyle predefinedStyle="false"/>
  1615. </AttrFillStyle>
  1616. </newPlotFillStyle>
  1617. <VanChartPlotAttr isAxisRotation="false" categoryNum="1"/>
  1618. <GradientStyle>
  1619. <Attr gradientType="gradual" startColor="-12146441" endColor="-9378161"/>
  1620. </GradientStyle>
  1621. <VanChartRectanglePlotAttr vanChartPlotType="normal" isDefaultIntervalBackground="true"/>
  1622. <XAxisList>
  1623. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartAxis">
  1624. <Title>
  1625. <GI>
  1626. <AttrBackground>
  1627. <Background name="NullBackground"/>
  1628. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1629. </AttrBackground>
  1630. <AttrBorder>
  1631. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1632. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1633. </AttrBorder>
  1634. <AttrAlpha>
  1635. <Attr alpha="1.0"/>
  1636. </AttrAlpha>
  1637. </GI>
  1638. <O>
  1639. <![CDATA[YEAR]]></O>
  1640. <TextAttr>
  1641. <Attr alignText="0" predefinedStyle="false">
  1642. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1643. </Attr>
  1644. </TextAttr>
  1645. <TitleVisible value="true" position="4"/>
  1646. </Title>
  1647. <newAxisAttr isShowAxisLabel="true"/>
  1648. <AxisLineStyle AxisStyle="1" MainGridStyle="1"/>
  1649. <newLineColor lineColor="-5197648" predefinedStyle="false"/>
  1650. <AxisPosition value="3"/>
  1651. <TickLine201106 type="2" secType="0"/>
  1652. <ArrowShow arrowShow="false"/>
  1653. <TextAttr>
  1654. <Attr alignText="0" predefinedStyle="false">
  1655. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1656. </Attr>
  1657. </TextAttr>
  1658. <AxisLabelCount value="=1"/>
  1659. <AxisRange/>
  1660. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1661. <ZoomAxisAttr isZoom="false"/>
  1662. <axisReversed axisReversed="false"/>
  1663. <VanChartAxisAttr mainTickLine="2" secTickLine="0" axisName="X轴" titleUseHtml="false" labelDisplay="interval" autoLabelGap="true" limitSize="false" maxHeight="15.0" commonValueFormat="true" isRotation="false" isShowAxisTitle="true" gridLineType="NONE"/>
  1664. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1665. <alertList/>
  1666. <customBackgroundList/>
  1667. </VanChartAxis>
  1668. </XAxisList>
  1669. <YAxisList>
  1670. <VanChartAxis class="com.fr.plugin.chart.attr.axis.VanChartValueAxis">
  1671. <Title>
  1672. <GI>
  1673. <AttrBackground>
  1674. <Background name="NullBackground"/>
  1675. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1676. </AttrBackground>
  1677. <AttrBorder>
  1678. <Attr lineStyle="0" isRoundBorder="false" roundRadius="0"/>
  1679. <newColor borderColor="-16777216" autoColor="false" predefinedStyle="false"/>
  1680. </AttrBorder>
  1681. <AttrAlpha>
  1682. <Attr alpha="1.0"/>
  1683. </AttrAlpha>
  1684. </GI>
  1685. <O t="XMLable" class="com.fr.base.Formula">
  1686. <Attributes>
  1687. <![CDATA[=$unit_name3]]></Attributes>
  1688. </O>
  1689. <TextAttr>
  1690. <Attr rotation="-90" alignText="0" predefinedStyle="false">
  1691. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1692. </Attr>
  1693. </TextAttr>
  1694. <TitleVisible value="true" position="1"/>
  1695. </Title>
  1696. <newAxisAttr isShowAxisLabel="true"/>
  1697. <AxisLineStyle AxisStyle="0" MainGridStyle="1"/>
  1698. <newLineColor mainGridColor="-3881788" mainGridPredefinedStyle="false" lineColor="-5197648" predefinedStyle="false"/>
  1699. <AxisPosition value="2"/>
  1700. <TickLine201106 type="2" secType="0"/>
  1701. <ArrowShow arrowShow="false"/>
  1702. <TextAttr>
  1703. <Attr alignText="0" predefinedStyle="false">
  1704. <FRFont name="Verdana" style="0" size="88" foreground="-10066330"/>
  1705. </Attr>
  1706. </TextAttr>
  1707. <AxisLabelCount value="=1"/>
  1708. <AxisRange/>
  1709. <AxisUnit201106 isCustomMainUnit="false" isCustomSecUnit="false" mainUnit="=0" secUnit="=0"/>
  1710. <ZoomAxisAttr isZoom="false"/>
  1711. <axisReversed axisReversed="false"/>
  1712. <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"/>
  1713. <HtmlLabel customText="function(){ return this; }" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1714. <alertList/>
  1715. <customBackgroundList/>
  1716. <VanChartValueAxisAttr isLog="false" valueStyle="false" baseLog="=10"/>
  1717. <ds>
  1718. <RadarYAxisTableDefinition>
  1719. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1720. <attr/>
  1721. </RadarYAxisTableDefinition>
  1722. </ds>
  1723. </VanChartAxis>
  1724. </YAxisList>
  1725. <stackAndAxisCondition>
  1726. <ConditionCollection>
  1727. <DefaultAttr class="com.fr.chart.chartglyph.ConditionAttr">
  1728. <ConditionAttr name=""/>
  1729. </DefaultAttr>
  1730. </ConditionCollection>
  1731. </stackAndAxisCondition>
  1732. </Plot>
  1733. <ChartDefinition>
  1734. <OneValueCDDefinition seriesName="COUNTRY_CN_NAME" valueName="DATA_VALUE" function="com.fr.data.util.function.SumFunction">
  1735. <Top topCate="-1" topValue="-1" isDiscardOtherCate="false" isDiscardOtherSeries="false" isDiscardNullCate="false" isDiscardNullSeries="false"/>
  1736. <TableData class="com.fr.data.impl.NameTableData">
  1737. <Name>
  1738. <![CDATA[three_rule]]></Name>
  1739. </TableData>
  1740. <CategoryName value="DATA_YEAR"/>
  1741. </OneValueCDDefinition>
  1742. </ChartDefinition>
  1743. </Chart>
  1744. <UUID uuid="1625e13f-b90f-4c9f-a347-42756a08f217"/>
  1745. <tools hidden="true" sort="true" export="true" fullScreen="true"/>
  1746. <VanChartZoom>
  1747. <zoomAttr zoomVisible="false" zoomGesture="true" zoomResize="true" zoomType="xy" controlType="zoom" categoryNum="8" scaling="0.3"/>
  1748. <from>
  1749. <![CDATA[]]></from>
  1750. <to>
  1751. <![CDATA[]]></to>
  1752. </VanChartZoom>
  1753. <refreshMoreLabel>
  1754. <attr moreLabel="false" autoTooltip="true"/>
  1755. <AttrTooltip>
  1756. <Attr enable="true" duration="4" followMouse="false" showMutiSeries="false" isCustom="false"/>
  1757. <TextAttr>
  1758. <Attr alignText="0" predefinedStyle="false"/>
  1759. </TextAttr>
  1760. <AttrToolTipContent>
  1761. <TextAttr>
  1762. <Attr alignText="0" predefinedStyle="false"/>
  1763. </TextAttr>
  1764. <richText class="com.fr.plugin.chart.base.AttrTooltipRichText">
  1765. <AttrTooltipRichText>
  1766. <Attr content="" isAuto="true" initParamsContent=""/>
  1767. </AttrTooltipRichText>
  1768. </richText>
  1769. <richTextValue class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1770. <AttrTooltipValueFormat>
  1771. <Attr enable="true"/>
  1772. </AttrTooltipValueFormat>
  1773. </richTextValue>
  1774. <richTextPercent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1775. <AttrTooltipPercentFormat>
  1776. <Attr enable="false"/>
  1777. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1778. <![CDATA[#.##%]]></Format>
  1779. </AttrTooltipPercentFormat>
  1780. </richTextPercent>
  1781. <richTextCategory class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1782. <AttrToolTipCategoryFormat>
  1783. <Attr enable="false"/>
  1784. </AttrToolTipCategoryFormat>
  1785. </richTextCategory>
  1786. <richTextSeries class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1787. <AttrTooltipSeriesFormat>
  1788. <Attr enable="false"/>
  1789. </AttrTooltipSeriesFormat>
  1790. </richTextSeries>
  1791. <richTextChangedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1792. <AttrTooltipChangedPercentFormat>
  1793. <Attr enable="false"/>
  1794. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1795. <![CDATA[#.##%]]></Format>
  1796. </AttrTooltipChangedPercentFormat>
  1797. </richTextChangedPercent>
  1798. <richTextChangedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1799. <AttrTooltipChangedValueFormat>
  1800. <Attr enable="false"/>
  1801. </AttrTooltipChangedValueFormat>
  1802. </richTextChangedValue>
  1803. <TableFieldCollection/>
  1804. <Attr isCommon="true" isCustom="false" isRichText="false" richTextAlign="left" showAllSeries="false"/>
  1805. <value class="com.fr.plugin.chart.base.format.AttrTooltipValueFormat">
  1806. <AttrTooltipValueFormat>
  1807. <Attr enable="true"/>
  1808. </AttrTooltipValueFormat>
  1809. </value>
  1810. <percent class="com.fr.plugin.chart.base.format.AttrTooltipPercentFormat">
  1811. <AttrTooltipPercentFormat>
  1812. <Attr enable="false"/>
  1813. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1814. <![CDATA[#.##%]]></Format>
  1815. </AttrTooltipPercentFormat>
  1816. </percent>
  1817. <category class="com.fr.plugin.chart.base.format.AttrTooltipCategoryFormat">
  1818. <AttrToolTipCategoryFormat>
  1819. <Attr enable="true"/>
  1820. </AttrToolTipCategoryFormat>
  1821. </category>
  1822. <series class="com.fr.plugin.chart.base.format.AttrTooltipSeriesFormat">
  1823. <AttrTooltipSeriesFormat>
  1824. <Attr enable="true"/>
  1825. </AttrTooltipSeriesFormat>
  1826. </series>
  1827. <changedPercent class="com.fr.plugin.chart.base.format.AttrTooltipChangedPercentFormat">
  1828. <AttrTooltipChangedPercentFormat>
  1829. <Attr enable="false"/>
  1830. <Format class="com.fr.base.CoreDecimalFormat" roundingMode="6">
  1831. <![CDATA[#.##%]]></Format>
  1832. </AttrTooltipChangedPercentFormat>
  1833. </changedPercent>
  1834. <changedValue class="com.fr.plugin.chart.base.format.AttrTooltipChangedValueFormat">
  1835. <AttrTooltipChangedValueFormat>
  1836. <Attr enable="true"/>
  1837. </AttrTooltipChangedValueFormat>
  1838. </changedValue>
  1839. <HtmlLabel customText="" useHtml="false" isCustomWidth="false" isCustomHeight="false" width="50" height="50"/>
  1840. </AttrToolTipContent>
  1841. <GI>
  1842. <AttrBackground>
  1843. <Background name="ColorBackground" color="-1"/>
  1844. <Attr gradientType="normal" gradientStartColor="-12146441" gradientEndColor="-9378161" shadow="false" autoBackground="false" predefinedStyle="false"/>
  1845. </AttrBackground>
  1846. <AttrBorder>
  1847. <Attr lineStyle="1" isRoundBorder="false" roundRadius="4"/>
  1848. <newColor borderColor="-15395563" autoColor="false" predefinedStyle="false"/>
  1849. </AttrBorder>
  1850. <AttrAlpha>
  1851. <Attr alpha="0.8"/>
  1852. </AttrAlpha>
  1853. </GI>
  1854. </AttrTooltip>
  1855. </refreshMoreLabel>
  1856. <ThemeAttr>
  1857. <Attr darkTheme="false" predefinedStyle="false"/>
  1858. </ThemeAttr>
  1859. </Chart>
  1860. </O>
  1861. <PrivilegeControl/>
  1862. <Expand leftParentDefault="false" upParentDefault="false"/>
  1863. </C>
  1864. <C c="0" r="15" cs="3" s="0">
  1865. <O t="XMLable" class="com.fr.base.Formula">
  1866. <Attributes>
  1867. <![CDATA[="PS:The data comes from international organizations such as the world bank.(DATA SOURCE:" + (if(find("wb", $table_name1) > 0, "WORLD BANK", "") || if(find("iea", $table_name1) > 0, "IEA", "") || if(find("eia", $table_name1) > 0, "EIA)", "") || if(find("bp", $table_name1) > 0, "BP", "")) + ")"]]></Attributes>
  1868. </O>
  1869. <PrivilegeControl/>
  1870. <Expand/>
  1871. </C>
  1872. <C c="0" r="17" s="1">
  1873. <O t="XMLable" class="com.fr.base.Formula">
  1874. <Attributes>
  1875. <![CDATA[="YEAR(INDEX'S UNIT:" + $unit_name1 + ")"]]></Attributes>
  1876. </O>
  1877. <PrivilegeControl/>
  1878. <Expand/>
  1879. </C>
  1880. <C c="1" r="17" s="1">
  1881. <O t="DSColumn">
  1882. <Attributes dsName="three_rule" columnName="COUNTRY_CN_NAME"/>
  1883. <Condition class="com.fr.data.condition.ListCondition"/>
  1884. <Complex/>
  1885. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  1886. <Result>
  1887. <![CDATA[$$$]]></Result>
  1888. <Parameters/>
  1889. </O>
  1890. <PrivilegeControl/>
  1891. <Expand dir="1"/>
  1892. </C>
  1893. <C c="2" r="17" s="1">
  1894. <O>
  1895. <![CDATA[SUM]]></O>
  1896. <PrivilegeControl/>
  1897. <Expand/>
  1898. </C>
  1899. <C c="0" r="18" s="1">
  1900. <O t="DSColumn">
  1901. <Attributes dsName="three_rule" columnName="DATA_YEAR"/>
  1902. <Condition class="com.fr.data.condition.ListCondition"/>
  1903. <Complex/>
  1904. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  1905. <Result>
  1906. <![CDATA[$$$]]></Result>
  1907. <Parameters/>
  1908. </O>
  1909. <PrivilegeControl/>
  1910. <HighlightList>
  1911. <Highlight class="com.fr.report.cell.cellattr.highlight.DefaultHighlight">
  1912. <Name>
  1913. <![CDATA[条件属性1]]></Name>
  1914. <Condition class="com.fr.data.condition.FormulaCondition">
  1915. <Formula>
  1916. <![CDATA[len(A19) = 0]]></Formula>
  1917. </Condition>
  1918. <HighlightAction class="com.fr.report.cell.cellattr.highlight.RowHeightHighlightAction"/>
  1919. </Highlight>
  1920. </HighlightList>
  1921. <Expand dir="0"/>
  1922. </C>
  1923. <C c="1" r="18" s="3">
  1924. <O t="DSColumn">
  1925. <Attributes dsName="three_rule" columnName="DATA_VALUE"/>
  1926. <Condition class="com.fr.data.condition.ListCondition"/>
  1927. <Complex/>
  1928. <RG class="com.fr.report.cell.cellattr.core.group.FunctionGrouper"/>
  1929. <Result>
  1930. <![CDATA[$$$]]></Result>
  1931. <Parameters/>
  1932. </O>
  1933. <PrivilegeControl/>
  1934. <Expand/>
  1935. </C>
  1936. <C c="2" r="18" s="3">
  1937. <O t="XMLable" class="com.fr.base.Formula">
  1938. <Attributes>
  1939. <![CDATA[=if(ISNULL(B19), "", SUM(B19))]]></Attributes>
  1940. </O>
  1941. <PrivilegeControl/>
  1942. <Expand/>
  1943. </C>
  1944. <C c="0" r="19" s="1">
  1945. <O>
  1946. <![CDATA[SUM]]></O>
  1947. <PrivilegeControl/>
  1948. <Expand/>
  1949. </C>
  1950. <C c="1" r="19" s="3">
  1951. <O t="XMLable" class="com.fr.base.Formula">
  1952. <Attributes>
  1953. <![CDATA[=if(ISNULL(B19), "", SUM(B19))]]></Attributes>
  1954. </O>
  1955. <PrivilegeControl/>
  1956. <Expand/>
  1957. </C>
  1958. <C c="2" r="19" s="3">
  1959. <O t="XMLable" class="com.fr.base.Formula">
  1960. <Attributes>
  1961. <![CDATA[=if(ISNULL(C19), "", SUM(C19))]]></Attributes>
  1962. </O>
  1963. <PrivilegeControl/>
  1964. <Expand/>
  1965. </C>
  1966. </CellElementList>
  1967. <ReportAttrSet>
  1968. <ReportSettings headerHeight="0" footerHeight="0">
  1969. <PaperSetting orientation="1">
  1970. <Margin top="986400" left="2743200" bottom="986400" right="2743200"/>
  1971. </PaperSetting>
  1972. <Background name="ColorBackground" color="-1"/>
  1973. </ReportSettings>
  1974. <Header reportPageType="0">
  1975. <Background name="NullBackground"/>
  1976. <LeftList/>
  1977. <CenterList/>
  1978. <RightList/>
  1979. </Header>
  1980. <Footer reportPageType="0">
  1981. <Background name="NullBackground"/>
  1982. <LeftList/>
  1983. <CenterList/>
  1984. <RightList/>
  1985. </Footer>
  1986. </ReportAttrSet>
  1987. <PrivilegeControl/>
  1988. </Report>
  1989. <ReportParameterAttr>
  1990. <Attributes showWindow="true" delayPlaying="true" windowPosition="1" align="0" useParamsTemplate="true" currentIndex="0"/>
  1991. <PWTitle>
  1992. <![CDATA[参数]]></PWTitle>
  1993. <Parameter>
  1994. <Attributes name="index_name"/>
  1995. <O>
  1996. <![CDATA[人口总数]]></O>
  1997. </Parameter>
  1998. <Parameter>
  1999. <Attributes name="start_time"/>
  2000. <O>
  2001. <![CDATA[2010]]></O>
  2002. </Parameter>
  2003. <Parameter>
  2004. <Attributes name="end_time"/>
  2005. <O>
  2006. <![CDATA[2018]]></O>
  2007. </Parameter>
  2008. <Parameter>
  2009. <Attributes name="country_list"/>
  2010. <O>
  2011. <![CDATA[\"中国\",\"日本\"]]></O>
  2012. </Parameter>
  2013. <Parameter>
  2014. <Attributes name="index_name1"/>
  2015. <O>
  2016. <![CDATA[人口总数]]></O>
  2017. </Parameter>
  2018. <Parameter>
  2019. <Attributes name="index_name2"/>
  2020. <O>
  2021. <![CDATA[人口总数]]></O>
  2022. </Parameter>
  2023. <Parameter>
  2024. <Attributes name="table_name1"/>
  2025. <O>
  2026. <![CDATA[gei_app_data_wb]]></O>
  2027. </Parameter>
  2028. <Parameter>
  2029. <Attributes name="table_name2"/>
  2030. <O>
  2031. <![CDATA[gei_app_data_wb]]></O>
  2032. </Parameter>
  2033. <Parameter>
  2034. <Attributes name="table_name3"/>
  2035. <O>
  2036. <![CDATA[gei_app_data_wb]]></O>
  2037. </Parameter>
  2038. <Parameter>
  2039. <Attributes name="unit_name1"/>
  2040. <O>
  2041. <![CDATA[百分比]]></O>
  2042. </Parameter>
  2043. <Parameter>
  2044. <Attributes name="unit_name2"/>
  2045. <O>
  2046. <![CDATA[百分比]]></O>
  2047. </Parameter>
  2048. <Parameter>
  2049. <Attributes name="unit_name3"/>
  2050. <O>
  2051. <![CDATA[百分比]]></O>
  2052. </Parameter>
  2053. <Parameter>
  2054. <Attributes name="index_id"/>
  2055. <O>
  2056. <![CDATA[]]></O>
  2057. </Parameter>
  2058. <Parameter>
  2059. <Attributes name="index_id1"/>
  2060. <O>
  2061. <![CDATA[]]></O>
  2062. </Parameter>
  2063. <Parameter>
  2064. <Attributes name="index_id2"/>
  2065. <O>
  2066. <![CDATA[]]></O>
  2067. </Parameter>
  2068. </ReportParameterAttr>
  2069. <StyleList>
  2070. <Style imageLayout="1">
  2071. <FRFont name="SimSun" style="0" size="72" foreground="-4144960"/>
  2072. <Background name="NullBackground"/>
  2073. <Border/>
  2074. </Style>
  2075. <Style horizontal_alignment="0" imageLayout="1">
  2076. <FRFont name="SimSun" style="0" size="72"/>
  2077. <Background name="ColorBackground" color="-3342337"/>
  2078. <Border>
  2079. <Top style="1" color="-16777216"/>
  2080. <Bottom style="1" color="-16777216"/>
  2081. <Left style="1" color="-16777216"/>
  2082. <Right style="1" color="-16777216"/>
  2083. </Border>
  2084. </Style>
  2085. <Style horizontal_alignment="0" imageLayout="1">
  2086. <FRFont name="SimSun" style="0" size="72"/>
  2087. <Background name="NullBackground"/>
  2088. <Border/>
  2089. </Style>
  2090. <Style horizontal_alignment="0" imageLayout="1">
  2091. <FRFont name="SimSun" style="0" size="72"/>
  2092. <Background name="NullBackground"/>
  2093. <Border>
  2094. <Top style="1"/>
  2095. <Bottom style="1"/>
  2096. <Left style="1"/>
  2097. <Right style="1"/>
  2098. </Border>
  2099. </Style>
  2100. </StyleList>
  2101. <DesignerVersion DesignerVersion="KAA"/>
  2102. <PreviewType PreviewType="0"/>
  2103. <TemplateIdAttMark class="com.fr.base.iofile.attr.TemplateIdAttrMark">
  2104. <TemplateIdAttMark TemplateId="5f06acdb-bb3d-4a76-bd92-55a12a6e5f5c"/>
  2105. </TemplateIdAttMark>
  2106. </WorkBook>