gpt4 book ai didi

javascript - ApexCharts:热图工具提示格式化程序

转载 作者:行者123 更新时间:2023-11-30 19:46:28 26 4
gpt4 key购买 nike

我正在使用 apexcharts 来显示热图图表:

Apex heatmap chart

系列以 Date 对象命名,在 y 轴上的格式如下:

yaxis: {
labels: {
formatter: function(value){
if(value instanceof Date){
return value.toLocaleDateString(undefined, {year: 'numeric', month: 'long'});
} else {
return value;
}
}
}
},

如何获得相同类型的工具提示格式?它们显示日期对象的常规字符串表示,但我只想显示月份和年份(如在 y 轴上):

ApexChart heatmap tooltip

最佳答案

将一个tooltip值传递给options数组,并为其中的y轴的title值设置一个格式化器:

tooltip: {
y: {
title: {
formatter: function(value){
if(value instanceof Date){
return value.toLocaleDateString(undefined, {year: 'numeric', month: 'long'});
} else {
try {
return new Date(value).toLocaleDateString(undefined, {year: 'numeric', month: 'long'});
} catch (e) {
return value;
}
}
}
}
}
}

确保检查传递给格式化程序的值的类型,并在必要时创建一个新的 Date 对象。

关于javascript - ApexCharts:热图工具提示格式化程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54889951/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com