Fix axis labels css.

Change series smooth to false.
 Make charts margin smaller to match box container.
This commit is contained in:
Miguel Medeiros
2021-09-17 09:40:51 -03:00
parent 0e25c52e67
commit 8ddcd298b0
4 changed files with 22 additions and 5 deletions

View File

@@ -286,7 +286,12 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
{
type: 'category',
boundaryGap: false,
axisLine: { onZero: false },
axisLine: { onZero: true },
axisLabel: {
align: 'center',
fontSize: 11,
lineHeight: 12,
},
data: labels.map((value: any) => `${formatDate(value, 'M/d', this.locale)}\n${formatDate(value, 'H:mm', this.locale)}`),
}
],
@@ -294,6 +299,7 @@ export class MempoolGraphComponent implements OnInit, OnChanges {
type: 'value',
axisLine: { onZero: false },
axisLabel: {
fontSize: 11,
formatter: (value: number) => (`${this.vbytesPipe.transform(value, 2, 'vB', 'MvB', true)}`),
},
splitLine: {