This commit is contained in:
wangshiming
2022-04-18 13:30:42 +08:00
parent 6fcb57a45e
commit 548460d986
3 changed files with 9 additions and 3 deletions

View File

@ -53,7 +53,13 @@ export class BusitableCurveComponent implements OnInit, OnChanges {
nice: true,
},
});
this.chart.axis('value', {
label: {
formatter: (val: any) => {
return val;
},
},
});
this.chart.tooltip({
showCrosshairs: true, // 展示 Tooltip 辅助线
shared: true,