From 180bc85a3c42cd6f27622c0d8adfcb95b331b75b Mon Sep 17 00:00:00 2001 From: Matthias Date: Fri, 20 Nov 2020 07:09:17 +0100 Subject: [PATCH] Enlarge chart area --- src/store/modules/layout.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/modules/layout.ts b/src/store/modules/layout.ts index ff129ccd..760c9b0a 100644 --- a/src/store/modules/layout.ts +++ b/src/store/modules/layout.ts @@ -37,8 +37,8 @@ export enum LayoutMutations { // Define default layouts const DEFAULT_TRADING_LAYOUT: GridItemData[] = [ { i: TradeLayout.botControls, x: 0, y: 0, w: 3, h: 3 }, - { i: TradeLayout.multiPane, x: 0, y: 3, w: 4, h: 7 }, - { i: TradeLayout.chartView, x: 4, y: 0, w: 8, h: 11 }, + { i: TradeLayout.multiPane, x: 0, y: 3, w: 3, h: 7 }, + { i: TradeLayout.chartView, x: 3, y: 0, w: 9, h: 11 }, { i: TradeLayout.tradeDetail, x: 0, y: 11, w: 5, h: 6 }, { i: TradeLayout.openTrades, x: 5, y: 11, w: 7, h: 5 }, { i: TradeLayout.tradeHistory, x: 5, y: 12, w: 7, h: 6 },