src/lib/interface/shape-options.ts
Properties |
|
| fillColor |
fillColor:
|
Type : string
|
| Optional |
| fillOpacity |
fillOpacity:
|
Type : number
|
| Optional |
| strokeColor |
strokeColor:
|
Type : string
|
| Optional |
| strokeOpacity |
strokeOpacity:
|
Type : number
|
| Optional |
| strokeWeight |
strokeWeight:
|
Type : number
|
| Optional |
| visible |
visible:
|
Type : boolean
|
| Optional |
| zIndex |
zIndex:
|
Type : number
|
| Optional |
export interface ShapeOptions {
fillColor?: string;
fillOpacity?: number;
strokeColor?: string;
strokeOpacity?: number;
strokeWeight?: number;
visible?: boolean;
zIndex?: number;
}