LoginSignup
0
0

More than 5 years have passed since last update.

graphiteのdashboardのナビゲーションを隠す

Last updated at Posted at 2014-09-17

graphiteのちょっとした小ネタです。
dashboardを表示した際に、左側あるいは上側に表示されるメトリックスの
ナビゲーションを非表示にする方法です。

graphite_fullscreen_800.png
http://graphite.wikidot.com/screen-shots

ナビゲーションは、初回グラフ作成時以外は基本的に不要かと思うので
デフォルト非表示の方が使いやすいように思います。

下記の内容そのままで上手くいきました。
http://www.abcn.net/2014/01/graphites-dashboard-set-auto-hide-navbar.html

次のファイルを、以下のように編集します。
.js/dashboard.js

 717   // Load initial dashboard state if it was passed in
 718   if (initialState) {
 719     applyState(initialState);
 720     //navBar.collapse(); //★コメントアウト
 721   }
 722   navBar.collapse(); //★追記

以上です。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0