echarts.js 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. import echarts from 'echarts'
  2. /**
  3. * @description 生成echarts 渐变色
  4. */
  5. export const generateLineGraphic = (startColor, endColor) => {
  6. return new echarts.graphic.LinearGradient(0, 0, 0, 1, [
  7. { offset: 0, color: startColor },
  8. { offset: 1, color: endColor }
  9. ])
  10. }
  11. /**
  12. * 生成分析图hover dom
  13. */
  14. export const generateDiagramsHoveDom = (options) => {
  15. return `
  16. <div style="
  17. padding: 0;
  18. border: 1px solid #f4f8ff;
  19. padding: 8px 16px;
  20. background: linear-gradient(180deg, rgba(238, 245, 255, 0.6) 0%, rgba(219, 233, 253, 0.6) 100%);
  21. border-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) 1;
  22. border-radius: 4px;
  23. color: #3d3d3d;
  24. font-size: 16px;
  25. font-weight: bold
  26. ">${options[0].value}</div>
  27. `
  28. }
  29. /**
  30. * @description 获取地图的hover item元素
  31. * @param {*} title
  32. * @param {*} value
  33. * @returns
  34. */
  35. export const getMapDataItem = (title, value = 0) => {
  36. return `
  37. <li style="width: 114px; height: 24px; background: #fff; margin-top: 8px; padding: 2px 8px; background: rgba(255, 255, 255, 0.9); border-radius: 2px; display: flex; justify-content: space-between" >
  38. <span style="color: #4E5969; font-size: 12px">${title}</span>
  39. <span style="color: #4E5969; font-size: 14px; font-weight: bold">${value}</span>
  40. </li>
  41. `
  42. }
  43. /**
  44. * @description
  45. */
  46. export const generateMapHoveDom = (options) => {
  47. let currentData = options.data
  48. if (currentData && typeof currentData.value === 'string') {
  49. currentData = JSON.parse(currentData.value)
  50. } else {
  51. currentData = [{}, {}, {}, {}]
  52. }
  53. return `
  54. <div style="padding: 8px 10px 10px; background: linear-gradient(180deg, rgba(238, 245, 255, 0.9) 0%, rgba(219, 233, 253, 0.9) 100%);
  55. border-image: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%) 1; border: 1px solid #fff; border-radius: 4px">
  56. <h1 style="color: #3D3D3D; font-size: 14px; line-height: 1.5; font-weight: bold">${options.name}</h1>
  57. <ul>
  58. ${getMapDataItem(currentData[0].dataType || '', currentData[0].dataNumber || 0)}
  59. ${getMapDataItem(currentData[1].dataType || '', currentData[1].dataNumber) || 0}
  60. ${getMapDataItem(currentData[2].dataType || '', currentData[2].dataNumber) || 0}
  61. ${getMapDataItem(currentData[3].dataType || '', currentData[3].dataNumber) || 0}
  62. </ul>
  63. </div>
  64. `
  65. }
  66. /**
  67. * @description 生成默认的统计数据
  68. */
  69. export const getDefaultBarData = () => {
  70. const res = {}
  71. for (let i = 1; i <= 12; i++) {
  72. res[i] = 0
  73. }
  74. return res
  75. }