Make tooltip style looks bigger

This commit is contained in:
Miguel Medeiros
2021-10-07 16:19:57 -03:00
parent fa2d2e60b5
commit f66e0a2c12
2 changed files with 5 additions and 4 deletions

View File

@@ -163,7 +163,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
trigger: 'axis',
alwaysShowContent: false,
position: (pos, params, el, elRect, size) => {
const positions = { top: (this.template === 'advanced') ? 30 : -30 };
const positions = { top: (this.template === 'advanced') ? 0 : -30 };
positions[['left', 'right'][+(pos[0] < size.viewSize[0] / 2)]] = 60;
return positions;
},