From 276ea8bdd59bc8b259f30ed5a7507144654a936d Mon Sep 17 00:00:00 2001 From: DiTus Date: Wed, 18 Mar 2026 22:51:44 +0100 Subject: [PATCH] Remove indicator titles from series to hide names on price axis --- js/ui/indicators-panel-new.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/indicators-panel-new.js b/js/ui/indicators-panel-new.js index 5d2038b..0e4b6bb 100644 --- a/js/ui/indicators-panel-new.js +++ b/js/ui/indicators-panel-new.js @@ -926,10 +926,10 @@ function renderIndicatorOnPane(indicator, meta, instance, candles, paneIndex, li }, paneIndex); } else { series = window.dashboard.chart.addSeries(LightweightCharts.LineSeries, { - color: plotColor, + color: plotColor, lineWidth: plot.width || indicator.params._lineWidth || lineWidth, lineStyle: plotLineStyle, - title: plot.title || '', + title: '', priceLineVisible: false, lastValueVisible: plot.lastValueVisible !== false }, paneIndex);