Reorder visualization types

pull/2940/head
Deniz Kusefoglu 2018-03-06 17:43:49 -08:00
parent 454e0ac022
commit 7f37e26646
1 changed files with 6 additions and 6 deletions

View File

@ -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',