mirror of
https://github.com/mempool/mempool.git
synced 2025-02-20 13:34:40 +01:00
Update ISP pie chart colors
This commit is contained in:
parent
4fe3c308fe
commit
d9483dbd7a
1 changed files with 1 additions and 4 deletions
|
@ -132,9 +132,6 @@ export class NodesPerISPChartComponent implements OnInit {
|
|||
return;
|
||||
}
|
||||
data.push({
|
||||
itemStyle: {
|
||||
color: isp[0] === null ? '#7D4698' : undefined,
|
||||
},
|
||||
value: this.sortBy === 'capacity' ? isp[7] : isp[6],
|
||||
name: isp[1].replace('&', '') + (isMobile() || this.widget ? `` : ` (${this.sortBy === 'capacity' ? isp[7] : isp[6]}%)`),
|
||||
label: {
|
||||
|
@ -204,7 +201,7 @@ export class NodesPerISPChartComponent implements OnInit {
|
|||
}
|
||||
|
||||
this.chartOptions = {
|
||||
color: chartColors.slice(3),
|
||||
color: chartColors.filter((color) => color != '#5E35B1'), // Remove color that looks like Tor
|
||||
tooltip: {
|
||||
trigger: 'item',
|
||||
textStyle: {
|
||||
|
|
Loading…
Add table
Reference in a new issue