Interface PolygonStyleOptions

interface PolygonStyleOptions {
    fill?: {
        colour?: string | number[] | ColourParams;
        style?: FillStyleType;
    };
    outline?: LineStyleOptions;
}

Properties

Properties

fill?: {
    colour?: string | number[] | ColourParams;
    style?: FillStyleType;
}