The X axis is dimensionless. To get the correspondence between bin index and frequency you need to know (a) the sample rate (in Hz), Fs
, and (b) the number of points in the FFT, N
. The centre frequency for the bin is then:
f = i * Fs / N
where f
is the bin frequency in Hz and i
is the bin index.
See this answer for a more complete explanation.