admin管理员组

文章数量:1344948

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'
        }
    },
]

本文标签: echartsMultiple tooltip valueFormattersStack Overflow