I'm trying to set my x axis as integer. The numbers in the dataSource are integers. If I change the format to integer it won't display an integer on the axis.

I'm trying to set my x axis as integer. The numbers in the dataSource are integers. If I change the format to integer it won't display an integer on the axis.

What’s the actual range of the data here? From the emitted labels, it appears your data would all fall between 0.8 and 1.4. I suppose I could see a use case for an x axis which started at 0 and went to 2, with the only label between them a 1. Is that what you’re going for?
The data range can vary from 0 to any upper value. Sometimes it spans 0-1, other times 0-100, and in some cases 0-10000. The input values are always integers. However, the axis displays decimals depending on the range. It should always display integers, since the values represent the number of times each event occurs.
Ah, those are commas - not dots; the original screenshot didn’t make that clear. I wonder if the session locale is somehow causing issues with the formatting. I wouldn’t expect so but it’s been so long since I’ve been in this product area that I can’t say for certain. I’ll ask around.
Test it with xAxes.1.value.format : ###0 or blank. That should show you whether the problem is with the format string or not.
I'd always put a 0 before the decimal point so that it forces the zero display if the value is zero. Maybe it does anyway, but I've never noticed because I always ...