在 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,                  // 内边距
                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]
        }
    ]
};

在上述配置中,label 属性用于配置坐标轴指示器文本标签的样式。你可以通过设置各种属性来控制文本标签的显示与样式,如背景颜色、边框颜色、边框宽度、字体大小、颜色等。

根据实际需求,你可以调整这些属性以满足你的要求。


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