1
0

HeightDistribution.vue 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185
  1. <template>
  2. <div>
  3. <div>
  4. <div ref="chart" class="item" style="height: 300px" />
  5. </div>
  6. </div>
  7. </template>
  8. <script>
  9. import * as echarts from "echarts";
  10. export default {
  11. data() {
  12. return {
  13. chart: null,
  14. timer: "",
  15. };
  16. },
  17. mounted() {
  18. // 初始化图表实例
  19. const chartDom = this.$refs.chart;
  20. // // 初始化图表实例
  21. this.chart = echarts.init(chartDom);
  22. this.initChart();
  23. },
  24. methods: {
  25. initChart(data) {
  26. const datalsit = [220, 182, 191, 234, 290, 330, 310];
  27. const sideData = datalsit.map((item) => item + 4.5);
  28. const option = {
  29. backgroundColor: "#041730",
  30. tooltip: {
  31. trigger: "axis",
  32. formatter: "{b} : {c}",
  33. axisPointer: {
  34. // 坐标轴指示器,坐标轴触发有效
  35. type: "shadow", // 默认为直线,可选为:'line' | 'shadow'
  36. },
  37. },
  38. title: {
  39. top: "5%",
  40. right: "2%",
  41. text: "单位:栋",
  42. textStyle: {
  43. align: "center",
  44. color: "#fff",
  45. fontSize: 12,
  46. },
  47. },
  48. grid: {
  49. right: "10px",
  50. },
  51. xAxis: {
  52. data: ["30m以下", "30~50m", "50~80m", "80~100m", "100m以上"],
  53. //坐标轴
  54. axisLine: {
  55. lineStyle: {
  56. color: "#3eb2e8"
  57. },
  58. },
  59. axisTick: {
  60. //y轴刻度线
  61. show: false,
  62. },
  63. //坐标值标注
  64. axisLabel: {
  65. show: true,
  66. textStyle: {
  67. color: "#fff",
  68. },
  69. },
  70. },
  71. yAxis: {
  72. //坐标轴
  73. axisLine: {
  74. show: false,
  75. },
  76. axisTick: {
  77. //y轴刻度线
  78. show: false,
  79. },
  80. //坐标值标注
  81. axisLabel: {
  82. show: true,
  83. textStyle: {
  84. color: "#fff",
  85. },
  86. },
  87. //分格线
  88. splitLine: {
  89. lineStyle: {
  90. color: "#4784e8",
  91. type: 'dashed'
  92. },
  93. },
  94. },
  95. series: [
  96. {
  97. tooltip: {
  98. show: false,
  99. },
  100. type: "bar",
  101. barWidth: 6,
  102. itemStyle: {
  103. normal: {
  104. color: new echarts.graphic.LinearGradient(
  105. 0,
  106. 1,
  107. 0,
  108. 0,
  109. [
  110. {
  111. offset: 0,
  112. color: "rgba(0,209,255, 1)", // 0% 处的颜色
  113. },
  114. {
  115. offset: 1,
  116. color: "rgba(0, 255,224, .87)", // 100% 处的颜色
  117. },
  118. ],
  119. false
  120. ),
  121. },
  122. },
  123. data: data,
  124. barGap: 0,
  125. },
  126. {
  127. type: "bar",
  128. barWidth: 20,
  129. itemStyle: {
  130. normal: {
  131. color: new echarts.graphic.LinearGradient(
  132. 0,
  133. 1,
  134. 0,
  135. 0,
  136. [
  137. {
  138. offset: 0,
  139. color: "rgba(0,209,255, 1)", // 0% 处的颜色
  140. },
  141. {
  142. offset: 1,
  143. color: "rgba(0, 255,224, .87)", // 100% 处的颜色
  144. },
  145. ],
  146. false
  147. ),
  148. },
  149. },
  150. barGap: 0,
  151. data: sideData,
  152. },
  153. {
  154. name: "b",
  155. tooltip: {
  156. show: false,
  157. },
  158. type: "pictorialBar",
  159. itemStyle: {
  160. borderWidth: 1,
  161. borderColor: "#0571D5",
  162. color: "#1779E0",
  163. },
  164. symbol: "path://M 0,0 l 120,0 l -30,60 l -120,0 z",
  165. symbolSize: ["30", "12"],
  166. symbolOffset: ["0", "-11"],
  167. //symbolRotate: -5,
  168. symbolPosition: "end",
  169. data: data,
  170. z: 3,
  171. },
  172. ],
  173. };
  174. this.chart.setOption(option);
  175. //自适应图表
  176. window.onresize = this.chart.resize;
  177. },
  178. },
  179. };
  180. </script>
  181. <style scoped></style>