Angular ColorBox - Overview
The ColorBox is a UI component that allows an end user to enter a color or pick it out from the drop-down editor.
The following code adds a simple ColorBox to your page.
HTML
TypeScript
- <dx-color-box
- [(value)]="color">
- </dx-color-box>
- import { DxColorBoxModule } from "devextreme-angular";
- // ...
- export class AppComponent {
- color: string = "#FF0000"
- }
- @NgModule({
- imports: [
- // ...
- DxColorBoxModule
- ],
- // ...
- })
The ColorBox accepts colors in hexadecimal ("#FF0000"), RGB ("rgb(255, 0, 0)") and RGBA ("rgba(255, 0, 0, 1)") formats, as well as color names. When an end user selects a color from the drop-down editor, the textual representation of the selected color is hexadecimal.
See Also
- Configure a UI Component: Angular | Vue | React | jQuery | AngularJS | Knockout
- ColorBox - Handle the Value Change Event
- ColorBox - Support Alpha Channel
- ColorBox - Keyboard Support
- ColorBox API Reference
Feel free to share topic-related thoughts here.
If you have technical questions, please create a support ticket in the DevExpress Support Center.
Thank you for the feedback!
If you have technical questions, please create a support ticket in the DevExpress Support Center.