echarts 设置 tooltip 背景框颜色文字颜色

  1. 设置前后效果对比

echarts 设置 tooltip 背景框颜色文字颜色_第1张图片
2. tooltip 属性下面修改

tooltip: {
  trigger: "item",
  backgroundColor: "rgba(255,255,255,0.8)", //设置背景图片 rgba格式
  color: "black",
  borderWidth: "1", //边框宽度设置1
  borderColor: "gray", //设置边框颜色
  textStyle: {
    color: "black" //设置文字颜色
  },
},


echarts 设置 tooltip 背景框颜色文字颜色

你可能感兴趣的:(echarts,echarts)