I am looking to enhance my md-radio-buttons by adding connecting lines between them in a component that uses dynamic data.
<md-radio-group ng-model="selected" layout="row">
<div ng-repeat="i in items">
<label>{{i.name}}</label>
<md-radio-button value="{{i}}"></md-radio-button>
</div>
</md-radio-group>
The goal is to have a line drawn between every pair of buttons. The length of these lines should initially be set as a minimum distance apart, but can automatically increase if necessary.