Web サイトで 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
}
}
};