eurostat-map
Version:
Reusable library to quickly create and customise web maps showing Eurostat data directly retrieved from Eurostat database.
43 lines (30 loc) • 1.03 kB
TypeScript
import type { MapInstance } from '../../core/MapInstance'
import type { CoxcombStatConfig } from './CompositionStatConfig'
/**
* Coxcomb map type.
*/
export interface CoxcombMap extends MapInstance {
catColors(): any
catColors(v: any): this
catLabels(): any
catLabels(v: any): this
noDataFillStyle(): string
noDataFillStyle(v: string): this
coxcombMaxRadius(): number
coxcombMaxRadius(v: number): this
coxcombMinRadius(): number
coxcombMinRadius(v: number): this
coxcombRings(): boolean
coxcombRings(v: boolean): this
coxcombStrokeFill(): string
coxcombStrokeFill(v: string): this
coxcombStrokeWidth(): number
coxcombStrokeWidth(v: number): this
hoverColor(): string
hoverColor(v: string): this
classifierSize(): any
classifierSize(v: any): this
coxcombOffsets(): { x: number; y: number }
coxcombOffsets(v: { x: number; y: number }): this
statCoxcomb(config: CoxcombStatConfig): this
}