New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

vue-map-chart-update

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-map-chart-update

VueJS Map Chart

  • 0.0.12
  • latest
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Vue Map Chart

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

preview

Credits

  • Most of this code is copied from https://github.com/Ghrehh/vue-world-map
  • Map SVG amCharts

Installation

Install via npm using npm install vue-map-chart

import MapChart from 'vue-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": 100,
  "CA": 120,
  "GB": 400,
}

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"
  />

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

FAQs

Package last updated on 10 Dec 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc