0
値に基づいてnvd3のx軸ラベルを更新しようとしていますが、x軸axisLable
は文字列だけでなく、チャート全体の関数を返します。文字列を返すようにしますか?nvd3のx軸ラベルを動的に更新する
$scope.options_scn_cst_compare = {
chart: {
type: "multiBarChart",
x: function(d){ return d.x; },
y: function(d){ return d.values; },
xAxis: {
axisLabel: function(d) {
if (yAxistm.tm === 'yr') {
return "Time (Years)";
} else if (yAxistm.tm === 'qtr') {
return "Time (Quarterly)";
} else if (yAxistm.tm === 'mth') {
return "Time (Montly)";
};
}
.....
}