chartOptions.ts 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. import { IChart } from '@/types';
  2. export const defaultOpts = {
  3. //图表配置
  4. chart: {
  5. spacing: [2,10,2,10],
  6. },
  7. time: {
  8. useUTC: false,
  9. },
  10. title: {
  11. text: '',
  12. },
  13. exporting: {
  14. enabled: false,
  15. },
  16. //默认颜色配置
  17. colors: [
  18. '#00f',
  19. '#f00',
  20. '#999',
  21. '#000',
  22. '#7cb5ec',
  23. '#90ed7d',
  24. '#f7a35c',
  25. '#8085e9',
  26. '#f15c80',
  27. '#e4d354',
  28. '#2b908f',
  29. '#f45b5b',
  30. '#91e8e1',
  31. ],
  32. //版权信息
  33. credits: { enabled: false },
  34. boost: {
  35. useGPUTranslations: true,
  36. seriesThreshold: 2
  37. },
  38. //数据列通用配置
  39. plotOptions: {
  40. series: {
  41. animation: false,
  42. turboThreshold: 0, //不限制数据点个数
  43. boostThreshold: 1,
  44. dataGrouping: {
  45. enabled: false,
  46. },//取消数据大自动数据合并
  47. },
  48. areaspline: {
  49. lineWidth: 1,
  50. stacking: 'normal',
  51. marker: {
  52. enabled: false,
  53. },
  54. // fillOpacity: 0.5,
  55. },
  56. column:{
  57. pointPadding: 0.05,
  58. stacking: 'normal',
  59. },
  60. scatter: {
  61. marker: {
  62. symbol: 'circle',
  63. radius: 5,
  64. states: {
  65. hover: {
  66. enabled: true,
  67. }
  68. }
  69. },
  70. states: {
  71. hover: {
  72. marker: {
  73. enabled: true
  74. }
  75. }
  76. },
  77. }
  78. },
  79. //范围选择器
  80. rangeSelector: {
  81. enabled: false,
  82. selected: 2,
  83. },
  84. //悬浮提示框
  85. tooltip: {
  86. split: false,
  87. shared: true,
  88. dateTimeLabelFormats: {
  89. // 时间格式化字符
  90. day: '%Y/%m/%d',
  91. week: '%m/%d',
  92. month: '%Y/%m',
  93. year: '%Y/%m',
  94. },
  95. xDateFormat: '%Y/%m/%d',
  96. // valueDecimals: 2,
  97. },
  98. //图例
  99. legend: {
  100. enabled: true,
  101. verticalAlign: 'top',
  102. margin: 5,
  103. // layout: 'vertical'
  104. },
  105. //滚动条
  106. scrollbar: {
  107. enabled: false,
  108. },
  109. //导航器
  110. navigator: {
  111. enabled: false,
  112. },
  113. xAxis: {
  114. tickPosition: 'inside',
  115. lineColor: '#bfbfbf',
  116. tickColor: '#bfbfbf',
  117. type: 'datetime',
  118. tickLength: 5,
  119. ordinal: false,
  120. dateTimeLabelFormats: {
  121. day: '%y/%m',
  122. week: '%y/%m',
  123. month: '%y/%m',
  124. year: '%y/%m',
  125. },
  126. },
  127. //默认y轴配置 用于季节图
  128. yAxis: {
  129. lineWidth: 1,
  130. lineColor: '#bfbfbf',
  131. tickColor: '#bfbfbf',
  132. offset: 0,
  133. opposite: false,
  134. reversed: false,
  135. visible: true,
  136. gridLineWidth: 0,
  137. tickWidth: 1,
  138. tickLength: 5,
  139. tickPosition: 'inside',
  140. endOnTick: false,
  141. startOnTick: false,
  142. showLastLabel: true,
  143. },
  144. };
  145. /* 季节性图配置 */
  146. export const seasonOptions = {
  147. //默认颜色配置
  148. colors: [
  149. '#4B0082',
  150. '#7FFFAA',
  151. '#FF4500',
  152. '#808000',
  153. '#EEE8AA',
  154. '#849EC1',
  155. '#8A4294',
  156. '#578B5A',
  157. '#FDA8C7',
  158. '#53B3FF',
  159. '#999999',
  160. '#000000',
  161. '#FFDF0C',
  162. '#FF0000',
  163. '#0033FF',
  164. ],
  165. };