0

現在の日のデータのみを表示するように、フロー グラフのオプションを設定するにはどうすればよいですか? タイムスタンプと書式設定は機能していますが、現在の日のみを表示する方法がわかりません (したがって、軸は現在の日に継続的に更新されます)。

編集:

現在使用しているコードのスニペットは次のとおりです。

// mode specific options
                    tickDecimals: null, // no. of decimals, null means auto
                    tickSize: null, // number or [number, "unit"]
                    minTickSize: [1, "hour"], // number or [number, "unit"]
                    monthNames: null, // list of names of months
                    timeformat: "%H:%I",
                    twelveHourClock: "12" // 12 or 24 time in time mode
4

1 に答える 1

1

plot() を呼び出す前に、xaxis の最小/最大オプションを設定してみてください。Time1 は 1 日の最初の 00:00:00 時間のミリ秒であり、Time2 はその日の 23:00:00 時間です。

data: [.....],
...    
xaxis{ min: Time1, max: Time2}
于 2013-03-28T13:08:09.590 に答える