Ctrl + K
Get StartedStylesCoreCompsCDK
Actions
Action Sheet
Button
Button Group
Context Menu
Dropdown Button
Menu
Side Menu
Form & Editors
Checkbox
Color Box
Color Palette
Cron Job
Date & Time Box
Date & Time Picker
Form
Image Editor
Json Viewer
Number Box
One time password
Paint
Password Box
Phone Box
Query Builder
Range Slider
Rate Picker
Rest Api Generator
Search Box
Select Box
Selection List
Step Wizard
Switch
Tag Box
Text Box
Textarea
Tree View
Uploader
WYSIWYG
Navigation & Layout
Avatar
Badge
Bottom Navigation
Breadcrumb
Calendar
Chips
Circular Progress
Collapse
Comment
Conversation
Data Pager
Data Table
Drawer
File Explorer
Grid Layout Builder
Image
KBD
List
Loading
Map
Media Viewer
Navbar
Picker
Popover
Popup
Progress Bar
Qrcode
Rail Navigation
Result
Skeleton
Sliding Item
Tabs
Tag
Time Line
Toolbar
Tooltip
Dialog & Notifications
Alert
Dialog
Loading Dialog
Notification
Toast

Checkbox

import { AXCheckBoxModule } from '@acorex/components/check-box'; Checkbox component offers various features to enhance user interaction and understanding. It supports disabled and readonly modes, includes labels for descriptive text, provides hints for additional information, and allows for an indeterminate state. These capabilities make it a versatile tool for facilitating user selections and improving the overall user experience in applications.

Overview

In this section, you can test different options of this component and see the output in real time
Sample text hint long text with long note
Primary

Usage

A simple example of using ax-check-box
Preview
Code

Hint

You can add ax-form-hint to the check box
Preview
Code

Indeterminate

You can pass true to indeterminate property in ax-check-box and the value must be null
Preview
Code

Design Tokens

Design tokens are variables that define the visual style of ACoreX components. You can use them to change colors, typography, spacing, and other visual aspects. Default component colors use system surface colors.
--ax-comp-checkbox-border-radius0.25remBorder radius of the checkbox.
--ax-comp-checkbox-border-width1pxBorder width of the checkbox.
--ax-comp-checkbox-font-size0.875remFont size of the checkbox label.
--ax-comp-checkbox-line-height1.25remLine height of the checkbox label.
--ax-comp-checkbox-end-side-margin-s0.75remMargin on the end side of the checkbox (usually right in LTR).
--ax-comp-checkbox-end-side-hint-margin-t0.25remTop margin for the checkbox hint text.
--ax-comp-checkbox-bg-colorvar(--ax-sys-color-border-surface)Background color of the unchecked checkbox. Uses the system's border color.
--ax-comp-checkbox-checked-bg-colorvar(--ax-sys-color-#{$name}-surface)Background color of the checked checkbox. Uses a theme color.
--ax-comp-checkbox-checked-border-colorvar(--ax-sys-color-#{$name}-surface)Border color of the checked checkbox. Uses a theme color.
--ax-comp-checkbox-checked-bg-svg-fillvar(--ax-sys-color-on-#{$name}-surface)Fill color of the checkmark icon. Uses a theme color.
--ax-comp-checkbox-checked-box-shadow-outline-colorvar(--ax-sys-color-#{$name}-surface)Outline/box-shadow color of checked checkbox. Uses a theme color.
--ax-comp-checkbox-disabled-opacity0.5Opacity of the checkbox when disabled (0 = transparent, 1 = opaque).
--ax-comp-checkbox-readonly-opacity0.75Opacity of the checkbox when readonly (0 = transparent, 1 = opaque).

Props

tabIndexnumber0Specifies the tab index of the checkbox
readonlybooleanfalse Determines whether the checkbox is read-only.
disabledbooleanfalseDisables the checkbox.
checked-- Indicates whether the checkbox is checked.
valuebooleanfalseSets the value of the checkbox.
namestring-Sets the name of the checkbox.
idstring-Sets the ID of the checkbox.
indeterminatebooleanfalse Indicates whether the checkbox is in an indeterminate state.
lablebooleantrueSpecifies whether a label is associated with the checkbox.
hintbooleantrueSpecifies whether a hint is associated with the checkbox.

Methods

onBlur

AXFocusEvent

Specifies the function to be called when the checkbox loses focus.
onFocus

AXFocusEvent

Specifies the function to be called when the checkbox gains focus.
valueChange

any

Specifies the function to be called when the value of the checkbox changes.
onValueChanged

AXValueChangedEvent<any>

Specifies the function to be called when the value of the checkbox changes.
readonlyChange

boolean

Specifies the function to be called when the readonly state of the checkbox changes.
stateChange

AXComponentState

Specifies the function to be called when the state of the checkbox changes.
validationRulesChange

AXFormValidationRule[]

Specifies the function to be called when the validation rules of the checkbox change.
disabledChange

boolean

Specifies the function to be called when the disabled state of the checkbox changes.

Copyright ©2017-2025 ACoreX Labs Inc.

On this page