Compare commits

...

2 Commits

Author SHA1 Message Date
leccelecce
418707fae7
Merge 911834e223 into 1b57fb15a7 2025-11-27 12:00:41 -03:00
leccelecce
911834e223 UI: disable animations on all charts 2025-04-11 10:05:49 +01:00
3 changed files with 12 additions and 0 deletions

View File

@ -80,6 +80,9 @@ export function CameraLineGraph({
zoom: {
enabled: false,
},
animations: {
enabled: false,
},
},
colors: GRAPH_COLORS,
grid: {
@ -223,6 +226,9 @@ export function EventsPerSecondsLineGraph({
zoom: {
enabled: false,
},
animations: {
enabled: false,
},
},
colors: GRAPH_COLORS,
grid: {

View File

@ -25,6 +25,9 @@ export function StorageGraph({ graphId, used, total }: StorageGraphProps) {
zoom: {
enabled: false,
},
animations: {
enabled: false,
},
},
grid: {
show: false,

View File

@ -90,6 +90,9 @@ export function ThresholdBarGraph({
zoom: {
enabled: false,
},
animations: {
enabled: false,
},
},
colors: [
({ value }: { value: number }) => {