fixed plots style

This commit is contained in:
Ayzen
2025-09-30 14:35:18 +03:00
parent bfb82fce2a
commit f6c89f5eda

View File

@ -325,8 +325,21 @@ export class SettingsManager {
}
const layoutOverrides = {
...plotConfig.layout,
title: { text: title, font: { size: 16, color: '#f1f5f9' } }
title: { text: title, font: { size: 16, color: '#f1f5f9' } },
xaxis: {
...plotConfig.layout?.xaxis,
gridcolor: '#334155',
zerolinecolor: '#475569',
color: '#cbd5e1',
fixedrange: false
},
yaxis: {
...plotConfig.layout?.yaxis,
gridcolor: '#334155',
zerolinecolor: '#475569',
color: '#cbd5e1',
fixedrange: false
}
};
const configOverrides = {