Dylan,
Greetings from Syncfusion.
We have analyzed your query and based on that, we suggest
that you use the axisLabelRender event. Through this event we can render
only integer values.
We have modified your shared sample for your reference.
Code-snippet:
|
public
axisLabelRender(args: any): void {
if(args.axis.name
=== 'primaryYAxis') {
if
(Number(args.text) % 1 !== 0) {
args.cancel = true;
}
}
};
|
Screenshot:

Sample: https://stackblitz.com/edit/stackblitz-starters-vexh5l?file=src%2Fmain.ts
Kindly revert us if you have any concerns.
Regards,
Nishanthi