在 ECharts 中,可以使用 axisPointer 的 label 属性来配置坐标轴指示器文本标签的样式,包括内边距。以下是一个例子,演示如何设置 Grid 组件以及坐标轴指示器的文本标签样式,包括内边距:
option = {
    grid: {
        left: '10%',
        right: '10%',
        bottom: '10%'
    },
    tooltip: {
        show: true,
        trigger: 'axis',
        axisPointer: {
            type: 'line',
            label: {
                show: true,
                precision: 2,
                formatter: '{value} units',
                backgroundColor: '#fff',
                borderColor: '#999',
                borderWidth: 1,
                padding: [5, 10],  // 设置上下左右的内边距
                color: '#333',
                fontSize: 12,
                fontFamily: 'Arial',
                fontWeight: 'bold',
                fontStyle: 'italic',
                lineHeight: 1.5
            }
        }
    },
    xAxis: {
        type: 'category',
        data: ['Category1', 'Category2', 'Category3', 'Category4', 'Category5']
    },
    yAxis: {
        type: 'value'
    },
    series: [
        {
            name: 'Series1',
            type: 'line',
            data: [5, 20, 36, 10, 10]
        }
    ]
};

在上述配置中,padding 属性用于设置文本标签的上下左右内边距。数组的两个元素分别表示垂直方向(上下)和水平方向(左右)的内边距。你可以根据需要调整这些值以满足你的要求。




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