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
a425ce08
Commit
a425ce08
authored
Apr 07, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(graph panel): Fixed legend option max not updating, fixes #4601
parent
cb5b6af9
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
CHANGELOG.md
+1
-0
public/app/features/panel/panel_ctrl.ts
+1
-0
public/app/plugins/panel/graph/tab_legend.html
+1
-2
No files found.
CHANGELOG.md
View file @
a425ce08
...
...
@@ -4,6 +4,7 @@
*
**Postgres**
: Fixed page render crash when using postgres, fixes
[
#4558
](
https://github.com/grafana/grafana/issues/4558
)
*
**Table panel**
: Fixed table panel bug when trying to show annotations in table panel, fixes
[
#4563
](
https://github.com/grafana/grafana/issues/4563
)
*
**App Config**
: Fixed app config issue showing content of other app config, fixes
[
#4575
](
https://github.com/grafana/grafana/issues/4575
)
*
**Graph Panel**
: Fixed legend option max not updating, fixes
[
#4601
](
https://github.com/grafana/grafana/issues/4601
)
# 3.0.0-beta2 (2016-04-04)
...
...
public/app/features/panel/panel_ctrl.ts
View file @
a425ce08
...
...
@@ -46,6 +46,7 @@ export class PanelCtrl {
$scope
.
$on
(
"refresh"
,
()
=>
this
.
refresh
());
$scope
.
$on
(
"render"
,
()
=>
this
.
render
());
$scope
.
$on
(
"$destroy"
,
()
=>
this
.
events
.
emit
(
'panel-teardown'
));
}
init
()
{
...
...
public/app/plugins/panel/graph/tab_legend.html
View file @
a425ce08
...
...
@@ -13,7 +13,6 @@
label=
"To the right"
label-class=
"width-7"
checked=
"ctrl.panel.legend.rightSide"
on-change=
"ctrl.render()"
>
</gf-form-switch>
<div
ng-if=
"ctrl.panel.legend.rightSide"
class=
"gf-form"
>
<label
class=
"gf-form-label width-7"
>
Width
</label>
<input
type=
"number"
class=
"gf-form-input max-width-5"
placeholder=
"250"
bs-tooltip=
"'Set a min-width for the legend side table/block'"
data-placement=
"right"
ng-model=
"ctrl.panel.legend.sideWidth"
ng-change=
"ctrl.render()"
ng-model-onblur
>
...
...
@@ -31,7 +30,7 @@
<gf-form-switch
class=
"gf-form max-width-12"
label=
"Max"
label-class=
"width-6"
switch-class=
"max-width-5"
checked=
"ctrl.panel.legend.max"
on-change=
"ctrl.legend
C
aluesOptionChanged()"
>
checked=
"ctrl.panel.legend.max"
on-change=
"ctrl.legend
V
aluesOptionChanged()"
>
</gf-form-switch>
</div>
...
...
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