I don't think there is a JVM implementation that allows you to change max heap size after it has started.
Max. Heap size is like a hard disk partition limit on your disk drive. You can set up a very large partition (i.e. heap size by -Xmx), and let usage grow and fit it up slowly. However, once the max limit is set, you can't change it.
I image resizing heap space max limit is like repartitiong disk space. While it is possible to be done, it will be so slow. is it worth it?
On a side note, I had a long GC delay issue in the earlier version of JVM when max heap size because gc does not kick in often enough when the heap size is bigger. When it does, it tries to clean up everything (full gc) at one short, and everything pause for a few seconds. I think the incremental gc fixes it to some degree, but i didn't monitor closely to confirm it.