mirror of
https://github.com/mempool/mempool.git
synced 2024-12-28 09:14:26 +01:00
Hide 'dot' when hovering charts
This commit is contained in:
parent
c419b7dd1a
commit
88dd956354
@ -246,6 +246,7 @@ export class HashrateChartComponent implements OnInit {
|
|||||||
{
|
{
|
||||||
name: 'Hashrate',
|
name: 'Hashrate',
|
||||||
showSymbol: false,
|
showSymbol: false,
|
||||||
|
symbol: 'none',
|
||||||
data: data.hashrates,
|
data: data.hashrates,
|
||||||
type: 'line',
|
type: 'line',
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
@ -256,6 +257,7 @@ export class HashrateChartComponent implements OnInit {
|
|||||||
yAxisIndex: 1,
|
yAxisIndex: 1,
|
||||||
name: 'Difficulty',
|
name: 'Difficulty',
|
||||||
showSymbol: false,
|
showSymbol: false,
|
||||||
|
symbol: 'none',
|
||||||
data: data.difficulty,
|
data: data.difficulty,
|
||||||
type: 'line',
|
type: 'line',
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
|
@ -77,6 +77,7 @@ export class HashrateChartPoolsComponent implements OnInit {
|
|||||||
stack: 'Total',
|
stack: 'Total',
|
||||||
name: name,
|
name: name,
|
||||||
showSymbol: false,
|
showSymbol: false,
|
||||||
|
symbol: 'none',
|
||||||
data: grouped[name].map((val) => [val.timestamp * 1000, (val.share * 100).toFixed(2)]),
|
data: grouped[name].map((val) => [val.timestamp * 1000, (val.share * 100).toFixed(2)]),
|
||||||
type: 'line',
|
type: 'line',
|
||||||
lineStyle: { width: 0 },
|
lineStyle: { width: 0 },
|
||||||
|
@ -160,6 +160,7 @@ export class IncomingTransactionsGraphComponent implements OnInit, OnChanges {
|
|||||||
type: 'line',
|
type: 'line',
|
||||||
smooth: false,
|
smooth: false,
|
||||||
showSymbol: false,
|
showSymbol: false,
|
||||||
|
symbol: 'none',
|
||||||
lineStyle: {
|
lineStyle: {
|
||||||
width: 3,
|
width: 3,
|
||||||
},
|
},
|
||||||
|
Loading…
Reference in New Issue
Block a user