年度费用率

描述:当前是关于Echarts图表中的 折线图 示例。
 
            option = {
  backgroundColor: '#fff',
    title: {
        // text: `{a|年度费用率}`,
        textStyle: {
            rich: {
                a: {
                    fontSize: 16,
                    fontWeight: 600,
                },
            },
        },
        top: '2%',
        left: '2%',
    },
    legend: {
        data: ['销售费用', '管理费用'],
        textStyle: {
            align: 'right',
        },
        top: '2%',
        right: '2%',
    },
  grid: {
        top: '18%',
        left: '10%',
        right: '6%',
        bottom: '10%',
    },
  xAxis: [
    {
            type: 'category',
            axisLine: {
                show: true,
            },
            splitArea: {
                // show: true,
                color: '#f00',
                lineStyle: {
                    color: '#f00',
                },
            },
            splitLine: {
                show: false,
            },
            axisLabel: {
                margin: 10,
            },
            boundaryGap: false,
            data: [2016,2017, 2018, 2019, 2020, 2021],
        },
  ],
  yAxis: [
        {
            type: 'value',
            // min: 0,
            // max: 140,
            splitNumber: 4,
            splitLine: {
                show: true,
                lineStyle: {
                    color: '#e3e3e3',
                },
            },
            axisLine: {
                show: false,
            },
            axisLabel: {
                show: true,
                margin: 20,
                formatter: '{value} %',
            },
            axisTick: {
                show: false,
            },
        },
    ],
  series: [
    {
      name: '销售费用',
      type: 'line',
      data: [7.99, 7.42, 7.75, 5.67, 7, 7.25],
      itemStyle: {
        
        normal: {
          color: '#ff3a3a',
        lineStyle: {
          color: '#ff3a3a',
        },
               label: {
                  show: true, //开启显示
                  color: '#ff3a3a',
                  position: 'top', //在上方显示
                  formatter: function (res) {
                     if (res.value) {
                        return res.value + '%'
                     } else {
                        return 0
                     }
                  },
               },
            },
      },
    },
    {
      name: '管理费用',
      type: 'line',
      data: [14.78, 13.9, 13.28, 14.17, 14.03, 16.04],
      itemStyle: {
        
        normal: {
          color: '#0151BA',
        lineStyle: {
          color: '#0151BA',
        },
               label: {
                  show: true, //开启显示
                  color: '#0151BA',
                  position: 'top', //在上方显示
                  formatter: function (res) {
                     if (res.value) {
                        return res.value + '%'
                     } else {
                        return 0
                     }
                  },
               },
            },
      },
    },
  ],
};