what property can I use to move my colorPicker's popover to display on the left?

75 Views Asked by At

<input placement="left" class="form-control colorPickerStyle" id="areaColor" name="areaColor" [(colorPicker)]="selectedArea.colour" [style.background]="selectedArea.colour" [cpPresetColors]="['#000', '#2889e9', '#e920e9', '#fff500', 'rgba(236,64,64,0.8)']" [cpOKButton]="true" [cpOKButtonClass]="'btn btn-primary btn-xs'" [cpCancelButton]="true" [cpCancelButtonClass]="'btn btn-primary btn-xs'" [cpOutputFormat]="'rgba'" (colorPickerChange)="colorChanged($event)" [disabled]="!canUpdate && !isNameEditMode" /> How do I make my colorPicker's popover to display on left?enter image description here

0

There are 0 best solutions below