The increment value of the fft say deltaF = 1/N .. where N is the number of samples in time domain. To play with this increment value, you could append zeros at the end of your signal..
Example if you have 64 samples (N =64) and you apply an fft to that signal, you would get in frequency domain increments for deltaF = 1/N = 1/64.
If you add say 36 zeros in the end of the 64 samples in time domain you would get N = 64 + 36 = 100 and applying fft to that you would get increments of deltaF = 1/100 .