Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
N
nexpie-grafana-theme
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
Registry
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kornkitt Poolsup
nexpie-grafana-theme
Commits
6ddb6427
Commit
6ddb6427
authored
Mar 01, 2013
by
Rashid Khan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed render issue when resizing rows
parent
107cf6b8
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
4 deletions
+6
-4
panels/dashcontrol/module.js
+0
-1
panels/histogram/module.html
+2
-1
panels/histogram/module.js
+2
-1
panels/pie/module.html
+2
-1
No files found.
panels/dashcontrol/module.js
View file @
6ddb6427
...
...
@@ -116,7 +116,6 @@ angular.module('kibana.dashcontrol', [])
}
$scope
.
elasticsearch_save
=
function
(
type
)
{
console
.
log
(
type
)
// Clone object so we can modify it without influencing the existing obejct
var
save
=
_
.
clone
(
$scope
.
dashboards
)
...
...
panels/histogram/module.html
View file @
6ddb6427
<kibana-panel
ng-controller=
'histogram'
style=
"height:{{row.height}}"
>
<div
histogram
params=
"{{panel}}"
style=
"height:{{row.height}}"
></div>
<div
histogram
params=
"{{panel}}"
style=
"height:{{row.height}}
;position:relative
"
></div>
</kibana-panel>
\ No newline at end of file
panels/histogram/module.js
View file @
6ddb6427
...
...
@@ -105,7 +105,8 @@ angular.module('kibana.histogram', [])
data
:
{
label
:
$scope
.
panel
.
query
[
k
].
label
||
k
,
data
:
data
,
}
},
};
if
(
!
(
_
.
isUndefined
(
$scope
.
panel
.
query
[
k
].
color
)))
...
...
panels/pie/module.html
View file @
6ddb6427
<kibana-panel
ng-controller=
'pie'
>
<div
pie
params=
"{{panel}}"
style=
"height:{{row.height}}"
></div>
<div
pie
params=
"{{panel}}"
style=
"height:{{row.height}}
;position:relative
"
></div>
</kibana-panel>
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment