Hide 'dot' when hovering charts

This commit is contained in:
nymkappa 2022-02-25 13:06:33 +09:00
parent c419b7dd1a
commit 88dd956354
No known key found for this signature in database
GPG Key ID: E155910B16E8BD04
3 changed files with 4 additions and 0 deletions

View File

@ -246,6 +246,7 @@ export class HashrateChartComponent implements OnInit {
{
name: 'Hashrate',
showSymbol: false,
symbol: 'none',
data: data.hashrates,
type: 'line',
lineStyle: {
@ -256,6 +257,7 @@ export class HashrateChartComponent implements OnInit {
yAxisIndex: 1,
name: 'Difficulty',
showSymbol: false,
symbol: 'none',
data: data.difficulty,
type: 'line',
lineStyle: {

View File

@ -77,6 +77,7 @@ export class HashrateChartPoolsComponent implements OnInit {
stack: 'Total',
name: name,
showSymbol: false,
symbol: 'none',
data: grouped[name].map((val) => [val.timestamp * 1000, (val.share * 100).toFixed(2)]),
type: 'line',
lineStyle: { width: 0 },

View File

@ -160,6 +160,7 @@ export class IncomingTransactionsGraphComponent implements OnInit, OnChanges {
type: 'line',
smooth: false,
showSymbol: false,
symbol: 'none',
lineStyle: {
width: 3,
},