Update pin feature for chart

This commit is contained in:
2026-01-16 15:25:01 +00:00
parent 678bd6c7b6
commit dbfaf26591
5 changed files with 40 additions and 21 deletions

View File

@@ -64,6 +64,7 @@ export interface UiSettings {
displayedDays: string;
showDayReferenceLines?: boolean;
showTherapeuticRange?: boolean;
stickyChart: boolean;
}
export interface AppState {
@@ -133,5 +134,6 @@ export const getDefaultState = (): AppState => ({
simulationDays: '5',
displayedDays: '2',
showTherapeuticRange: true,
stickyChart: false,
}
});