echarts visualMap bug for multi series

hjzp0vay  于 2022-10-20  发布在  Echarts
关注(0)|答案(1)|浏览(260)

Version

4.7.0

Steps to reproduce

There are two line series, but only one of them is effected by visualMap. I find the other one seems also changes its color in tooltip.

the option is following:

  1. {
  2. "color": ["#3fb1e3", "#6be6c1", "#626c91", "#a0a7e6", "#33b86c", "#96dee8"],
  3. "dataset": {
  4. "source": [
  5. {
  6. "down_threshold": -0.05,
  7. "mean_threshold": 0.09,
  8. "time": "2021-04-06 00:00:00.000",
  9. "up_threshold": 0.24,
  10. "value": 0.17279120676562648
  11. },
  12. {
  13. "down_threshold": -0.05,
  14. "mean_threshold": 0.09,
  15. "time": "2021-04-06 01:00:00.000",
  16. "up_threshold": 0.24,
  17. "value": 0.1918523077076779
  18. },
  19. {
  20. "down_threshold": -0.05,
  21. "mean_threshold": 0.09,
  22. "time": "2021-04-06 02:00:00.000",
  23. "up_threshold": 0.24,
  24. "value": 0.21198067458580033
  25. },
  26. {
  27. "down_threshold": -0.05,
  28. "mean_threshold": 0.09,
  29. "time": "2021-04-06 03:00:00.000",
  30. "up_threshold": 0.24,
  31. "value": 0.23904901094433784
  32. },
  33. {
  34. "down_threshold": -0.05,
  35. "mean_threshold": 0.09,
  36. "time": "2021-04-06 05:00:00.000",
  37. "up_threshold": 0.24,
  38. "value": 0.21231917196347566
  39. }
  40. ]
  41. },
  42. "series": [
  43. {
  44. "type": "line",
  45. "encode": { "x": "time", "y": "value" },
  46. "name": "结果值",
  47. "symbol": "none",
  48. "markLine": {
  49. "silent": true,
  50. "lineStyle": { "color": "red" },
  51. "data": [
  52. {
  53. "yAxis": 0.2,
  54. "label": { "formatter": "0.2(上限)", "position": "insideEndBottom" }
  55. },
  56. {
  57. "yAxis": 0.18,
  58. "label": {
  59. "formatter": "0.18(下限)",
  60. "position": "insideEndBottom"
  61. }
  62. }
  63. ]
  64. }
  65. },
  66. {
  67. "type": "line",
  68. "encode": { "x": "time", "y": "mean_threshold" },
  69. "name": "平均值",
  70. "symbol": "none"
  71. }
  72. ],
  73. "title": {
  74. "textStyle": { "color": "#aaa", "fontSize": 14 },
  75. "left": "center",
  76. "top": 10,
  77. "show": true,
  78. "text": "结果图"
  79. },
  80. "tooltip": {
  81. "trigger": "axis",
  82. "axisPointer": {
  83. "type": "cross",
  84. "label": { "backgroundColor": "#6a7985" }
  85. }
  86. },
  87. "xAxis": {
  88. "type": "category",
  89. "boundaryGap": false,
  90. "axisLine": {
  91. "lineStyle": { "color": "#efefef", "width": 1, "type": "solid" }
  92. },
  93. "axisTick": { "show": false },
  94. "axisLabel": { "color": "#9a9a9a" },
  95. "splitLine": { "show": false },
  96. "nameTextStyle": { "color": "#9a9a9a" }
  97. },
  98. "yAxis": {
  99. "type": "value",
  100. "axisLine": {
  101. "lineStyle": { "color": "#efefef", "width": 1, "type": "solid" }
  102. },
  103. "nameTextStyle": { "color": "#9a9a9a" },
  104. "axisTick": { "show": false },
  105. "axisLabel": { "color": "#9a9a9a" },
  106. "splitLine": { "show": true, "lineStyle": { "width": 1, "type": "dash" } }
  107. },
  108. "grid": { "show": false, "top": 50, "bottom": 50, "left": 45, "right": 22 },
  109. "legend": {
  110. "show": true,
  111. "left": "center",
  112. "top": "bottom",
  113. "textStyle": { "color": "#333" },
  114. "data": [
  115. { "name": "结果值", "textStyle": { "color": "#3fb1e3" } },
  116. { "name": "平均值", "textStyle": { "color": "#6be6c1" } }
  117. ]
  118. },
  119. "visualMap": [
  120. {
  121. "seriesIndex": 0,
  122. "type": "piecewise",
  123. "show": false,
  124. "pieces": [
  125. { "color": "red", "gte": 0.2 },
  126. { "color": "red", "lte": 0.18 }
  127. ],
  128. "outOfRange": { "color": "#3fb1e3" }
  129. },
  130. {
  131. "seriesIndex": 1,
  132. "type": "piecewise",
  133. "show": false,
  134. "pieces": [
  135. { "color": "red", "gte": 0.2 },
  136. { "color": "red", "lte": 0.18 }
  137. ],
  138. "outOfRange": { "color": "#6be6c1" }
  139. }
  140. ]
  141. }

What is expected?

The two series should be both effected by visualMap.

What is actually happening?

One of the series is not effected by visualMap.

qzwqbdag

qzwqbdag1#

echarts v5.3.2 same problem +1

相关问题