Skip to content

Commit 475ffeb

Browse files
committed
update CHANGELOG for June 19, 2025; add toggle legend button and fix margin in TimeseriesPlot
1 parent 21fd61c commit 475ffeb

File tree

2 files changed

+11
-7
lines changed

2 files changed

+11
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changes
22

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+
37
## June 12, 2025
48
- Optimized experimental search panel to eliminate repeated script executions by implementing client-side filtering
59
- Added dandiset counts next to contact person names in experimental search panel

src/pages/NwbPage/plugins/simple-timeseries/TimeseriesPlot.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,14 @@ const TimeseriesPlot: FunctionComponent<Partial<Props>> = ({
7878

7979
const layout = useMemo(
8080
() => ({
81-
width: (width || 700) - 20,
81+
width: (width || 700),
8282
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+
},
8989
xaxis: {
9090
title: {
9191
text: "Time (s)",

0 commit comments

Comments
 (0)