From 7f37e26646fa7648cffb967de4912d4bd3cc9c49 Mon Sep 17 00:00:00 2001 From: Deniz Kusefoglu Date: Tue, 6 Mar 2018 17:43:49 -0800 Subject: [PATCH] Reorder visualization types --- ui/src/dashboards/graphics/graph.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/ui/src/dashboards/graphics/graph.js b/ui/src/dashboards/graphics/graph.js index 5c2821cbe..61faddb0f 100644 --- a/ui/src/dashboards/graphics/graph.js +++ b/ui/src/dashboards/graphics/graph.js @@ -484,9 +484,9 @@ export const GRAPH_TYPES = [ graphic: GRAPH_SVGS['line-stepplot'], }, { - type: 'single-stat', - menuOption: 'Single Stat', - graphic: GRAPH_SVGS['single-stat'], + type: 'bar', + menuOption: 'Bar Graph', + graphic: GRAPH_SVGS.bar, }, { type: 'line-plus-single-stat', @@ -494,9 +494,9 @@ export const GRAPH_TYPES = [ graphic: GRAPH_SVGS['line-plus-single-stat'], }, { - type: 'bar', - menuOption: 'Bar Graph', - graphic: GRAPH_SVGS.bar, + type: 'single-stat', + menuOption: 'Single Stat', + graphic: GRAPH_SVGS['single-stat'], }, { type: 'gauge',