Having trouble getting help?
Contact Support
Contact Support
Customize color picker in Angular Document editor component
28 Mar 20252 minutes to read
Document editor provides an options to customize the color picker using colorPickerSettings
in the document editor settings. The color picker offers customization options for default appearance, by allowing selection between Picker or Palette mode, for font and border colors.
Similarly, you can use documentEditorSettings
property for DocumentEditor also.
The following example code illustrates how to customize the color picker in the document editor container.
import { Component, OnInit, ViewChild } from '@angular/core';
import {
ToolbarService,
DocumentEditorContainerComponent,
} from '@syncfusion/ej2-angular-documenteditor';
import { DocumentEditorContainerModule } from '@syncfusion/ej2-angular-documenteditor';
@Component({
selector: 'app-container',
standalone: true,
imports: [DocumentEditorContainerModule],
providers: [ToolbarService],
template: `<ejs-documenteditorcontainer #documenteditor_default
serviceUrl="https://services.syncfusion.com/angular/production/api/documenteditor/"
height="600px"
style="display:block"
[documentEditorSettings]= "colorPickerSettings"
[enableToolbar]=true >
</ejs-documenteditorcontainer>
`,
})
export class AppComponent implements OnInit {
@ViewChild('documenteditor_default')
public container?: DocumentEditorContainerComponent;
public colorPickerSettings = {
colorPickerSettings: {
mode: 'Palette',
modeSwitcher: true,
showButtons: true,
},
};
ngOnInit(): void {}
}
Property | Behaviour |
---|---|
columns | It is used to render the ColorPicker palette with specified columns. Defaults to 10 |
disabled | It is used to enable / disable ColorPicker component. If it is disabled the ColorPicker popup won’t open. Defaults to false |
mode | It is used to render the ColorPicker with the specified mode. Defaults to ‘Picker’ |
modeSwitcher | It is used to show / hide the mode switcher button of ColorPicker component. Defaults to true |
showButtons | It is used to show / hide the control buttons (apply / cancel) of ColorPicker component. Defaults to true |