From 060a8b8797a7c5c3b7d3a9f9efda32212d0ed24d Mon Sep 17 00:00:00 2001 From: Linkie Link Date: Fri, 12 Jan 2024 09:25:19 +0100 Subject: [PATCH] fix: set the background to solid and overide backgroundGradient settings (#727) --- src/components/Trade/TradeChart/index.tsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/components/Trade/TradeChart/index.tsx b/src/components/Trade/TradeChart/index.tsx index d0e575fd..a1535274 100644 --- a/src/components/Trade/TradeChart/index.tsx +++ b/src/components/Trade/TradeChart/index.tsx @@ -50,6 +50,9 @@ export default function TradeChart(props: Props) { theme: 'dark', overrides: { 'paneProperties.background': '#220E1D', + 'paneProperties.backgroundType': 'solid', + 'paneProperties.backgroundGradientStartColor': '#220E1D', + 'paneProperties.backgroundGradientEndColor': '#220E1D', 'linetooltrendline.linecolor': 'rgba(255, 255, 255, 0.8)', 'linetooltrendline.linewidth': 2, },