Commit 8feaef20 by Torkel Ödegaard

fix(graph): fixed graph issue with axes mode set to series and picking Max value, fixes #6926

parent a90f6501
......@@ -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() {
......
......@@ -36,7 +36,7 @@ export class AxesEditorCtrl {
this.xAxisStatOptions = [
{text: 'Avg', value: 'avg'},
{text: 'Min', value: 'min'},
{text: 'Max', value: 'min'},
{text: 'Max', value: 'max'},
{text: 'Total', value: 'total'},
{text: 'Count', value: 'count'},
{text: 'Current', value: 'current'},
......
......@@ -166,7 +166,7 @@ export class DataProcessor {
return [
{text: 'Avg', value: 'avg'},
{text: 'Min', value: 'min'},
{text: 'Max', value: 'min'},
{text: 'Max', value: 'max'},
{text: 'Total', value: 'total'},
{text: 'Count', value: 'count'},
];
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment