在 ECharts 中,你可以通过 axisLabel 属性来配置 y 坐标轴刻度的样式。以下是一个示例:
option = {
    yAxis: {
        type: 'value',
        axisLabel: {
            show: true, // 是否显示刻度标签
            inside: false, // 刻度标签是否朝内,默认为 false(朝外)
            rotate: 0, // 刻度标签旋转角度
            margin: 8, // 刻度标签与轴线的距离
            formatter: '{value}', // 刻度标签的格式化字符串
            color: 'blue', // 刻度标签文字颜色
            fontSize: 12, // 刻度标签文字大小
            fontWeight: 'normal' // 刻度标签文字粗细,可选值为 'normal'、'bold'、'bolder'、'lighter'
        },
        // 其他 yAxis 配置项可以根据需要添加
    },
    xAxis: {
        type: 'category',
        data: ['A', 'B', 'C', 'D', 'E'],
    },
    series: [
        {
            type: 'bar',
            data: [10, 20, 15, 25, 30]
        }
    ]
};

在上述示例中,axisLabel 属性用于配置 y 轴刻度的样式。你可以根据实际需求调整其中的各个属性,比如是否显示刻度标签、标签朝向、旋转角度、距离轴线的距离、格式化字符串、文字颜色、文字大小等。




转载请注明出处:http://www.zyzy.cn/article/detail/5206/ECharts