I have a group of radio buttons in an Angular 4 Material app:
<md-radio-group fxLayout fxLayoutAlign="center center" fxLayoutGap="30px">
<md-radio-button value="1">Date</md-radio-button>
<md-radio-button value="2">Status</md-radio-button>
<md-radio-button value="3">From</md-radio-button>
<md-radio-button value="4">To</md-radio-button>
</md-radio-group>
I went through the docs and samples and wasn't able to figure out how to give a label to this group. I need something like this but with proper styling:

What is the intended way in Angular Material of adding a label to a radio group?
Obviously, we could add a label and style it from scratch, but it doesn't look terribly productive for the framework of heavily styled components.