How to convert the calendar into 24h format?
<form>
<div [formGroup]="formGroup">
<ng-bootstrap-datetime-angular
placeholder="Select DateTime"
inputDatetimeFormat="dd/MM/yyyy HH:mm "
formControlName="activeEndDate"
name="activeEndDate"
></ng-bootstrap-datetime-angular>
</div>
</form>
formGroup: FormGroup;
ngOnInit() {
this.formGroup = new FormGroup({
activeEndDate: new FormControl(null, {
validators: [Validators.required]
})
});
}