Hi,
There is no option for that.
If you want to do that you will have to change the lines:
$formatVal=$currencyClass->format($formatVal,$currency);
if($key!=0){ $oldVal=$currencyClass->format($oldVal,$currency); }
by:
$formatVal=str_replace(',00','',$currencyClass->format($formatVal,$currency));
if($key!=0){ $oldVal=str_replace(',00','',$currencyClass->format($oldVal,$currency)); }
in the file administrator/components/com_hikashop/classes/filter.php
However, that is a core file of HikaShop so you will loose that modification when you update HikaShop.