File tree Expand file tree Collapse file tree 2 files changed +8
-7
lines changed
src/pages/NwbPage/plugins/simple-timeseries Expand file tree Collapse file tree 2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## June 19, 2025
4
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 )
5
6
6
7
## June 12, 2025
7
8
- Optimized experimental search panel to eliminate repeated script executions by implementing client-side filtering
Original file line number Diff line number Diff line change @@ -81,14 +81,14 @@ const TimeseriesPlot: FunctionComponent<Partial<Props>> = ({
81
81
82
82
const layout = useMemo (
83
83
( ) => ( {
84
- width : ( width || 700 ) - 20 ,
84
+ width : ( width || 700 ) ,
85
85
height : height || 300 ,
86
- margin : {
87
- l : 50 ,
88
- r : 20 ,
89
- t : 20 ,
90
- b : 50 ,
91
- } ,
86
+ margin : {
87
+ l : 50 ,
88
+ r : 20 ,
89
+ t : 20 ,
90
+ b : 50 ,
91
+ } ,
92
92
xaxis : {
93
93
title : {
94
94
text : "Time (s)" ,
You can’t perform that action at this time.
0 commit comments