I've been utilizing the ngx-mat-datetime-picker library from angular-material-components to enable datetime selection. It's functioning effectively, but I'm searching for a way to insert text preceding the hour and minute inputs, such as 'HH' and 'MM'.
Here is what I currently have:
https://i.sstatic.net/scArK.png
And this is the desired output:
https://i.sstatic.net/3lwAK.png
If anyone could assist with this issue, it would be greatly appreciated.
This is the code snippet I am working with:
<mat-form-field>
<input matInput [ngxMatDatetimePicker]="dateStart" placeholder="Date Start" [(ngModel)]="dS" disabled>
<mat-datepicker-toggle matSuffix [for]="dateStart"></mat-datepicker-toggle>
<ngx-mat-datetime-picker #dateStart disabled="false"></ngx-mat-datetime-picker>
</mat-form-field>