File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed
src/pages/NwbPage/plugins/simple-timeseries Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changes
2
2
3
+ ## June 19, 2025
4
+ - Added toggle legend button for plotly timeseries plots (Issue #328 )
5
+ - Fixed margin difference between plotly and native NS plots by removing width reduction and right margin (Issue #330 )
6
+
3
7
## June 12, 2025
4
8
- Optimized experimental search panel to eliminate repeated script executions by implementing client-side filtering
5
9
- Added dandiset counts next to contact person names in experimental search panel
Original file line number Diff line number Diff line change @@ -78,14 +78,14 @@ const TimeseriesPlot: FunctionComponent<Partial<Props>> = ({
78
78
79
79
const layout = useMemo (
80
80
( ) => ( {
81
- width : ( width || 700 ) - 20 ,
81
+ width : ( width || 700 ) ,
82
82
height : height || 300 ,
83
- margin : {
84
- l : 50 ,
85
- r : 20 ,
86
- t : 20 ,
87
- b : 50 ,
88
- } ,
83
+ margin : {
84
+ l : 50 ,
85
+ r : 20 ,
86
+ t : 20 ,
87
+ b : 50 ,
88
+ } ,
89
89
xaxis : {
90
90
title : {
91
91
text : "Time (s)" ,
You can’t perform that action at this time.
0 commit comments