gpt4 book ai didi

angularjs - 从 Angular nvd3 堆积面积图工具提示中删除总数

转载 作者:行者123 更新时间:2023-12-01 11:28:22 25 4
gpt4 key购买 nike

我在我的网站上使用 angular-nvd3 的堆积面积图。在图形工具提示上,除了数据点之外,所有点的总数也被渲染。我该如何禁用它?我附上了我设置的快照和图表选项。

$scope.graphOptions = {
chart: {
type: 'stackedAreaChart',
height: 300,
margin: {
top: 20,
bottom: 30,
left: 40
},
useVoronoi: false,
clipEdge: true,
duration: 10,
showLegend:false,
useInteractiveGuideline: true,
x: function(d){return d[0];},
y: function(d){return d[1];},
xAxis:{
//mode: 'time'
timeformat: '',
showMaxMin: false,
position: 'bottom',
tickFormat: function(d) {
return d3.time.format('%b %d')(new Date(d))
}
},
yAxis: {
tickFormat: function (val) {
if (val > 1000000000)
return Math.round(val / 1000000000) + 'Bil';
else if (val > 1000000)
return Math.round(val / 1000000) + 'Mil';
else if (val > 1000)
return Math.round(val / 1000) + 'K';
else
return Math.round(100 * val) / 100;
}
},
showControls: false
}
}
};

快照 enter image description here

最佳答案

无需完全自定义工具提示,只需将 showTotalInTooltip: false 添加到您的配置即可。

$scope.graphOptions = {
chart: {
type: 'stackedAreaChart',
height: 300,
margin: {
top: 20,
bottom: 30,
left: 40
},
useVoronoi: false,
clipEdge: true,
duration: 10,
showTotalInTooltip: false,
...

关于angularjs - 从 Angular nvd3 堆积面积图工具提示中删除总数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35271572/

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