echartOptions.js 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275
  1. import * as echarts from 'echarts';
  2. export const getAreaOptions = ({ xAxisData, seriesList }) => {
  3. const series = seriesList.map((data, index) => {
  4. const i = !index;
  5. return {
  6. name: i ? '过去' : '未来',
  7. type: 'line',
  8. symbol: 'circle',
  9. showAllSymbol: true,
  10. symbolSize: 5,
  11. smooth: true,
  12. lineStyle: {
  13. normal: {
  14. width: 2,
  15. color: i ? "rgba(25,163,223,1)" : "rgba(36,175,83,1)", // 线条颜色
  16. },
  17. borderColor: 'rgba(0,0,0,.4)',
  18. },
  19. itemStyle: {
  20. color: i ? "#b7f9ff" : "#fff",
  21. borderColor: i ? "#2185da" : "#2ee055",
  22. borderWidth: 1,
  23. shadowColor: 'rgba(22, 137, 229)',
  24. shadowBlur: 1
  25. },
  26. areaStyle: {
  27. normal: {
  28. color: new echarts.graphic.LinearGradient(0, 0, 0, 1, [{
  29. offset: 0,
  30. color: i ? "rgba(25,163,223,.3)" : "rgba(48, 209, 136,.3)"
  31. },
  32. {
  33. offset: 1,
  34. color: i ? "rgba(25,163,223, 0)" : "rgba(48, 209, 136, 0)"
  35. }
  36. ], false),
  37. shadowColor: 'rgba(25,163,223, 0.5)',
  38. shadowBlur: 20
  39. }
  40. },
  41. z: i ? 3 : 2,
  42. data
  43. }
  44. })
  45. return {
  46. backgroundColor: '#fff',
  47. tooltip: {
  48. trigger: "axis",
  49. show: true,
  50. formatter: function (params) {
  51. const [item] = params.filter(item => item.value);
  52. const color = item.dataIndex <= 5 ? '#2185da' : '#2ee055'
  53. return `
  54. <div class="text-[12px]">
  55. <p>时间:${item.name + ':00'}</p>
  56. <p class="flex items-center space-x-[6px]">
  57. <span class="block w-[6px] h-[6px] rounded-full bg-[${color}]"></span>
  58. <span>${Number(item.value.toFixed(2))} mg/L</span>
  59. </p>
  60. </div>
  61. `
  62. },
  63. },
  64. grid: {
  65. top: '10',
  66. left: 60,
  67. right: '5%',
  68. bottom: '15%',
  69. },
  70. xAxis: [{
  71. type: 'category',
  72. boundaryGap: false,
  73. axisLine: {
  74. show: true,
  75. lineStyle: {
  76. color: '#e0e6f1'
  77. },
  78. },
  79. axisLabel: {
  80. textStyle: {
  81. color: '#1F2328',
  82. fontSize: 12,
  83. },
  84. formatter: function (data) {
  85. return data + ":00"
  86. }
  87. },
  88. splitLine: {
  89. show: true,
  90. lineStyle: {
  91. type: 'dashed',
  92. },
  93. },
  94. axisTick: {
  95. show: false,
  96. },
  97. data: xAxisData
  98. }],
  99. yAxis: [{
  100. name: '',
  101. nameTextStyle: {
  102. fontSize: 12,
  103. align: 'right',
  104. padding: [10, 5],
  105. },
  106. min: 0,
  107. splitLine: {
  108. show: true,
  109. lineStyle: {
  110. type: 'dashed',
  111. },
  112. },
  113. axisLine: {
  114. show: false,
  115. lineStyle: {
  116. color: "#233653"
  117. }
  118. },
  119. axisLabel: {
  120. show: true,
  121. textStyle: {
  122. color: '#1F2328',
  123. // align: 'right',
  124. padding: 0
  125. },
  126. formatter: function (value) {
  127. if (value === 0) {
  128. return value
  129. }
  130. return value
  131. }
  132. },
  133. axisTick: {
  134. show: false,
  135. },
  136. }],
  137. series
  138. }
  139. }
  140. export const getOrderAreaOptions = ({ xAxisData, yAxisData }) => {
  141. const color = [
  142. '#0FFEFF',
  143. '#FFCA06',
  144. '#3DD784',
  145. '#3D80FF',
  146. '#D35AE8',
  147. '#EC2E72',
  148. '#8B4513',
  149. ];
  150. const series = [];
  151. yAxisData.map((item, index) => {
  152. const itemColor = color[index];
  153. series.push({
  154. name: item.title,
  155. type: 'line',
  156. symbol: 'circle',
  157. showAllSymbol: true,
  158. smooth: true,
  159. symbolSize: 5,
  160. lineStyle: {
  161. width: 2,
  162. color: itemColor,
  163. borderColor: 'rgba(0,0,0,.4)',
  164. },
  165. itemStyle: {
  166. color: itemColor,
  167. borderColor: itemColor,
  168. borderWidth: 3,
  169. },
  170. tooltip: {
  171. valueFormatter: function (value) {
  172. return value + 'mg/L';
  173. },
  174. },
  175. data: item.list,
  176. });
  177. });
  178. return {
  179. series,
  180. tooltip: {
  181. trigger: 'axis',
  182. },
  183. backgroundColor: '#fff',
  184. grid: {
  185. top: 30,
  186. left: 40,
  187. right: 40,
  188. bottom: 30,
  189. },
  190. legend: {
  191. orient: 'horizontal',
  192. fontSize: '20px',
  193. icon: 'rect',
  194. itemWidth: 10,
  195. itemHeight: 2,
  196. formatter: ['{a|{name}}'].join('\n'),
  197. textStyle: {
  198. rich: {
  199. a: {
  200. width: 20,
  201. color: '#666',
  202. fontSize: 10,
  203. lineHeight: 18,
  204. },
  205. },
  206. },
  207. right: '4',
  208. top: '6',
  209. },
  210. xAxis: [{
  211. type: "category",
  212. axisLabel: {
  213. color: "#666",
  214. fontSize: 12,
  215. },
  216. axisLine: {
  217. show: true,
  218. lineStyle: {
  219. color: "rgba(127, 214, 255, .4)",
  220. },
  221. },
  222. splitLine: {
  223. show: true,
  224. interval: '0',
  225. lineStyle: {
  226. type: 'dashed',
  227. },
  228. },
  229. axisTick: {
  230. show: false,
  231. },
  232. boundaryGap: false,
  233. data: xAxisData
  234. }],
  235. yAxis: [{
  236. name: '',
  237. nameTextStyle: {
  238. fontSize: 12,
  239. align: 'right',
  240. padding: [10, 5],
  241. },
  242. min: 0,
  243. splitLine: {
  244. show: true,
  245. lineStyle: {
  246. type: 'dashed',
  247. },
  248. },
  249. axisLine: {
  250. show: false,
  251. lineStyle: {
  252. color: "#233653"
  253. }
  254. },
  255. axisLabel: {
  256. show: true,
  257. color: '#666',
  258. padding: 0,
  259. formatter: function (value) {
  260. return value
  261. }
  262. },
  263. axisTick: {
  264. show: false,
  265. },
  266. }],
  267. }
  268. }