美文网首页
设置图例不能点击

设置图例不能点击

作者: 冬天的_太阳 | 来源:发表于2020-05-22 15:42 被阅读0次
     option8: {
        color: ["#00CCFF", "#FE713A"],
        legend: {
          data: ["最高分", "最低分"],
          icon: "circle",
          selectedMode: false  /// 设置图例不能点击
        },
        grid: {
          left: "10%",
          right: "2%",
          bottom: "20%",
          top: "20%"
        },
        xAxis: [
          {
            type: "category",
            name: "每次考试时间",
            data: [],
            axisTick: {
              alignWithLabel: true
            },
            axisLabel: {
              textStyle: {
                color: "#333",
                fontSize: 12
              }
              // rotate: 38
            }
          }
        ],
        yAxis: [
          {
            type: "value",
            name: "分数"
          }
        ],
        series: [
          {
            name: "最高分",
            type: "bar",
            barWidth: "30%",
            data: []
          },
          {
            name: "最低分",
            type: "bar",
            barWidth: "30%",
            data: []
          }
        ]
      },

相关文章

网友评论

      本文标题:设置图例不能点击

      本文链接:https://www.haomeiwen.com/subject/ragqahtx.html