1

我有下面的函数,它代表图表的 X 轴。

目前,在这个函数中,'n' 有许多迭代,根据动态选择的值呈现 0、25、50。

有没有可能我们可以知道这是否是 n 的最后一次迭代?

xaxis: {showLabels: true, noTicks: 7,tickFormatter: function(n)
{
    var k = n;

    if(k==7) // This is not working
        return NewdateData[NewdateData.length-1]; 
    else  
        return NewdateData[k];      
}
4

1 回答 1

1

n与以下相比,将您的功能降至最低效果很好this.noTicks

var xaxis = {showLabels: true, noTicks: 7,tickFormatter: function(n){
    return n === this.noTicks;
}};
console.log(xaxis.tickFormatter(1)); //false
console.log(xaxis.tickFormatter(7)); //true

你是不是也这样称呼它... .xaxis.tickFormatter(...)

于 2011-05-03T07:39:04.457 回答