When setting as "wrap always" for chained method calls, anything with a this qualifier is, in my opinion, incorrectly wrapped before the first method call.
i.e.:
this.myVar
.myMethod()
.mySecondMethod();
instead of:
this.myVar.myMethod()
.mySecondMethod();
If "align when multiline" is also on for chained method calls, it also doesn't seem to align to any period or variable name or keyword in particular, as shown above (in my case that's 2 tabs worth).