gpt4 book ai didi

typescript - ng2-charts 的自定义工具提示

转载 作者:行者123 更新时间:2023-12-05 04:03:56 25 4
gpt4 key购买 nike

我正在做一些研究,我想知道是否可以像在 chart.js 中那样制作自定义工具提示,但我找不到任何东西。我想在我的工具提示中添加一些 css!我正在使用 angular5。

最佳答案

尝试将此添加到您的图表选项:

public barChartOptions: ChartOptions = {
...
tooltips: {
backgroundColor: 'rgba(255,255,0,0.5)',
bodyFontColor: 'blue',
borderColor: '#0ff',
borderWidth: 5,
caretPadding: 10,
displayColors: false,
enabled: true,
intersect: true,
mode: 'x',
titleFontColor: '#333',
titleMarginBottom: 10,
xPadding: 20,
yPadding: 15,
// If you want to custom the value
callbacks: {
label: function (tooltipItem, data) {
const datasetLabel = data.datasets[tooltipItem.datasetIndex].label || '';
return datasetLabel + ': $' + tooltipItem.yLabel;
}
}
},
}

另请参阅此答案:https://stackoverflow.com/a/54890570

关于typescript - ng2-charts 的自定义工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53056450/

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