Skip to content

Commit ce59bdc

Browse files
committed
Dev environment - Update testing arena
1 parent aa989b9 commit ce59bdc

File tree

3 files changed

+23
-19
lines changed

3 files changed

+23
-19
lines changed

TestingArena/ArenaVueUiQuickChart.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -196,6 +196,8 @@ const model = ref([
196196
{ key: 'zoomMinimap.lineColor', def: '#1A1A1A', type: 'color'},
197197
{ key: 'zoomMinimap.selectionRadius', def: 2, type: 'range', min: 0, max: 24},
198198
{ key: 'zoomMinimap.indicatorColor', def: '#1A1A1A', type: 'color'},
199+
{ key: 'zoomMinimap.verticalHandles', def: true, type: 'checkbox'},
200+
199201
{ key: 'zoomStartIndex', def: 1, type: 'number', min: 0, max: 100},
200202
{ key: 'zoomEndIndex', def: 3, type: 'number', min: 0, max: 100},
201203
{ key: 'zoomEnableRangeHandles', def: true, type: 'chexkbox'},

TestingArena/ArenaVueUiXy.vue

Lines changed: 20 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -231,6 +231,8 @@ const model = ref([
231231
{ key: 'chart.zoom.minimap.lineColor', def: '#1A1A1A', type: 'color'},
232232
{ key: 'chart.zoom.minimap.selectionRadius', def: 2, type: 'number', min: 0, max: 24},
233233
{ key: 'chart.zoom.minimap.indicatorColor', def: '#1A1A1A', type: 'color'},
234+
{ key: 'chart.zoom.minimap.verticalHandles', def: true, type: 'checkbox'},
235+
234236
{ key: 'chart.zoom.startIndex', def: 2, type: 'number', min: 0, max: 100},
235237
{ key: 'chart.zoom.endIndex', def: 6, type: 'number', min: 0, max: 100},
236238
@@ -410,7 +412,7 @@ const themeOptions = ref([
410412
"celebrationNight"
411413
])
412414
413-
const currentTheme = ref(themeOptions.value[6])
415+
const currentTheme = ref(themeOptions.value[0])
414416
415417
const size = ref({
416418
height: 600,
@@ -519,23 +521,23 @@ const config = computed(() => {
519521
},
520522
xAxisLabels: {
521523
...c.chart.grid.labels.xAxisLabels,
522-
// values: [
523-
// "JANUARY IS KIND OF LONG",
524-
// "FEBRUARY IS KIND OF LONG TOO",
525-
// "MARCH",
526-
// "APRIL",
527-
// "MAY",
528-
// "JUNE",
529-
// "JULY",
530-
// "AUGUST",
531-
// "SEPTEMBER",
532-
// "OCTOBER",
533-
// "NOVEMBER IS KIND OF LONG TOO",
534-
// "DECEMBER",
535-
// "JANUARY+",
536-
// "FEBRUARY+",
537-
// "MARCH+"
538-
// ]
524+
values: [
525+
"JANUARY IS KIND OF LONG",
526+
"FEBRUARY IS KIND OF LONG TOO",
527+
"MARCH",
528+
"APRIL",
529+
"MAY",
530+
"JUNE",
531+
"JULY",
532+
"AUGUST",
533+
"SEPTEMBER",
534+
"OCTOBER",
535+
"NOVEMBER IS KIND OF LONG TOO",
536+
"DECEMBER",
537+
"JANUARY+",
538+
"FEBRUARY+",
539+
"MARCH+"
540+
]
539541
}
540542
}
541543
}

src/App.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const components = ref([ //--- CELEBRATION THEMES
113113
// cursor
114114
]);
115115
116-
const selectedComponent = ref(components.value[4]);
116+
const selectedComponent = ref(components.value[0]);
117117
118118
</script>
119119

0 commit comments

Comments
 (0)