useChartRender.ts 51 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806
  1. import { reactive, toRefs, onMounted, ref,watch } from "vue";
  2. import _ from "lodash";
  3. import {
  4. IChartType,
  5. IDataProps,
  6. IParams,
  7. ISeasonDataItemProps,
  8. } from "@/types";
  9. import Highcharts from "highcharts";
  10. import { defaultOpts, seasonOptions } from "@/utils/chartOptions";
  11. import moment from "moment";
  12. import router from '@/router'
  13. // 散点x
  14. const scatterXAxis = {
  15. tickPosition: "inside",
  16. lineColor: "#bfbfbf",
  17. tickColor: "#bfbfbf",
  18. tickLength: 5,
  19. ordinal: false,
  20. type: "linear",
  21. };
  22. //基础y轴
  23. const basicYAxis = {
  24. tickLength: 5,
  25. lineWidth: 1,
  26. lineColor: "#bfbfbf",
  27. tickColor: "#bfbfbf",
  28. // offset: 0,
  29. visible: true,
  30. gridLineWidth: 0,
  31. tickPosition: "inside",
  32. endOnTick: false,
  33. startOnTick: false,
  34. showLastLabel: true,
  35. };
  36. interface StateProps {
  37. chartLimit: {
  38. min?: number;
  39. max?: number;
  40. x_min?:number;
  41. x_max?:number;
  42. }
  43. dataList: any[];
  44. chartInfo: any
  45. }
  46. /**
  47. * useChartRender 处理图表渲染 返回options
  48. * @param Data 详情数据 lange中英文
  49. * @param {
  50. * Source 1 //ETA图 ChartType: 1曲线图 2季节图 3面积图 4柱状图 5散点图 6组合图 7柱形 8截面散点
  51. * 2 商品价格
  52. * 3 相关性
  53. * 4 滚动相关性
  54. * 5 商品利润
  55. * 6 拟合方程
  56. * 7 统计特征/标准差
  57. * 8 统计特征/百分位
  58. * 9 统计特征/频率
  59. * 10 跨品种分析
  60. * }
  61. *
  62. */
  63. //依赖数据
  64. const state = reactive<StateProps>({
  65. chartInfo: {},
  66. dataList: [],
  67. chartLimit: {},
  68. })
  69. const language = ref('')
  70. const routeQuery = ref<any>({});//路由参
  71. watch(() => router.currentRoute.value.query,(nval) => {
  72. routeQuery.value = nval
  73. })
  74. export const useChartRender = (Data,lang='ch',) => {
  75. state.chartInfo = Data.ChartInfo
  76. state.dataList = Data.ChartInfo.Source === 1 ? Data.EdbInfoList : [Data.EdbInfoList[0]];
  77. language.value = lang
  78. let chartOptions:any;
  79. //eta图
  80. if (Data.ChartInfo.Source === 1) {
  81. const typeMap = {
  82. 1: setDefaultLineOptions,
  83. 2: setSeasonOptions,
  84. 3: setStackOrCombinChart,
  85. 4: setStackOrCombinChart,
  86. 5: setScatterChartOptions,
  87. 6: setStackOrCombinChart,
  88. 7: initBarData,
  89. 10: initSectionScatterData,
  90. };
  91. chartOptions = typeMap[state.chartInfo.ChartType] && typeMap[state.chartInfo.ChartType](Data);
  92. }else {
  93. //其他source图
  94. const sourceTypeMap = {
  95. 2: initCommodityData,
  96. 3: initRelevanceChartData,
  97. 4: initStatisticChartData,
  98. 5: initCommodityData,
  99. 6: initFittingEquation,
  100. 7: initStatisticChartData,
  101. 8: initStatisticChartData,
  102. 9: initStatisticChartData,
  103. 10: initCrossVarietyChartData,
  104. };
  105. chartOptions = sourceTypeMap[Data.ChartInfo.Source] &&
  106. sourceTypeMap[Data.ChartInfo.Source](Data);
  107. }
  108. return chartOptions
  109. };
  110. /* 曲线图 */
  111. const setDefaultLineOptions = () => {
  112. const { dataList,chartInfo } = state;
  113. /* 主题样式*/
  114. const chartTheme = chartInfo.ChartThemeStyle ? JSON.parse(chartInfo.ChartThemeStyle) : null;
  115. //拼接标题 数据列
  116. let data = [] as any[],ydata = [] as any[],minTimeArr: number[] = [],maxTimeArr: number[] = [];
  117. let rightTwoIndex = dataList.findIndex(item => item.IsAxis ===2);
  118. // const chartData = _.cloneDeep(dataList);
  119. //有右二轴时排个序 按照左 右 右2的顺序
  120. let chartData = dataList.some(_ =>_.IsAxis===2) ? changeEdbOrder(dataList) : _.cloneDeep(dataList);
  121. chartData.forEach((item:IDataProps ,index:number) => {
  122. //轴位置值相同的下标
  123. let sameSideIndex = chartData.findIndex(
  124. (i:IDataProps) => i.IsAxis === item.IsAxis
  125. );
  126. //y轴
  127. let textEn = item.Unit?item.UnitEn:''
  128. let yItem = {
  129. ...basicYAxis,
  130. labels: {
  131. formatter: function (ctx: any) {
  132. let val = ctx.value;
  133. return sameSideIndex !== index ? '' : val;
  134. },
  135. align: 'center',
  136. x: [0,2].includes(item.IsAxis) ? 5 : -5,
  137. style: {
  138. ...chartTheme&&chartTheme.yAxisOptions.style,
  139. }
  140. },
  141. title: {
  142. text:language.value=='ch'?sameSideIndex !== index ? '' : `${item.Unit}`:textEn,
  143. style:{
  144. ...chartTheme&&chartTheme.yAxisOptions.style
  145. },
  146. align: 'high',
  147. rotation: 0,
  148. y: -12,
  149. x: (item.IsAxis===0 && rightTwoIndex>-1) ? -chartData[rightTwoIndex].Unit.length*12 : 0,
  150. textAlign: item.IsAxis===1 ? 'left' : 'right',
  151. reserveSpace: false
  152. },
  153. opposite: [0,2].includes(item.IsAxis),
  154. reversed: item.IsOrder,
  155. min: Number(chartData[sameSideIndex].MinData),
  156. max: Number(chartData[sameSideIndex].MaxData),
  157. tickWidth: 1,
  158. visible: sameSideIndex === index,
  159. plotBands: setAxisPlotAreas(item.IsAxis),
  160. plotLines: setAxisPlotLines(item.IsAxis)
  161. }
  162. // //拼接标题 判断相同指标名称拼接来源
  163. let dynamic_title = item.EdbName;
  164. let dynamic_arr = chartData.filter(
  165. (item: IDataProps) => dynamic_title === item.EdbName
  166. );
  167. // 拼接配置 IsAxis左轴1 右轴0 IsOrder正序false 逆序true EdbInfoType是否是领先指标
  168. let dynamic_tag = concatDynamicTag(item)
  169. // 英文后缀
  170. let dynamic_tag_en = concatDynamicTag(item,'en')
  171. //数据列
  172. let nameCh:String = dynamic_arr.length > 1
  173. ? `${item.EdbAliasName||item.EdbName}(${item.SourceName})${dynamic_tag}`
  174. : `${item.EdbAliasName||item.EdbName}${dynamic_tag}`
  175. let nameEn:String=item.EdbNameEn?`${item.EdbNameEn}${dynamic_tag_en}`:''
  176. let name :String=language.value == 'ch'?nameCh:nameEn
  177. //预测指标配置
  178. let predict_params = item.EdbInfoCategoryType === 1 ? getPredictParams(item) : {};
  179. let obj = {
  180. data: [] as any[],
  181. type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
  182. dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
  183. yAxis: sameSideIndex,
  184. name,
  185. color: item.ChartColor,
  186. lineWidth: Number(item.ChartWidth),
  187. ...predict_params
  188. };
  189. item.DataList = item.DataList || []
  190. for (let i of item.DataList) {
  191. obj.data.push([i.DataTimestamp, i.Value]);
  192. }
  193. if(item.DataList.length){
  194. minTimeArr.push(item.DataList[0].DataTimestamp)
  195. maxTimeArr.push(item.DataList[item.DataList.length-1].DataTimestamp)
  196. }
  197. data.push(obj);
  198. ydata.push(yItem);
  199. })
  200. // 范围为1年内 x轴显示为月/日 否则默认年/月
  201. let xAxis:any = {};
  202. const isLessThanOneYear:boolean = xTimeDiffer();
  203. let minTime: number=Math.min(...minTimeArr);
  204. let maxTime=Math.max(...maxTimeArr);
  205. let step = setXaxisStep(maxTime-minTime);
  206. xAxis = {
  207. ...defaultOpts.xAxis,
  208. tickInterval: screen.value === 'phone' ? step : undefined,
  209. labels: {
  210. formatter: function (ctx: any) {
  211. return isLessThanOneYear
  212. ? Highcharts.dateFormat('%m/%d', ctx.value)
  213. : Highcharts.dateFormat('%y/%m', ctx.value);
  214. },
  215. style: {
  216. ...chartTheme&&chartTheme.xAxisOptions.style
  217. }
  218. },
  219. plotBands: setAxisPlotAreas(3,'datetime'),
  220. plotLines: setAxisPlotLines(3,'datetime')
  221. }
  222. let options:any = {};
  223. options = {
  224. series: data,
  225. yAxis: ydata,
  226. xAxis
  227. };
  228. //滚动相关性独立tooltip
  229. if(chartInfo.Source === 4) {
  230. const relevanceUnitEnMap={
  231. '年': 'Year',
  232. '季': 'Season',
  233. '月': 'Month',
  234. '周': 'Week',
  235. '天': 'Day',
  236. }
  237. const { LeadValue,LeadUnit } = statisticFrequencyRenderData.value;
  238. options.tooltip = {
  239. formatter: function() {
  240. let that:any = this;
  241. let str = '';
  242. if(language.value=='ch'){
  243. str = `${Highcharts.dateFormat('%Y/%m/%d',that.x)}<br><p>相关性系数:${that.y.toFixed(4)}</p><br><p>领先${LeadValue+LeadUnit}</p>`
  244. }else{
  245. str = `${Highcharts.dateFormat('%Y/%m/%d',that.x)}<br><p>Correlation coefficient:${that.y.toFixed(4)}</p><br><p>lead${LeadValue+relevanceUnitEnMap[LeadUnit]}</p>`
  246. }
  247. return str
  248. },
  249. }
  250. }
  251. return options;
  252. }
  253. /* 季节图 */
  254. const screen = ref(document.body.clientWidth < 1200 ? 'phone' : 'pc');
  255. const setSeasonOptions = () => {
  256. const chartData = state.dataList[0];
  257. // 农历数据需要去除第一项 在ETA1.0.5之后,除了这里 农历和公历处理逻辑一样
  258. if(!chartData.DataList){
  259. return
  260. }
  261. const chartDataHandle=state.chartInfo.Calendar === '农历'?
  262. chartData.DataList.filter((item:ISeasonDataItemProps, index:number) => index > 0):
  263. chartData.DataList
  264. let seasonYdata:any[] = [],
  265. seasonData:any[] = [];
  266. /* 主题样式*/
  267. const chartTheme = state.chartInfo.ChartThemeStyle ? JSON.parse(state.chartInfo.ChartThemeStyle) : null;
  268. /*处理数据列*/
  269. for (let j of chartDataHandle) {
  270. //预测指标配置
  271. let predict_params = chartData.EdbInfoCategoryType === 1 ? getSeasonPredictParams(j.CuttingDataTimestamp) : {};
  272. let serie_item = {
  273. data: [] as any[],
  274. type: (chartTheme&&chartTheme.lineOptions.lineType) || chartData.ChartStyle,
  275. dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
  276. yAxis: 0,
  277. name: j.ChartLegend,
  278. lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 1,
  279. ...predict_params
  280. };
  281. const data_array = _.cloneDeep(j.DataList);
  282. data_array &&
  283. data_array.forEach((item: IParams) => {
  284. serie_item.data.push([item.DataTimestamp, item.Value]);
  285. });
  286. seasonData.push(serie_item);
  287. }
  288. //y轴
  289. seasonYdata = [{
  290. ...defaultOpts.yAxis,
  291. labels: {
  292. formatter: function (ctx: any) {
  293. let val = ctx.value;
  294. return val;
  295. },
  296. align: 'center',
  297. style: {
  298. ...chartTheme&&chartTheme.yAxisOptions.style
  299. }
  300. },
  301. title: {
  302. text:language.value=='ch'?`${chartData.Unit}`:chartData.UnitEn,
  303. align: 'high',
  304. rotation: 0,
  305. y: -12,
  306. x: 0,
  307. textAlign: 'left',
  308. reserveSpace: false,
  309. style:{
  310. ...chartTheme&&chartTheme.yAxisOptions.style
  311. },
  312. },
  313. max: Number(chartData.MaxData),
  314. min: Number(chartData.MinData),
  315. plotBands: setAxisPlotAreas(1),
  316. plotLines: setAxisPlotLines(1)
  317. }];
  318. // 季节图x轴显示月/日
  319. const xAxis = {
  320. ...defaultOpts.xAxis,
  321. tickInterval: screen.value === 'phone' ? 24 * 3600 * 1000 * 60 : undefined,
  322. labels: {
  323. formatter: function (ctx: any) {
  324. return Highcharts.dateFormat('%m/%d', ctx.value);
  325. },
  326. style: {
  327. ...chartTheme&&chartTheme.xAxisOptions.style
  328. }
  329. },
  330. plotBands: setAxisPlotAreas(3,'datetime'),
  331. plotLines: setAxisPlotLines(3,'datetime')
  332. };
  333. const tooltip = {
  334. ...defaultOpts.tooltip,
  335. dateTimeLabelFormats: {
  336. // 时间格式化字符
  337. day: '%m/%d',
  338. week: '%m/%d',
  339. month: '%m/%d',
  340. year: '%m/%d',
  341. },
  342. xDateFormat: '%m/%d',
  343. }
  344. let colors = chartTheme&&chartTheme.colorsOptions.reverse();
  345. return {
  346. colors:colors.slice(-chartDataHandle.length),
  347. series: seasonData,
  348. yAxis: seasonYdata,
  349. xAxis,
  350. tooltip
  351. };
  352. }
  353. /* 堆叠图/组合图设置
  354. 本来和曲线图逻辑基本一致兼容下即可 为了以后便于维护和阅读还是拆开写吧
  355. */
  356. const setStackOrCombinChart = () => {
  357. const { dataList,chartInfo } = state;
  358. /* 主题样式*/
  359. const chartTheme = state.chartInfo.ChartThemeStyle ? JSON.parse(state.chartInfo.ChartThemeStyle) : null;
  360. //拼接标题 数据列
  361. let data = [] as any[],ydata = [] as any[],minTimeArr: number[] = [],maxTimeArr: number[] = [];
  362. // const chartData = _.cloneDeep(dataList);
  363. //有右二轴时排个序 按照左 右 右2的顺序
  364. let chartData = dataList.some(_ =>_.IsAxis===2) ? changeEdbOrder(dataList) : _.cloneDeep(dataList);
  365. //支持的图表类型
  366. const chartTypeMap: IChartType = {
  367. 3: 'areaspline',
  368. 4: 'column',
  369. 6: ''
  370. };
  371. let chartStyle = chartTypeMap[chartInfo.ChartType];
  372. chartData.forEach((item:IDataProps ,index:number) => {
  373. //轴位置值相同的下标
  374. let sameSideIndex = chartData.findIndex(
  375. (i:IDataProps) => i.IsAxis === item.IsAxis
  376. );
  377. //堆叠图的yAxis必须一致 数据列所对应的y轴
  378. let serie_yIndex = index;
  379. if([3,4].includes(chartInfo.ChartType)) {
  380. // 类型为堆叠图时公用第一个指标y轴
  381. serie_yIndex = 0;
  382. } else if(chartInfo.ChartType ===6 && ['areaspline','column'].includes(item.ChartStyle)) {
  383. // 组合图找第一个堆叠柱状或面积的作为公用
  384. serie_yIndex = chartData.findIndex((i:IDataProps) => i.ChartStyle === item.ChartStyle);
  385. }
  386. //数据对应的y轴是公用轴则配置也共享
  387. item.IsAxis = serie_yIndex === index ? item.IsAxis : chartData[serie_yIndex].IsAxis;
  388. item.IsOrder = serie_yIndex === index ? item.IsOrder : chartData[serie_yIndex].IsOrder;
  389. // 右2轴下标
  390. let rightTwoIndex = [3,4].includes(chartInfo.ChartType)
  391. ? -1
  392. : dataList.findIndex(item => item.IsAxis===2);
  393. //y轴
  394. let textEn = item.Unit?item.UnitEn:''
  395. let yItem = {
  396. ...basicYAxis,
  397. labels: {
  398. formatter: function (ctx: any) {
  399. let val = ctx.value;
  400. return sameSideIndex !== index ? '' : val;
  401. },
  402. align: 'center',
  403. x: [0,2].includes(item.IsAxis) ? 5 : -5,
  404. style:{
  405. ...chartTheme&&chartTheme.yAxisOptions.style
  406. },
  407. },
  408. title: {
  409. text:language.value=='ch'?sameSideIndex !== index ? '' : `${item.Unit}`:textEn,
  410. // text: null,
  411. align: 'high',
  412. rotation: 0,
  413. y: -12,
  414. x: (item.IsAxis===0 && rightTwoIndex>-1) ? -chartData[rightTwoIndex].Unit.length*12 : 0,
  415. textAlign: item.IsAxis===1 ? 'left' : 'right',
  416. reserveSpace: false,
  417. style:{
  418. ...chartTheme&&chartTheme.yAxisOptions.style
  419. },
  420. },
  421. opposite: [0,2].includes(item.IsAxis),
  422. reversed: item.IsOrder,
  423. min: Number(chartData[sameSideIndex].MinData),
  424. max: Number(chartData[sameSideIndex].MaxData),
  425. tickWidth: sameSideIndex !== index ? 0 : 1,
  426. visible: serie_yIndex === index && sameSideIndex ===index,
  427. plotBands: setAxisPlotAreas(item.IsAxis),
  428. plotLines: setAxisPlotLines(item.IsAxis)
  429. }
  430. // //拼接标题 判断相同指标名称拼接来源
  431. let dynamic_title = item.EdbName;
  432. let dynamic_arr = chartData.filter(
  433. (item: IDataProps) => dynamic_title === item.EdbName
  434. );
  435. // 拼接配置 IsAxis左轴1 右轴0 IsOrder正序false 逆序true EdbInfoType是否是领先指标
  436. let dynamic_tag = concatDynamicTag(item)
  437. // 英文后缀
  438. let dynamic_tag_en = concatDynamicTag(item,'en')
  439. //数据列
  440. let nameCh:String = dynamic_arr.length > 1
  441. ? `${item.EdbAliasName||item.EdbName}(${item.SourceName})${dynamic_tag}`
  442. : `${item.EdbAliasName||item.EdbName}${dynamic_tag}`
  443. let nameEn:String=item.EdbNameEn?`${item.EdbNameEn}${dynamic_tag_en}`:''
  444. let name :String=language.value == 'ch'?nameCh:nameEn
  445. //预测指标配置
  446. let predict_params = item.EdbInfoCategoryType === 1 ? getPredictParams(item,chartStyle) : {};
  447. let obj = {
  448. data: [] as any[],
  449. type: chartStyle || item.ChartStyle,
  450. yAxis: serie_yIndex,
  451. name,
  452. color: item.ChartColor,
  453. lineWidth: Number(item.ChartWidth),
  454. fillColor: (chartInfo.ChartType === 3 || (chartInfo.ChartType === 6 && item.ChartStyle === 'areaspline')) ? item.ChartColor : undefined,
  455. zIndex: (chartInfo.ChartType === 6 && ['line','spline'].includes(item.ChartStyle)) ? 1 : 0, //防止组合图曲线被遮住
  456. borderWidth: 1,
  457. borderColor: item.ChartColor,
  458. ...predict_params
  459. };
  460. item.DataList = item.DataList || []
  461. for (let i of item.DataList) {
  462. obj.data.push([i.DataTimestamp, i.Value]);
  463. }
  464. if(item.DataList.length){
  465. minTimeArr.push(item.DataList[0].DataTimestamp)
  466. maxTimeArr.push(item.DataList[item.DataList.length-1].DataTimestamp)
  467. }
  468. data.push(obj);
  469. ydata.push(yItem);
  470. })
  471. // 范围为1年内 x轴显示为月/日 否则默认年/月
  472. let xAxis:any = {};
  473. const isLessThanOneYear:boolean = xTimeDiffer();
  474. let minTime: number=Math.min(...minTimeArr);
  475. let maxTime=Math.max(...maxTimeArr);
  476. let step = setXaxisStep(maxTime-minTime);
  477. xAxis = {
  478. ...defaultOpts.xAxis,
  479. tickInterval: screen.value === 'phone' ? step : undefined,
  480. labels: {
  481. formatter: function (ctx: any) {
  482. return isLessThanOneYear
  483. ? Highcharts.dateFormat('%m/%d', ctx.value)
  484. : Highcharts.dateFormat('%y/%m', ctx.value);
  485. },
  486. style: {
  487. ...chartTheme&&chartTheme.xAxisOptions.style
  488. }
  489. },
  490. plotBands: setAxisPlotAreas(3,'datetime'),
  491. plotLines: setAxisPlotLines(3,'datetime')
  492. }
  493. return {
  494. series: data,
  495. yAxis: ydata,
  496. xAxis
  497. };
  498. }
  499. /* 散点图 第一个指标值为x轴 第二个指标为y轴*/
  500. const setScatterChartOptions = () => {
  501. const { dataList,chartInfo } = state;
  502. /* 主题样式*/
  503. const chartTheme = state.chartInfo.ChartThemeStyle ? JSON.parse(state.chartInfo.ChartThemeStyle) : null;
  504. // 取2个指标中日期相同的数据
  505. const real_data: any[] = [];
  506. let tmpData_date: any = {};//用来取点对应的日期
  507. let data1 = _.cloneDeep(dataList)[0].DataList || [];
  508. let data2 = _.cloneDeep(dataList)[1].DataList || [];
  509. data1.forEach((_item: IParams) => {
  510. data2.forEach((_item2: IParams) => {
  511. if(_item.DataTimestamp === _item2.DataTimestamp) {
  512. //日期
  513. let itemIndex =_item.Value + "_" +_item2.Value
  514. if(tmpData_date[itemIndex]) {
  515. tmpData_date[itemIndex].push( moment(_item.DataTimestamp).format('YYYY/MM/DD'))
  516. } else {
  517. tmpData_date[itemIndex] = [moment(_item.DataTimestamp).format('YYYY/MM/DD')]
  518. }
  519. //值
  520. real_data.push({
  521. x: _item.Value,
  522. y: _item2.Value
  523. })
  524. }
  525. })
  526. })
  527. real_data.sort((x,y) => x-y);
  528. //悬浮窗 拼接日期 原始指标名称
  529. let tooltip = {
  530. formatter: function() {
  531. const that: any = this;
  532. return language.value=='ch'?
  533. `<strong>${ tmpData_date[that.x+'_'+that.y].length > 4 ? tmpData_date[that.x+'_'+that.y].slice(0,4).join()+'...' : tmpData_date[that.x+'_'+that.y].join() }</strong><br>
  534. ${dataList[0].EdbName}: <span style="font-weight: 600"> ${that.x}</span><br>
  535. ${dataList[1].EdbName}: <span style="font-weight: 600"> ${that.y}</span>
  536. `:
  537. `<strong>${ tmpData_date[that.x+'_'+that.y].length > 4 ? tmpData_date[that.x+'_'+that.y].slice(0,4).join()+'...' : tmpData_date[that.x+'_'+that.y].join() }</strong><br>
  538. ${dataList[0].EdbNameEn}: <span style="font-weight: 600"> ${that.x}</span><br>
  539. ${dataList[1].EdbNameEn}: <span style="font-weight: 600"> ${that.y}</span>
  540. `
  541. }
  542. }
  543. const { IsOrder,ChartColor } = dataList[0];
  544. //y轴
  545. let yAxis = {
  546. title: {
  547. text: language.value=='ch'?`${dataList[1].Unit}`:dataList[1].Unit?dataList[1].UnitEn:'',
  548. // text: null,
  549. align: 'high',
  550. rotation: 0,
  551. y: -5,
  552. x:0,
  553. textAlign: 'left',
  554. reserveSpace: false,
  555. style:{
  556. ...chartTheme&&chartTheme.yAxisOptions.style
  557. },
  558. },
  559. labels: {
  560. formatter: function (ctx: any) {
  561. return ctx.value;
  562. },
  563. align: 'center',
  564. style:{
  565. ...chartTheme&&chartTheme.yAxisOptions.style
  566. },
  567. },
  568. opposite: false,
  569. reversed: IsOrder,
  570. min: Number(dataList[0].MinData),
  571. max: Number(dataList[0].MaxData),
  572. tickWidth: 1,
  573. tickLength: 5,
  574. lineWidth: 1,
  575. lineColor: '#bfbfbf',
  576. tickColor: '#bfbfbf',
  577. offset: 0,
  578. visible: true,
  579. gridLineWidth: 0,
  580. tickPosition: 'inside',
  581. endOnTick: false,
  582. startOnTick: false,
  583. showLastLabel: true,
  584. tickPixelInterval: 50,
  585. plotBands: setAxisPlotAreas(1),
  586. plotLines: setAxisPlotLines(1)
  587. }
  588. //数据列
  589. let series: any = {
  590. data: [],
  591. type: 'scatter',
  592. name: language.value == 'ch'?`${chartInfo.ChartName}${IsOrder ? '(逆序)' : ''}`:`${chartInfo.ChartNameEn}${IsOrder ? '(reserve)' : ''}`,
  593. color: ChartColor,
  594. chartType: 'linear',
  595. marker: {
  596. radius: (chartTheme&&chartTheme.lineOptions.radius)||5,
  597. },
  598. }
  599. real_data.forEach(_ => {
  600. series.data.push([_.x,_.y])
  601. })
  602. return {
  603. title: {
  604. text:''
  605. },
  606. series: [ series ],
  607. yAxis,
  608. xAxis: {
  609. ...scatterXAxis,
  610. title: {
  611. text: language.value=='ch'?`${dataList[0].Unit}`:dataList[0].Unit?dataList[0].UnitEn:'',
  612. align: 'high',
  613. rotation: 0,
  614. x: 0,
  615. offset: 20,
  616. style: {
  617. ...chartTheme&&chartTheme.xAxisOptions.style
  618. },
  619. },
  620. labels: {
  621. style: {
  622. ...chartTheme&&chartTheme.xAxisOptions.style
  623. }
  624. },
  625. plotBands: setAxisPlotAreas(3),
  626. plotLines: setAxisPlotLines(3)
  627. },
  628. tooltip
  629. }
  630. }
  631. /* 奇怪柱状图
  632. 获取图表详情后赋值奇怪柱状图数据 */
  633. const barChartRenderData = ref<any>({})
  634. const initBarData = (data: { XEdbIdValue: number[]; YDataList: any; EdbInfoList: any; ChartInfo: any; }) => {
  635. const { XEdbIdValue,YDataList,EdbInfoList,ChartInfo } = data;
  636. barChartRenderData.value = {
  637. barDateList: YDataList,
  638. barXIdData: XEdbIdValue,
  639. barEdbData: EdbInfoList,
  640. chartInfo: ChartInfo
  641. }
  642. state.chartLimit = {
  643. min: Number(ChartInfo.LeftMin),
  644. max: Number(ChartInfo.LeftMax),
  645. }
  646. return setBarChart()
  647. }
  648. const setBarChart = () => {
  649. const {barDateList,barXIdData,barEdbData,chartInfo} = barChartRenderData.value;
  650. const { chartLimit } = state;
  651. let seriesData: { data: any; type: string; yAxis: number; name: any; color: any; chartType: string; }[] = [];
  652. const data = _.cloneDeep(barDateList);
  653. /* 主题样式*/
  654. const chartTheme = chartInfo.ChartThemeStyle ? JSON.parse(chartInfo.ChartThemeStyle) : null;
  655. let categories = language.value==='ch'
  656. ? barXIdData.map((_:number) => barEdbData.find((edb: { EdbInfoId: number; }) => edb.EdbInfoId===_).EdbAliasName)
  657. : barXIdData.map((_:number) => barEdbData.find((edb: { EdbInfoId: number; }) => edb.EdbInfoId===_).EdbNameEn)
  658. //x轴
  659. let xAxis = {
  660. ...scatterXAxis,
  661. categories,
  662. tickWidth: 1,
  663. labels: {
  664. style: {
  665. ...chartTheme&&chartTheme.xAxisOptions.style
  666. }
  667. }
  668. }
  669. const { max,min } = chartLimit;
  670. console.log(max,min)
  671. //y轴
  672. let yAxis = {
  673. ...basicYAxis,
  674. title: {
  675. text: language.value==='ch' ? chartInfo.Unit : chartInfo.UnitEn,
  676. align: 'high',
  677. rotation: 0,
  678. y: -12,
  679. x:0,
  680. textAlign: 'left',
  681. reserveSpace: false,
  682. style:{
  683. ...chartTheme&&chartTheme.yAxisOptions.style
  684. },
  685. },
  686. labels: {
  687. formatter: function (ctx:any) {
  688. let val = ctx.value;
  689. return val;
  690. },
  691. align: 'center',
  692. style:{
  693. ...chartTheme&&chartTheme.yAxisOptions.style
  694. },
  695. },
  696. min: Number(min),
  697. max: Number(max),
  698. opposite: false,
  699. tickWidth: 1,
  700. plotBands: setAxisPlotAreas(1),
  701. plotLines: setAxisPlotLines(1)
  702. }
  703. //数据列
  704. data.forEach((item: { Value: number; Name: string; Date: string; Color: string; }) => {
  705. let serie_item = {
  706. data: item.Value,
  707. type: 'column',
  708. yAxis: 0,
  709. name: language.value==='ch' ? (item.Name || item.Date) : item.Date,
  710. color: item.Color,
  711. chartType: 'linear'
  712. };
  713. seriesData.push(serie_item)
  714. })
  715. return {
  716. title: {
  717. text:''
  718. },
  719. plotOptions: {
  720. column:{
  721. stacking: null,
  722. },
  723. },
  724. series: seriesData,
  725. yAxis: [ yAxis ],
  726. xAxis
  727. }
  728. }
  729. /* 散点截面图 */
  730. const sectionScatterRenderData = ref<any>({});
  731. const initSectionScatterData = (data: { DataResp:any,EdbInfoList:any[] }) => {
  732. sectionScatterRenderData.value = data.DataResp;
  733. state.chartLimit.min=Number(data.DataResp.YMinValue)
  734. state.chartLimit.max=Number(data.DataResp.YMaxValue)
  735. state.chartLimit.x_min=Number(data.DataResp.XMinValue)
  736. state.chartLimit.x_max=Number(data.DataResp.XMaxValue)
  737. //校验英文名称是否完整
  738. if(routeQuery.value.fromPage === 'en' && language.value==='en') {
  739. const { XNameEn,XUnitNameEn,YNameEn,YUnitNameEn } = data.DataResp;
  740. // DataList可能是null
  741. const DataList = data.DataResp.DataList||[]
  742. let isAllEn = true;
  743. if(!XNameEn || !XUnitNameEn || !YNameEn || !YUnitNameEn) isAllEn = false;
  744. if(DataList.some(_ => !_.NameEn)) isAllEn = false;
  745. console.log(isAllEn)
  746. language.value = isAllEn ? 'en' : 'ch';
  747. }
  748. return setSectionScatterChart()
  749. }
  750. /* 截面散点图设置 sectionScatterData */
  751. const setSectionScatterChart = () => {
  752. const { chartLimit } = state;
  753. const { DataList,XName,XNameEn,YName,YNameEn } = sectionScatterRenderData.value;
  754. /* 主题样式*/
  755. const chartTheme = state.chartInfo.ChartThemeStyle ? JSON.parse(state.chartInfo.ChartThemeStyle) : null;
  756. if(!DataList){
  757. return
  758. }
  759. const { min,max,x_min,x_max } = chartLimit;
  760. //y轴
  761. let yAxis = {
  762. ...basicYAxis,
  763. title: {
  764. text: language.value === 'ch' ? YName : YNameEn,
  765. align: 'middle',
  766. style:{
  767. ...chartTheme&&chartTheme.yAxisOptions.style
  768. },
  769. },
  770. labels: {
  771. style:{
  772. ...chartTheme&&chartTheme.yAxisOptions.style
  773. },
  774. },
  775. opposite: false,
  776. reversed: false,
  777. min: Number(min),
  778. max: Number(max),
  779. tickWidth: 1,
  780. plotBands: setAxisPlotAreas(1),
  781. plotLines: setAxisPlotLines(1)
  782. }
  783. //x轴
  784. let xAxis = {
  785. ...scatterXAxis,
  786. title: {
  787. text: language.value === 'ch' ? XName : XNameEn,
  788. align: 'middle',
  789. style: {
  790. ...chartTheme&&chartTheme.xAxisOptions.style
  791. },
  792. },
  793. labels: {
  794. style:{
  795. ...chartTheme&&chartTheme.xAxisOptions.style
  796. },
  797. },
  798. min: Number(x_min),
  799. max: Number(x_max),
  800. plotBands: setAxisPlotAreas(3),
  801. plotLines: setAxisPlotLines(3)
  802. }
  803. //数据列
  804. let series: any[] = [];
  805. DataList.forEach(item => {
  806. //数据列
  807. let series_item = {
  808. data: [] as any[],
  809. type: 'scatter',
  810. name: language.value === 'ch' ? item.Name : item.NameEn,
  811. color: item.Color,
  812. lineWidth: 0,
  813. chartType: 'linear',
  814. zIndex:1,
  815. marker: {
  816. radius: (chartTheme&&chartTheme.lineOptions.radius)||5,
  817. },
  818. visible: true
  819. }
  820. item.EdbInfoList.forEach(_ => {
  821. series_item.data.push({
  822. x: _.XValue,
  823. y: _.YValue,
  824. dataLabels: {
  825. enabled: _.IsShow,
  826. allowOverlap: true,
  827. align: 'left',
  828. format: language.value === 'ch' ? _.Name : _.NameEn
  829. }
  830. })
  831. })
  832. series.push(series_item);
  833. //趋势线
  834. if(item.ShowTrendLine) {
  835. let trend_data = item.TrendLimitData.map((_,_index) => (
  836. _index === item.TrendLimitData.length-1 ? {
  837. x: _.X,
  838. y: _.Y,
  839. dataLabels: {
  840. enabled: item.ShowRSquare || item.ShowFitEquation,
  841. align: 'left',
  842. color: '#666',
  843. x: 20,
  844. y: 30,
  845. zIndex: 9,
  846. allowOverlap: true,
  847. formatter: function(){
  848. let tag = '';
  849. item.ShowRSquare && item.ShowFitEquation
  850. ? tag =`<span>${item.TrendLine}</span><br><span>R²=${item.RSquare}</span>`
  851. : item.ShowRSquare && !item.ShowFitEquation
  852. ? tag =`<span>R²=${item.RSquare}</span>`
  853. : item.ShowFitEquation && !item.ShowRSquare
  854. ? tag =`<span>${item.TrendLine}</span>`
  855. : ''
  856. return tag
  857. }
  858. }
  859. } : {
  860. x: _.X,
  861. y: _.Y,
  862. }
  863. ))
  864. let trend_item = {
  865. data: trend_data,
  866. type: 'spline',
  867. linkedTo: ':previous',
  868. color: item.Color,
  869. lineWidth: 1,
  870. chartType: 'linear',
  871. enableMouseTracking: false,
  872. dashStyle:'Dash',
  873. zIndex: 2,
  874. visible: true,
  875. marker: {
  876. enabled: false
  877. }
  878. }
  879. series.push(trend_item)
  880. }
  881. })
  882. let tooltip = {
  883. formatter: function() {
  884. const that:any = this;
  885. let str = '';
  886. if(language.value === 'ch') {
  887. let series_obj = DataList.find(_ => _.Name === that.series.name);
  888. let ponit_obj = series_obj.EdbInfoList.find(_ => _.XValue ===that.x && _.YValue===that.y);
  889. str=`<b>${ ponit_obj.Name }</b>`;
  890. str += `<br><span style="color:${that.color}">\u25CF</span>${ponit_obj.XName}: ${that.x} ${ponit_obj.XDate}<br>`;
  891. str += `<span style="color:${that.color}">\u25CF</span>${ponit_obj.YName}: ${that.y} ${ponit_obj.YDate}`;
  892. }else {
  893. let series_obj = DataList.find(_ => _.NameEn === that.series.name);
  894. let ponit_obj = series_obj.EdbInfoList.find(_ => _.XValue ===that.x && _.YValue===that.y);
  895. str=`<b>${ ponit_obj.NameEn }</b>`;
  896. str += `<br><span style="color:${that.color}">\u25CF</span>${ponit_obj.XNameEn}: ${that.x} ${ponit_obj.XDate}<br>`;
  897. str += `<span style="color:${that.color}">\u25CF</span>${ponit_obj.YNameEn}: ${that.y} ${ponit_obj.YDate}`;
  898. }
  899. return str
  900. }
  901. }
  902. return {
  903. title: {
  904. text:''
  905. },
  906. series,
  907. yAxis: [yAxis],
  908. xAxis,
  909. tooltip
  910. }
  911. }
  912. /* 商品价格曲线/利润曲线
  913. */
  914. const commodityChartRenderData = ref<any>({})
  915. const initCommodityData = (data: { XDataList: any[]; YDataList: any; EdbInfoList: any; ChartInfo: any; DataResp?:any }) => {
  916. const { XDataList,YDataList,EdbInfoList,ChartInfo,DataResp } = data;
  917. commodityChartRenderData.value = {
  918. commodityEdbList: EdbInfoList,
  919. commodityChartData: ChartInfo.Source===5?DataResp.YDataList:YDataList,
  920. commodityXData: ChartInfo.Source===5?DataResp.XDataList:XDataList
  921. }
  922. if(ChartInfo.Source===5) {
  923. state.chartInfo = {
  924. ...state.chartInfo,
  925. ProfitName: DataResp.ProfitName,
  926. ProfitNameEn: DataResp.ProfitNameEn
  927. }
  928. }
  929. state.chartLimit = {
  930. min: Number(ChartInfo.LeftMin),
  931. max: Number(ChartInfo.LeftMax)
  932. }
  933. return setCommodityChart();
  934. }
  935. /* 商品价格曲线设置 绘图逻辑同奇怪柱形图*/
  936. const setCommodityChart = () => {
  937. const {chartLimit,chartInfo} = state;
  938. const { commodityChartData,commodityXData,commodityEdbList } = commodityChartRenderData.value;
  939. let seriesData:any[] = [];
  940. const data = _.cloneDeep(commodityChartData);
  941. /* 主题样式*/
  942. const chartTheme = chartInfo.ChartThemeStyle ? JSON.parse(chartInfo.ChartThemeStyle) : null;
  943. //x轴
  944. let xAxis = {
  945. ...scatterXAxis,
  946. categories: commodityXData.map(_ => language.value === 'ch' ? _.Name:_.NameEn),
  947. tickWidth: 1,
  948. labels: {
  949. style: {
  950. ...chartTheme&&chartTheme.xAxisOptions.style
  951. }
  952. }
  953. }
  954. const { max,min } = chartLimit;
  955. //y轴
  956. let yAxis = {
  957. ...basicYAxis,
  958. title: {
  959. text: language.value === 'ch' ? commodityEdbList[0].Unit : commodityEdbList[0].UnitEn,
  960. align: 'high',
  961. rotation: 0,
  962. y: -12,
  963. textAlign: 'left',
  964. reserveSpace: false,
  965. style:{
  966. ...chartTheme&&chartTheme.yAxisOptions.style
  967. },
  968. },
  969. labels: {
  970. formatter: function (ctx:any) {
  971. let val = ctx.value;
  972. return val;
  973. },
  974. align: 'center',
  975. style:{
  976. ...chartTheme&&chartTheme.yAxisOptions.style
  977. },
  978. },
  979. min: Number(min),
  980. max: Number(max),
  981. opposite: false,
  982. tickWidth: 1,
  983. }
  984. //数据列
  985. data.forEach((item: { Value: number[]; Name: string; Date: string; Color: string;NameEn: string,XEdbInfoIdList: number[],NoDataEdbList: number[] }) => {
  986. //处理首或/尾全是无效数据的以null填充
  987. let filterData = filterInvalidData(item)
  988. let serie_item = {
  989. data: filterData,
  990. type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
  991. dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
  992. yAxis: 0,
  993. name: language.value === 'ch' ? item.Name : item.NameEn,
  994. color: item.Color,
  995. chartType: 'linear',
  996. lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 3,
  997. marker: {
  998. enabled: false
  999. }
  1000. };
  1001. seriesData.push(serie_item)
  1002. })
  1003. //tooltip
  1004. let tooltip = {
  1005. formatter: function() {
  1006. const ctx: any = this;
  1007. let str: string = '';
  1008. if(language.value === 'ch') {
  1009. ctx.points.forEach((item: { series:{name: string},y: number,color: string }) => {
  1010. let obj_item = data.find((_:any) => _.Name === item.series.name);
  1011. let index = commodityXData.findIndex(_ => _.Name === ctx.x);
  1012. //合约显示
  1013. let haveContract = obj_item.XEdbInfoIdList[index];
  1014. if(haveContract) {
  1015. // 利润曲线指标名
  1016. let edb_name = chartInfo.Source === 5
  1017. ? (index === 0 ? obj_item.NameList[index] : `${chartInfo.ProfitName}(${obj_item.NameList[index]})`)
  1018. : commodityEdbList.find(_ => _.EdbInfoId === obj_item.XEdbInfoIdList[index]).EdbName;
  1019. str+=`<b>${ edb_name }</b>`
  1020. if(!obj_item.NoDataEdbList.includes(obj_item.XEdbInfoIdList[index])) {
  1021. str += `<br><span style="color:${item.color}">\u25CF</span>${obj_item.Date}: ${item.y}<br>`
  1022. }else {
  1023. str += `<br><span style="color:${item.color}">\u25CF</span>${obj_item.Date}: 无<br>`
  1024. }
  1025. }
  1026. })
  1027. }else {
  1028. ctx.points.forEach((item: { series:{name: string},y: number,color: string }) => {
  1029. let obj_item = data.find((_: any) => _.NameEn === item.series.name);
  1030. let index = commodityXData.findIndex(_ => _.NameEn === ctx.x);
  1031. let haveContract = obj_item.XEdbInfoIdList[index];
  1032. if(haveContract) {
  1033. let edb_name = chartInfo.Source === 5
  1034. ? (index === 0 ? obj_item.NameList[index] : `${chartInfo.ProfitNameEn}(${obj_item.NameList[index]})`)
  1035. : commodityEdbList.find(_ => _.EdbInfoId === obj_item.XEdbInfoIdList[index]).EdbNameEn;
  1036. str+=`<b>${ edb_name }</b>`
  1037. if(!obj_item.NoDataEdbList.includes(obj_item.XEdbInfoIdList[index])) {
  1038. str += `<br><span style="color:${item.color}">\u25CF</span>${obj_item.Date}: ${item.y}<br>`
  1039. }else {
  1040. str += `<br><span style="color:${item.color}">\u25CF</span>${obj_item.Date}: 无<br>`
  1041. }
  1042. }
  1043. })
  1044. }
  1045. return str || '无合约'
  1046. },
  1047. shared: true
  1048. }
  1049. return {
  1050. title: {
  1051. text:''
  1052. },
  1053. series: seriesData,
  1054. yAxis: [ yAxis ],
  1055. xAxis,
  1056. tooltip
  1057. }
  1058. };
  1059. /* 处理无效数据为null */
  1060. const filterInvalidData = (item:{ Value: number[]; Name: string; Date: string; Color: string;NameEn: string,XEdbInfoIdList: number[],NoDataEdbList: number[] })=> {
  1061. let validateArr = item.XEdbInfoIdList.filter(_ => _&&!item.NoDataEdbList.includes(_));
  1062. let first_index = item.XEdbInfoIdList.findIndex(_ => _ === validateArr[0]);
  1063. let last_index = item.XEdbInfoIdList.findIndex(_ => _ === validateArr[validateArr.length-1]);
  1064. console.log('first_index',first_index)
  1065. console.log('last_index',last_index)
  1066. let arr = item.Value.map((item,index:number) => {
  1067. if(index < first_index || index > last_index) {
  1068. return null
  1069. }else {
  1070. return item
  1071. }
  1072. })
  1073. return arr;
  1074. }
  1075. /* 相关性图表 */
  1076. const initRelevanceChartData=(data)=>{
  1077. /* 主题样式*/
  1078. const chartTheme = state.chartInfo.ChartThemeStyle ? JSON.parse(state.chartInfo.ChartThemeStyle) : null;
  1079. const relevanceUnitEnMap={
  1080. '年': 'Year',
  1081. '季': 'Season',
  1082. '月': 'Month',
  1083. '周': 'Week',
  1084. '天': 'Day',
  1085. }
  1086. // 处理X轴
  1087. let xAxis={
  1088. categories: data.ChartInfo.Source===3 ? data.XEdbIdValue : data.DataResp.XDateTimeValue,
  1089. tickWidth: 1,
  1090. title: {
  1091. text: data.ChartInfo.Source===3 ? (language.value=='ch'?`期数(${data.CorrelationChartInfo.LeadUnit})`:`stage(${relevanceUnitEnMap[data.CorrelationChartInfo.LeadUnit]})`):null,
  1092. align: 'high',
  1093. rotation: 0,
  1094. style: {
  1095. ...chartTheme&&chartTheme.xAxisOptions.style
  1096. }
  1097. },
  1098. labels: {
  1099. style: {
  1100. ...chartTheme&&chartTheme.xAxisOptions.style
  1101. }
  1102. },
  1103. tickInterval: 1,
  1104. offset:0,
  1105. tickmarkPlacement:'on'
  1106. }
  1107. // 处理Y轴
  1108. let yAxis={
  1109. ...basicYAxis,
  1110. title: {
  1111. text: language.value=='ch'?'相关性系数':'Correlation coefficient',
  1112. align: 'high',
  1113. rotation: 0,
  1114. y: -12,
  1115. textAlign: 'left',
  1116. reserveSpace: false,
  1117. style:{
  1118. ...chartTheme&&chartTheme.yAxisOptions.style
  1119. },
  1120. },
  1121. labels: {
  1122. formatter: function (ctx) {
  1123. let val = ctx.value;
  1124. return val;
  1125. },
  1126. align: 'center',
  1127. style:{
  1128. ...chartTheme&&chartTheme.yAxisOptions.style
  1129. },
  1130. },
  1131. opposite: false,
  1132. tickWidth: 1,
  1133. }
  1134. //处理series
  1135. let seriesData:any[]=[]
  1136. data.YDataList.forEach(item=>{
  1137. let serie_item = {
  1138. data: item.Value,
  1139. type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
  1140. dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
  1141. yAxis: 0,
  1142. name: language.value=='ch'?data.ChartInfo.ChartName:data.ChartInfo.ChartNameEn,
  1143. color: item.Color,
  1144. chartType: 'linear',
  1145. lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth) || 3,
  1146. marker: {
  1147. enabled: false
  1148. }
  1149. };
  1150. seriesData.push(serie_item)
  1151. })
  1152. const { LeadValue,LeadUnit } = data.CorrelationChartInfo;
  1153. let tooltip = {
  1154. formatter: function() {
  1155. const that:any = this;
  1156. let str='';
  1157. if(language.value=='ch'){
  1158. str = `<p>相关性系数:${that.y.toFixed(4)}</p><br><p>领先${ data.ChartInfo.Source===3 ?that.x+'期' : LeadValue+LeadUnit}</p>`
  1159. }else{
  1160. str = `<p>Correlation coefficient:${that.y.toFixed(4)}</p><br><p>lead${ data.ChartInfo.Source===3 ? that.x+'stage' : LeadValue+relevanceUnitEnMap[LeadUnit]}</p>`
  1161. }
  1162. return str
  1163. },
  1164. }
  1165. return {
  1166. isRelevanceChart:data.ChartInfo.Source===3,
  1167. title: {
  1168. text:'',
  1169. },
  1170. series: seriesData,
  1171. yAxis: [yAxis] ,
  1172. xAxis:xAxis,
  1173. tooltip
  1174. }
  1175. }
  1176. /* 统计特征
  1177. 标准差
  1178. 百分比
  1179. 频率
  1180. 滚动相关性*/
  1181. const statisticFrequencyRenderData = ref<any>({});
  1182. const initStatisticChartData = (data: { DataResp:any,ChartInfo:any,CorrelationChartInfo:any }) => {
  1183. if(data.ChartInfo.Source === 9) { //频率图
  1184. statisticFrequencyRenderData.value = data.DataResp;
  1185. return setStatisticFrequency();
  1186. }else {
  1187. state.dataList = [data.DataResp];
  1188. if(data.ChartInfo.Source === 4) statisticFrequencyRenderData.value = data.CorrelationChartInfo;
  1189. return setDefaultLineOptions();
  1190. }
  1191. }
  1192. /* 统计频率图 */
  1193. const setStatisticFrequency = () => {
  1194. const { DataList,LeftMaxValue,LeftMinValue,RightMaxValue,RightMinValue } = statisticFrequencyRenderData.value
  1195. if(!DataList){
  1196. return
  1197. }
  1198. /* 主题样式*/
  1199. const chartTheme = state.chartInfo.ChartThemeStyle ? JSON.parse(state.chartInfo.ChartThemeStyle) : null;
  1200. let xAxis = {
  1201. ...scatterXAxis,
  1202. tickWidth: 1,
  1203. labels: {
  1204. style: {
  1205. ...chartTheme&&chartTheme.xAxisOptions.style
  1206. }
  1207. }
  1208. }
  1209. //y和系列
  1210. let yAxis:any[] = [],series:any[] = [];
  1211. DataList.forEach((item,index) => {
  1212. let y_item = {
  1213. ...basicYAxis,
  1214. title: {
  1215. text: language.value === 'ch' ? item.Unit : item.UnitEn,
  1216. align: 'high',
  1217. rotation: 0,
  1218. y: -12,
  1219. reserveSpace: false,
  1220. style:{
  1221. ...chartTheme&&chartTheme.yAxisOptions.style
  1222. },
  1223. },
  1224. labels: {
  1225. style:{
  1226. ...chartTheme&&chartTheme.yAxisOptions.style
  1227. },
  1228. },
  1229. opposite: item.IsAxis===1?false:true,
  1230. min: index===0? Number(LeftMinValue):Number(RightMinValue),
  1231. max: index===0? Number(LeftMaxValue):Number(RightMaxValue),
  1232. tickWidth: 1,
  1233. }
  1234. let series_item = {
  1235. data: item.Value.map(_ =>[_.X,_.Y]),
  1236. dashStyle: (chartTheme&&chartTheme.lineOptions.dashStyle)||'Solid',
  1237. type: (chartTheme&&chartTheme.lineOptions.lineType) || 'spline',
  1238. yAxis: index,
  1239. name: language.value === 'ch' ? item.Name : item.NameEn,
  1240. color: item.Color,
  1241. lineWidth: (chartTheme&&chartTheme.lineOptions.lineWidth)||3,
  1242. chartType: 'linear',
  1243. zIndex:1
  1244. }
  1245. series.push(series_item);
  1246. yAxis.push(y_item)
  1247. })
  1248. let tooltip = {
  1249. formatter: function() {
  1250. let that:any = this;
  1251. let xList = DataList[0].Value.map(_ =>_.X);
  1252. let step = xList[1]-xList[0];
  1253. let data_interval = `[${Number(that.x).toFixed(2)},${Number(that.x+step).toFixed(2)}]`;
  1254. let str=`<b>${ data_interval }</b>`;
  1255. that.points.forEach(item => {
  1256. str += `<br><span style="color:${item.color}">\u25CF</span>${item.series.name}: ${item.y}%`
  1257. })
  1258. return str
  1259. },
  1260. shared: true
  1261. }
  1262. return {
  1263. title: {
  1264. text:''
  1265. },
  1266. tooltip,
  1267. series,
  1268. yAxis,
  1269. xAxis
  1270. }
  1271. }
  1272. /* 拟合方程曲线 曲线图绘图逻辑*/
  1273. const initFittingEquation = (data) => {
  1274. state.dataList = [data.DataResp];
  1275. return setDefaultLineOptions();
  1276. }
  1277. /* 跨品种分析 */
  1278. const crossVarietyChartRenderData = ref<any>({})
  1279. const initCrossVarietyChartData = (data:{ DataResp:any,ChartInfo:any,EdbInfoList:any }) => {
  1280. state.dataList = data.EdbInfoList;
  1281. crossVarietyChartRenderData.value = data.DataResp;
  1282. state.chartLimit.min=Number(data.DataResp.YMinValue)
  1283. state.chartLimit.max=Number(data.DataResp.YMaxValue)
  1284. state.chartLimit.x_min=Number(data.DataResp.XMinValue)
  1285. state.chartLimit.x_max=Number(data.DataResp.XMaxValue)
  1286. //二次校验英文配置是否完整
  1287. if(routeQuery.value.fromPage === 'en' && language.value==='en') {
  1288. const { XNameEn,YNameEn,DataList } = data.DataResp;
  1289. let isAllEn = true;
  1290. let haveOneNoEn = DataList.some(_ => !_.NameEn);
  1291. if(!XNameEn || !YNameEn || haveOneNoEn) isAllEn = false;
  1292. language.value = isAllEn ? 'en' : 'ch';
  1293. }
  1294. return setCrossVarietyChart()
  1295. }
  1296. /* 跨品种分析 */
  1297. const setCrossVarietyChart = () => {
  1298. const { chartLimit,dataList,chartInfo } = state;
  1299. /* 主题样式*/
  1300. const chartTheme = chartInfo.ChartThemeStyle ? JSON.parse(chartInfo.ChartThemeStyle) : null;
  1301. const { min,max,x_min,x_max } = chartLimit;
  1302. const { DataList,XName,YName,XNameEn,YNameEn } = crossVarietyChartRenderData.value;
  1303. //y轴
  1304. let yAxis = {
  1305. ...basicYAxis,
  1306. title: {
  1307. text: language.value === 'ch' ? YName : YNameEn,
  1308. align: 'middle',
  1309. style: {
  1310. ...chartTheme&&chartTheme.xAxisOptions.style
  1311. }
  1312. },
  1313. labels: {
  1314. style: {
  1315. ...chartTheme&&chartTheme.xAxisOptions.style
  1316. }
  1317. },
  1318. opposite: false,
  1319. reversed: false,
  1320. min: Number(min),
  1321. max: Number(max),
  1322. tickWidth: 1,
  1323. }
  1324. // x轴
  1325. let xAxis = {
  1326. ...scatterXAxis,
  1327. title: {
  1328. text: language.value === 'ch' ? XName : XNameEn,
  1329. align: 'middle',
  1330. style: {
  1331. ...chartTheme&&chartTheme.xAxisOptions.style
  1332. }
  1333. },
  1334. labels: {
  1335. style: {
  1336. ...chartTheme&&chartTheme.xAxisOptions.style
  1337. }
  1338. },
  1339. min: Number(x_min),
  1340. max: Number(x_max),
  1341. }
  1342. //数据列
  1343. let series:any[] = [];
  1344. DataList.forEach(item => {
  1345. //数据列
  1346. let series_item = {
  1347. data: [] as any[],
  1348. type: 'scatter',
  1349. name: language.value === 'ch' ? item.Name : item.NameEn,
  1350. color: item.Color,
  1351. lineWidth: 0,
  1352. chartType: 'linear',
  1353. zIndex:1
  1354. }
  1355. item.CoordinatePointData.forEach(_ => {
  1356. series_item.data.push({x: _.X,y: _.Y,})
  1357. })
  1358. series.push(series_item);
  1359. })
  1360. let tooltip = {
  1361. formatter: function() {
  1362. let that:any = this;
  1363. let str = '';
  1364. if(language.value === 'ch') {
  1365. let series_obj = DataList.find(_ => _.Name === that.series.name);
  1366. let ponit_obj = series_obj.CoordinatePointData.find(_ => _.X ===that.x && _.Y===that.y);
  1367. let xEdbInfo = dataList.find(_ => _.EdbInfoId===ponit_obj.XEdbInfoId);
  1368. let yEdbInfo = dataList.find(_ => _.EdbInfoId===ponit_obj.YEdbInfoId);
  1369. str=`<b>${ that.series.name }</b>`;
  1370. str += `<br><span style="color:${that.color}">\u25CF</span>${xEdbInfo.EdbName}: ${that.x} ${ponit_obj.XDate}<br>`;
  1371. str += `<span style="color:${that.color}">\u25CF</span>${yEdbInfo.EdbName}: ${that.y} ${ponit_obj.YDate}`;
  1372. }else {
  1373. let series_obj = DataList.find(_ => _.NameEn === that.series.name);
  1374. let ponit_obj = series_obj.CoordinatePointData.find(_ => _.X ===that.x && _.Y===that.y);
  1375. let xEdbInfo = dataList.find(_ => _.EdbInfoId===ponit_obj.XEdbInfoId);
  1376. let yEdbInfo = dataList.find(_ => _.EdbInfoId===ponit_obj.YEdbInfoId);
  1377. str=`<b>${ that.series.name }</b>`;
  1378. str += `<br><span style="color:${that.color}">\u25CF</span>${xEdbInfo.EdbNameEn}: ${that.x} ${ponit_obj.XDate}<br>`;
  1379. str += `<span style="color:${that.color}">\u25CF</span>${yEdbInfo.EdbNameEn}: ${that.y} ${ponit_obj.YDate}`;
  1380. }
  1381. return str
  1382. }
  1383. }
  1384. return {
  1385. title: {
  1386. text:''
  1387. },
  1388. series,
  1389. yAxis: [yAxis],
  1390. xAxis,
  1391. tooltip
  1392. }
  1393. }
  1394. // 曲线图x轴显示计算年限差 >1年 显示年/月 <=1 显示月/日
  1395. const xTimeDiffer = () => {
  1396. const end_date = state.chartInfo.DateType === 5
  1397. ? state.chartInfo.EndDate
  1398. : state.chartInfo.DateType === 6
  1399. ? new Date()
  1400. : '';
  1401. //年限差
  1402. const year_differ = moment(end_date).diff(
  1403. moment(state.chartInfo.StartDate),
  1404. 'years',
  1405. true
  1406. );
  1407. // console.log(year_differ)
  1408. if ([5, 6].includes(state.chartInfo.DateType) && year_differ <= 1) {
  1409. return true
  1410. } else {
  1411. return false
  1412. }
  1413. }
  1414. /* 设置x轴步长 刻度数量多一点 */
  1415. const setXaxisStep = (timestamp: number) => {
  1416. return timestamp / 6;
  1417. }
  1418. /* 指标顺序调整 IsAxis: 0右轴 1左轴 2右2*/
  1419. const changeEdbOrder = (data: any[]) => {
  1420. // 左轴指标
  1421. let left_edbs = data.filter(_ => _.IsAxis===1);
  1422. //右轴指标
  1423. let right_edbs = data.filter(_ => !_.IsAxis);
  1424. // 右2轴指标
  1425. let right_two_edbs = data.filter(_ => _.IsAxis === 2);
  1426. // 按 左 右 右2顺序排列
  1427. return [left_edbs,right_edbs,right_two_edbs].flat(Infinity);
  1428. }
  1429. /* 拼接动态的指标名称小标签 */
  1430. const concatDynamicTag = (
  1431. { IsAxis, IsOrder, EdbInfoType, LeadValue, LeadUnit }: IDataProps,
  1432. lang: String = "ch"
  1433. ): string => {
  1434. // IsAxis左轴1 右轴0 2右2轴
  1435. //IsOrder正序false 逆序true
  1436. //EdbInfoType是否是领先指标
  1437. const axisLabelMap: any =
  1438. lang == "ch"
  1439. ? {
  1440. 0: "右轴",
  1441. 2: "右2轴",
  1442. }
  1443. : {
  1444. 0: "RHS",
  1445. 2: "2-RHS",
  1446. };
  1447. const orderLabelMap: any =
  1448. lang == "ch"
  1449. ? {
  1450. 1: "逆序",
  1451. }
  1452. : {
  1453. 1: "REV",
  1454. };
  1455. const edbInfoMap: any =
  1456. lang == "ch"
  1457. ? {
  1458. 0: "领先",
  1459. }
  1460. : {
  1461. 0: "Lead",
  1462. };
  1463. const leadUnitEnMap: any = {
  1464. 年: "Y",
  1465. 季: "Q",
  1466. 月: "M",
  1467. 周: "W",
  1468. 天: "D",
  1469. };
  1470. //英文领先单位转换
  1471. const edbLeadUnit = lang == "ch" ? LeadUnit : leadUnitEnMap[LeadUnit];
  1472. let axis_tag = axisLabelMap[IsAxis] || "";
  1473. //逆序拼接
  1474. let order_tag = orderLabelMap[Number(IsOrder)]
  1475. ? `${axis_tag ? "," : ""}${orderLabelMap[Number(IsOrder)]}`
  1476. : "";
  1477. //领先拼接
  1478. let edb_tag = edbInfoMap[EdbInfoType]
  1479. ? `${axis_tag || order_tag ? "," : ""}${
  1480. edbInfoMap[EdbInfoType]
  1481. } ${LeadValue}${edbLeadUnit}`
  1482. : "";
  1483. return axis_tag || order_tag || edb_tag
  1484. ? `(${axis_tag}${order_tag}${edb_tag})`
  1485. : "";
  1486. };
  1487. /* 预测配置 分区 */
  1488. const getPredictParams = (
  1489. { LatestDate, MoveLatestDate, PredictChartColor, ChartStyle }: IDataProps,
  1490. chartStyle = ""
  1491. ) => {
  1492. return {
  1493. zoneAxis: "x",
  1494. zones: [
  1495. {
  1496. value: new Date(MoveLatestDate || LatestDate).getTime() + 1,
  1497. },
  1498. {
  1499. dashStyle: "ShortDot",
  1500. color:
  1501. ChartStyle === "column" || chartStyle === "column"
  1502. ? "transparent"
  1503. : PredictChartColor,
  1504. },
  1505. ],
  1506. };
  1507. };
  1508. /* 季节图预测数据 年份=分割点年份做分割 年份>分割点年份全为预测 */
  1509. const getSeasonPredictParams = (timestamp: number) => {
  1510. return timestamp
  1511. ? {
  1512. zoneAxis: "x",
  1513. zones: [
  1514. {
  1515. value: new Date(timestamp).getTime() + 1,
  1516. },
  1517. {
  1518. dashStyle: "ShortDot",
  1519. },
  1520. ],
  1521. }
  1522. : {};
  1523. };
  1524. /* 处理轴的标识线结构 在指定轴位置上拼接标识线
  1525. 0:右轴 1:左轴 2:右2轴 x轴固定3
  1526. axisType表示x轴类型 处理时间轴的值 datetime/null
  1527. */
  1528. const setAxisPlotLines = (axis: number, axisType: any = null) => {
  1529. const { MarkersLines, ChartType } = state.chartInfo;
  1530. if (!MarkersLines) return [];
  1531. let markerLines = JSON.parse(MarkersLines);
  1532. let arr = markerLines.filter((_) => _.isShow && _.axis === axis);
  1533. let plotLines = arr.map((_) => {
  1534. //是否是x时间轴
  1535. let isXDateAxis = axis === 3 && axisType === "datetime";
  1536. let markerValue:number;
  1537. if (isXDateAxis) {
  1538. //季节图x轴额外拼个年份
  1539. let nowYear = ChartType===2 ? new Date(state.dataList[0].DataList[1].DataList
  1540. [0].DataTimestamp).getFullYear() : '';
  1541. markerValue =
  1542. ChartType === 2
  1543. ? new Date(`${nowYear}-${_.value}`).getTime()
  1544. : new Date(_.value).getTime();
  1545. } else {
  1546. markerValue = Number(_.value);
  1547. }
  1548. return {
  1549. value: markerValue,
  1550. dashStyle: _.dashStyle,
  1551. width: Number(_.lineWidth),
  1552. color: _.color,
  1553. label: {
  1554. text: _.text || "",
  1555. verticalAlign: _.textPosition,
  1556. style: {
  1557. color: _.textColor,
  1558. fontSize: _.textFontSize,
  1559. },
  1560. },
  1561. };
  1562. });
  1563. return plotLines;
  1564. };
  1565. /* 处理标识区拼接 axisType表示x轴类型处理时间轴的值 datetime/null */
  1566. const setAxisPlotAreas = (axis: number, axisType: any = null) => {
  1567. const { MarkersAreas, ChartType } = state.chartInfo;
  1568. if (!MarkersAreas) return [];
  1569. let markerAreas = JSON.parse(MarkersAreas);
  1570. let arr = markerAreas.filter((_) => _.isShow && _.axis === axis);
  1571. let plotBands = arr.map((_) => {
  1572. //是否是x时间轴
  1573. let isXDateAxis = axis === 3 && axisType === "datetime";
  1574. let fromMarkerValue:number, toMarkerValue:number;
  1575. if (isXDateAxis) {
  1576. //季节图x轴额外拼个年份
  1577. let nowYear = ChartType===2 ? new Date(state.dataList[0].DataList[1].DataList
  1578. [0].DataTimestamp).getFullYear() : '';
  1579. fromMarkerValue =
  1580. ChartType === 2
  1581. ? new Date(`${nowYear}-${_.fromValue}`).getTime()
  1582. : new Date(_.fromValue).getTime();
  1583. toMarkerValue =
  1584. ChartType === 2
  1585. ? new Date(`${nowYear}-${_.toValue}`).getTime()
  1586. : new Date(_.toValue).getTime();
  1587. } else {
  1588. fromMarkerValue = Number(_.fromValue);
  1589. toMarkerValue = Number(_.toValue);
  1590. }
  1591. //默认label有些偏移 重新归正下
  1592. let positionMapValue = {
  1593. 'top': 12,
  1594. 'middle': 0,
  1595. 'bottom': -10
  1596. }
  1597. return {
  1598. from: fromMarkerValue,
  1599. to: toMarkerValue,
  1600. color: _.color,
  1601. label: {
  1602. text: _.text || "",
  1603. verticalAlign: _.textPosition,
  1604. y: positionMapValue[_.textPosition],
  1605. style: {
  1606. color: _.textColor,
  1607. fontSize: _.textFontSize,
  1608. },
  1609. },
  1610. };
  1611. });
  1612. return plotBands;
  1613. };