diff --git a/src/app/directives/grafanaGraph.js b/src/app/directives/grafanaGraph.js
index f04e23aab26..ddb9e9492c8 100644
--- a/src/app/directives/grafanaGraph.js
+++ b/src/app/directives/grafanaGraph.js
@@ -10,7 +10,7 @@ function (angular, $, kbn, moment, _) {
var module = angular.module('kibana.directives');
- module.directive('grafanaGraph', function(filterSrv, $rootScope) {
+ module.directive('grafanaGraph', function(filterSrv, $rootScope, dashboard) {
return {
restrict: 'A',
template: '
+
diff --git a/src/app/panels/graphite/module.js b/src/app/panels/graphite/module.js
index c315e2eb412..49e24c401b0 100644
--- a/src/app/panels/graphite/module.js
+++ b/src/app/panels/graphite/module.js
@@ -181,9 +181,6 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
legend : true,
/** @scratch /panels/histogram/3
* ==== Transformations
- * timezone:: Correct for browser timezone?. Valid values: browser, utc
- */
- timezone : 'browser', // browser or utc
/** @scratch /panels/histogram/3
* percentage:: Show the y-axis as a percentage of the axis total. Only makes sense for multiple
* queries
@@ -216,7 +213,6 @@ function (angular, app, $, _, kbn, moment, timeSeries) {
$scope.init = function() {
-
// Hide view options by default
$scope.fullscreen = false;
$scope.options = false;
diff --git a/src/app/panels/graphite/styleEditor.html b/src/app/panels/graphite/styleEditor.html
index 9e73e395ded..c9fb0519f2a 100644
--- a/src/app/panels/graphite/styleEditor.html
+++ b/src/app/panels/graphite/styleEditor.html
@@ -6,10 +6,6 @@
-
-
-
-
diff --git a/src/app/partials/dasheditor.html b/src/app/partials/dasheditor.html
index 4bccbc2e41c..65fbb21e9b2 100644
--- a/src/app/partials/dasheditor.html
+++ b/src/app/partials/dasheditor.html
@@ -18,7 +18,8 @@
-
+
+
diff --git a/src/app/services/dashboard.js b/src/app/services/dashboard.js
index 942c1a64f0a..74f6d1f36c2 100644
--- a/src/app/services/dashboard.js
+++ b/src/app/services/dashboard.js
@@ -22,6 +22,7 @@ function (angular, $, kbn, _, config, moment, Modernizr) {
var _dash = {
title: "",
style: "dark",
+ timezone: 'browser',
editable: true,
failover: false,
panel_hints: true,