Compare commits

...

2 Commits

Author SHA1 Message Date
leccelecce
9f5c6f47dd
Merge 911834e223ac612bcedd4603b4071ecf0f4cf9e1 into 81faa8899d45dc2ff5d0bc0f7fadfa5c500c814c 2025-11-05 11:21:15 -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 }) => {