1.0.22 • Published 10 months ago

vue2-map-chart v1.0.22

Weekly downloads
-
License
ISC
Repository
github
Last release
10 months ago

Vue2 Map Chart

A Vue JS Component for displaying dynamic data on a world map.

preview

Credits

Installation

Install via npm using npm install vue2-map-chart

import MapChart from 'vue2-map-chart'

Usage

This component is most useful in creating a heat map for various countries. And will color countries differently based on a props passed.

The component requires a prop of countryData to be passed to it, which is a JS object formatted like so.

{
  "US": {
  count:100,
  percentage:'any string here'
  },
  "CA": {
  count:240,
  percentage:'any string here'
  },
  "GB": {
  count:180,
  percentage:'any string here'
  },
}

Where the key is a country's ISO 3166 Code and the value is a numerical value associated with it.

Example:

import MapChart from 'vue-map-chart'

<MapChart
  :countryData="{'US': 4, 'CA': 7, 'GB': 8, 'IE': 14, 'ES': 21}"
  highColor="#ff0000"
  lowColor="#aaaaaa"
  countryStrokeColor="#909090"
  defaultCountryFillColor="#dadada"
  />

Slots

SlotsDescriptionOptional
legend_headerHeader Slot of LegendCountry Name will shown here
legend_contentContent Slot for Legend Country Code Count & Percentage shown here

API

PropsDescriptionOptional
countryDataSee Usage Section above for detailsno
lowColorCountries with lower values will be colored more strongly with this coloryes
highColorCountries with higher values will be colored more strongly with this coloryes
defaultCountryFillColorCountries with no data will default to this coloryes
countryStrokeColorThe color of the border around countriesyes
legendBorderColor(WIP) The color of the legend's borderWIP
legendHeaderBackgroundColor(WIP) The background color of the legend's headerWIP
legendContentBackgroundColor(WIP) The background color of the legend's contentWIP
showLegend(WIP) If true, when you select a country a legend will appear on the screenWIP

Roadmap

  • Change Map type (World, Europe, single country, etc...) (WIP)
  • Click events
  • More customization
  • Export PDF/CSV
1.0.22

10 months ago

1.0.21

10 months ago

1.0.20

10 months ago

1.0.19

10 months ago

1.0.18

10 months ago

1.0.17

10 months ago

1.0.16

10 months ago

1.0.15

10 months ago

1.0.14

10 months ago

1.0.13

10 months ago

1.0.12

10 months ago

1.0.11

10 months ago

1.0.10

10 months ago

1.0.9

10 months ago

1.0.8

10 months ago

1.0.7

10 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3-1

10 months ago

1.0.3

10 months ago

1.0.2

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago