File tree Expand file tree Collapse file tree 1 file changed +7
-6
lines changed
app/gui/src/project-view/components/visualizations Expand file tree Collapse file tree 1 file changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -508,6 +508,7 @@ const brush = computed(() => {
508
508
])
509
509
.on (' start brush' , (event : d3 .D3BrushEvent <unknown >) => {
510
510
brushExtent .value = event .selection ?? undefined
511
+ createNewFilterNodeEnabled .value = true
511
512
})
512
513
})
513
514
@@ -681,7 +682,7 @@ function formatXPoint(x: Date | number | DateObj) {
681
682
case ' Time' :
682
683
return x .toTimeString ()
683
684
case ' Date' :
684
- return x .toDateString ()
685
+ return x .toISOString ()
685
686
default :
686
687
return x .toString ()
687
688
}
@@ -883,17 +884,17 @@ function useScatterplotVizToolbar() {
883
884
title: ' Enable Selection' ,
884
885
toggle: selectionEnabled ,
885
886
},
886
- {
887
- icon: ' show_all' ,
888
- title: ' Fit All' ,
889
- onClick : () => zoomToSelected (false ),
890
- },
891
887
{
892
888
icon: ' zoom' ,
893
889
title: ' Zoom to Selected' ,
894
890
disabled : () => brushExtent .value == null ,
895
891
onClick: zoomToSelected ,
896
892
},
893
+ {
894
+ icon: ' refresh' ,
895
+ title: ' Reset scatterplot view' ,
896
+ onClick : () => zoomToSelected (false ),
897
+ },
897
898
{
898
899
icon: ' add_to_graph_editor' ,
899
900
title: ' Create component of selected points' ,
You can’t perform that action at this time.
0 commit comments