echarts属性的设置

xAxis: {
            type: "category",
            data: xdata,
            axisLabel: {
              //X轴文字
              interval: 0,
              rotate: 25, //x轴文字倾斜展示
              show: true,
              textStyle: {
                color: "rgba(255,255,255,.6)",
                fontSize: "13",
              },
            },
            axisLine: {
              //X轴轴线
              show: true,
              lineStyle: {
                color: "rgba(255,255,255,.1)",
                width: 1,
                type: "solid",
              },
            },
          },

 

上一篇:canvas基础


下一篇:RGB转YUV