UNPKG

eurostat-map

Version:

Reusable library to quickly create and customise web maps showing Eurostat data directly retrieved from Eurostat database.

17 lines (14 loc) 449 B
import { CompositionStatConfig } from '../CompositionStatConfig' /** * Statistical configuration for coxcomb maps. */ export interface CoxcombStatConfig extends CompositionStatConfig { /** Eurostat path. */ timeParameter?: string /** Times. */ times: string[] /** Time labels. */ timeLabels?: string[] /** Custom data path. */ customData?: Record<string, Record<string, Record<string, number>>> }