From 5c9d44e9ebfc0bdf79558940e2d9239dc4a47a08 Mon Sep 17 00:00:00 2001 From: Miguel Medeiros Date: Fri, 1 Oct 2021 00:35:08 -0300 Subject: [PATCH] Fix dotted line style at tx chart. Remove dotted line from inverted mempool chart. --- .../incoming-transactions-graph.component.ts | 2 +- .../app/components/mempool-graph/mempool-graph.component.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/src/app/components/incoming-transactions-graph/incoming-transactions-graph.component.ts b/frontend/src/app/components/incoming-transactions-graph/incoming-transactions-graph.component.ts index d57ce616e..1edd5c208 100644 --- a/frontend/src/app/components/incoming-transactions-graph/incoming-transactions-graph.component.ts +++ b/frontend/src/app/components/incoming-transactions-graph/incoming-transactions-graph.component.ts @@ -133,7 +133,7 @@ export class IncomingTransactionsGraphComponent implements OnInit, OnChanges { symbol: 'none', lineStyle: { color: '#fff', - opacity: 0.75, + opacity: 1, width: 2, }, data: [{ diff --git a/frontend/src/app/components/mempool-graph/mempool-graph.component.ts b/frontend/src/app/components/mempool-graph/mempool-graph.component.ts index e5be2556e..45c00aead 100644 --- a/frontend/src/app/components/mempool-graph/mempool-graph.component.ts +++ b/frontend/src/app/components/mempool-graph/mempool-graph.component.ts @@ -134,8 +134,8 @@ export class MempoolGraphComponent implements OnInit, OnChanges { symbol: 'none', lineStyle: { color: '#fff', - opacity: 0.75, - width: 2, + opacity: 1, + width: this.inverted ? 2 : 0, }, data: [{ yAxis: '1000000',