Created
November 29, 2017 16:32
-
-
Save oriolrius/a580c1d56809570a97ecc062b2224b3d to your computer and use it in GitHub Desktop.
Revisions
-
oriolrius created this gist
Nov 29, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,37 @@ 'use strict'; var dashboard; dashboard = { title: 'this is just a test', rows : [], }; dashboard.time = { from: "now-6h", to: "now" }; dashboard.rows.push({ title: 'Chart', panels: [ { title: 'el titol', type: 'graph', span: 12, fill: 1, linewidth: 2, targets: [ { 'target': "randomWalk('prova')" }, { 'target': "randomWalk('random walk2')" } ] } ] }); return dashboard;