appearance

appearance of the form field.

  • Type: MatFormFieldAppearance

  • Default: legacy

import {NgMatFormOptions,NgMatFormFields} from 'ng-mat-forms';
// other imports here...

export class MyTestApp {

    public ngMatFormsOptions: NgMatFormOptions = {
        column: 3,
        errorMsgOnSubmit: false, //Field Changes trigger
        appearance: legacy
        // other options...
    };
}

Last updated