npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-echarts-simple

v0.1.5

Published

``` 一个基于vue2.x和echarts封装简单的图表组件,使其更简单、实用。 目前只完成带闪点的中国地图、世界地图 ```

Downloads

3

Readme

vue-echarts-simple\

一个基于vue2.x和echarts封装简单的图表组件,使其更简单、实用。
目前只完成带闪点的中国地图、世界地图

使用实例

安装
npm install vue-echarts-simple

全局引入
import simpleEcharts from 'vue-echarts-simple'
Vue.use(simpleEcharts);

局部引入
import simpleEcharts from 'vue-echarts-simple'
components: {
  EffectScatterMap: simpleEcharts.EffectScatterMap
},

使用
html:
<effect-scatter-map
  :scatterData="scatterData"
  :effectScatterData="effectScatterData"
  :geoConfig="{
    map: 'china',
  }"
></effect-scatter-map>

配置项列表(对象及数组参照echarts配置文档)

echarts配置项文档.

EffectScatterMap

| 参数 | 说明 | 类型 | 默认值 | 对应echarts配置项 | |:-------------------------|:-------------------------|:---------|:---------|:---------------------------| | width | 宽度 | String | 100% | 无 | | height | 高度 | String | 100% | 无 | | titleConfig | 标题配置 | Object | {} | title | | tooltipConfig | 地图鼠标悬浮提示配置信息 | Object | {} | tooltip | | legendConfig | 地图图例配置信息 | Object | {} | legend | | backgroundColor | 背景色配置 | Object | {} | backgroundColor | | geoConfig | 地图配置 | Object | {} | geo | | seriesScatterConfig | 普通点配置 | Object | {} | series-scatter | | seriesEffectScatterConfig| 闪点配置 | Object | {} | series-effectScatter | | scatterData | 普通数据 | Array | [] | series-scatter.data | | effectScatterData | 闪点数据 | Array | [] | series-effectScatter.data |

本项目安装运行

安装支持包

npm install

开发运行项目

npm run serve

打包项目

npm run build

校验文件

npm run lint

打npm包

npm run lib

本项目目录结构

├── lib   npm包打包文件存放目录
├── packages  组件源文件
│   └─── EffectScatterMap  带闪点的地图文件夹
│        ├── index.js  组件引入方法设置
│        └── EffectScatterMap.vue  组件实现文件
├── public  vue项目公用无需打包的静态文件
├── .gitignore  git提交忽略文件
├── .npmignore  npm包发布忽略文件
├── package.json  项目包管理文件
└ src  vue项目主目录
    ├── assets  组件静态资源
    │   └─── featureCollection  // 区域特征集合
    │         ├─── china.json 中国经纬度
    │         └─── world.json 世界经纬度
    ├── App.vue  vue项目入口文件
    ├── index.js npm包安装引入配置文件
    └── main.js  vue项目主配置文件

github仓库地址

github仓库地址.