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
8feaef20
Commit
8feaef20
authored
Dec 12, 2016
by
Torkel Ödegaard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(graph): fixed graph issue with axes mode set to series and picking Max value, fixes #6926
parent
a90f6501
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
public/app/features/dashboard/submenu/submenu.ts
+0
-1
public/app/plugins/panel/graph/axes_editor.ts
+1
-1
public/app/plugins/panel/graph/data_processor.ts
+1
-1
No files found.
public/app/features/dashboard/submenu/submenu.ts
View file @
8feaef20
...
...
@@ -15,7 +15,6 @@ export class SubmenuCtrl {
private
$location
)
{
this
.
annotations
=
this
.
dashboard
.
templating
.
list
;
this
.
variables
=
this
.
variableSrv
.
variables
;
console
.
log
(
this
.
variables
);
}
annotationStateChanged
()
{
...
...
public/app/plugins/panel/graph/axes_editor.ts
View file @
8feaef20
...
...
@@ -36,7 +36,7 @@ export class AxesEditorCtrl {
this
.
xAxisStatOptions
=
[
{
text
:
'Avg'
,
value
:
'avg'
},
{
text
:
'Min'
,
value
:
'min'
},
{
text
:
'Max'
,
value
:
'm
in
'
},
{
text
:
'Max'
,
value
:
'm
ax
'
},
{
text
:
'Total'
,
value
:
'total'
},
{
text
:
'Count'
,
value
:
'count'
},
{
text
:
'Current'
,
value
:
'current'
},
...
...
public/app/plugins/panel/graph/data_processor.ts
View file @
8feaef20
...
...
@@ -166,7 +166,7 @@ export class DataProcessor {
return
[
{
text
:
'Avg'
,
value
:
'avg'
},
{
text
:
'Min'
,
value
:
'min'
},
{
text
:
'Max'
,
value
:
'm
in
'
},
{
text
:
'Max'
,
value
:
'm
ax
'
},
{
text
:
'Total'
,
value
:
'total'
},
{
text
:
'Count'
,
value
:
'count'
},
];
...
...
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