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?
1 Answer
Reset to default 1You 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
版权声明:本文标题:echarts - Multiple tooltip valueFormatters - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743779616a2537595.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论