最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

echarts - Multiple tooltip valueFormatters - Stack Overflow

programmeradmin0浏览0评论

Is it possible to configure the tooltip option to accept multiple valueFormatter for each series? Let's say I have a series containing temperature data and another series containing heart rate. I would like to format these with different units (°C and Bpm respectively) and number of decimals.

I am aware that I can use the formatter option to achieve this task but that gets rid of the default tooltip styling which I would like to keep. Does anyone know of a way?

Is it possible to configure the tooltip option to accept multiple valueFormatter for each series? Let's say I have a series containing temperature data and another series containing heart rate. I would like to format these with different units (°C and Bpm respectively) and number of decimals.

I am aware that I can use the formatter option to achieve this task but that gets rid of the default tooltip styling which I would like to keep. Does anyone know of a way?

Share Improve this question asked yesterday asiannoobasiannoob 351 silver badge4 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

You can configure the tooltip for each series individually under series.tooltip.

Example:

series: [
    {
        ...,
        tooltip: {
            valueFormatter: value => value + ' °C'
        }
    },
    {
        ...,
        tooltip: {
            valueFormatter: value => value + ' Bpm'
        }
    },
]
发布评论

评论列表(0)

  1. 暂无评论