Label and size in Angular Check box component
27 Apr 20243 minutes to read
This section explains the different sizes and labels.
Label
The CheckBox caption can be defined using the label
property. This reduces the manual addition of label for CheckBox. You can customize the label position before or after the CheckBox through the labelPosition
property.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { CheckBoxModule } from '@syncfusion/ej2-angular-buttons'
import { enableRipple } from '@syncfusion/ej2-base'
import { Component } from '@angular/core';
@Component({
imports: [
CheckBoxModule
],
standalone: true,
selector: 'app-root',
template: `<div class="e-section-control">
<ul>
<!-- Label position - Left. -->
<li><ejs-checkbox label="Left Side Label" labelPosition="Before"></ejs-checkbox></li>
<!-- Label position - Right. -->
<li><ejs-checkbox label="Right Side Label" [checked]="true"></ejs-checkbox></li>
</ul>
</div>`
})
export class AppComponent { }
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));
Size
The different CheckBox size are default and small. To reduce the size of default CheckBox to small, set the cssClass
property to e-small
.
import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { CheckBoxModule } from '@syncfusion/ej2-angular-buttons'
import { enableRipple } from '@syncfusion/ej2-base'
import { Component } from '@angular/core';
@Component({
imports: [
CheckBoxModule
],
standalone: true,
selector: 'app-root',
template: `<div class="e-section-control">
<ul>
<!-- Small CheckBox. -->
<li><ejs-checkbox label="Small" cssClass="e-small"></ejs-checkbox></li>
<!-- Default CheckBox. -->
<li><ejs-checkbox label="Default"></ejs-checkbox></li>
</ul>
</div>`
})
export class AppComponent { }
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));