echarts中的提示浮窗不显示横竖线

 

 

 

tooltip: {
          trigger: "axis",
          axisPointer: {
            lineStyle: {
              color: {
                type: "linear",
                x: 0,
                y: 0,
                x2: 0,
                y2: 1,
                colorStops: [
                  {
                    offset: 0,
                    color: "transparent", // 0% 处的颜色
                  },
                  {
                    offset: 0.5,
                    color: "transparent", // 100% 处的颜色
                  },
                  {
                    offset: 1,
                    color: "transparent", // 100% 处的颜色
                  },
                ],
                global: false, // 缺省为 false
              },
            },
          },
        },

 

posted @ 2021-07-14 15:39  大云之下  阅读(517)  评论(0编辑  收藏  举报
大云之下