There is no natural way to do it at the moment, but there is some way.
You can add an annotation of style line to your domain values, and at any given point in time, only the domain point where you want the line to appear has an annotation. That will cause the vertical line at that location and no where else, and you can redraw the chart with its new location anytime you want it to move.
You should add the domain role column just after your axis values, add it the 'annotation' role, and put a non empty string (for example a ' ') for the location you want a line). This is not completely documented at the moment, but you should specify {annotations: {style: 'line'}} in order for them to appear as lines.
Viz Kid