jquery.flot グラフの x 軸にラベルを付けて、時間を 1 時間単位で表示したいと考えています。時間が真夜中を過ぎると、日付と時刻を表示したいと思います。
これどうやってするの?
ありがとう
tickSize
(またはminTickSize
、ラベルの動作方法に応じて) を に設定し、日付が午前 0 時に該当する場合はラベルを生成する関数を[1, "hour"]
提供し、それ以外の場合は空の文字列を生成します。tickFormatter
DNS が示唆するように、これには tickFormatter を使用します。何かのようなもの:
tickFormatter: function formatter(val, axis) {
var d = new Date(val);
var rV = null;
if (lastDay == null) //lastDay is a global, set to null outside of plot call
{
rV = $.plot.formatDate(d, "%H:%M"); // first date return time
}
else
{
if (d.getDay() == 1 || d.getDay() > lastDay.getDay()) // we have a new day
{
rV = $.plot.formatDate(d, "<b>New Day</b></br> %m/%d"); // return different format
}
else // same day, just time
{
rV = $.plot.formatDate(d, "%H:%M");
}
}
lastDay = d;
return rV;
}