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-i

v0.5.0

Published

> 在Vue使用标签声明创建eCharts图表

Downloads

24

Readme

Vue eCharts I

在Vue使用标签声明创建eCharts图表

Install

npm install vue-charts-i --save

Usage

import Vue from 'vue'
import VueEchart from "vue-echart-i"

Vue.use( VueEchart );
<i-echarts>
    <i-bar :data="data" :name="name" @click="eventHandle"></i-bar>
    <i-x-axis :data="xAxis"></i-x-axis>
    <i-y-axis></i-y-axis>
</i-echarts>

更多配置参数请参考 echarts 配置项

Components

<i-echarts>
    <i-bar>
        <!-- 设置此图表的专用提示工具 -->
        <i-tooltip></i-tooltip>
    </i-bar>
    <i-line>
        <i-tooltip></i-tooltip>
    </i-line>
    <i-series v-for="radar in arr">
        <i-radars>
        </i-radars>
    </i-series>
    <i-grid>
        <i-tooltip></i-tooltip>
    </i-grid>
    <!-- 设置全局提示工具 -->
    <i-tooltip></i-tooltip>
    <i-x-axis></i-x-axis>
    <i-y-axis></i-y-axis>
    <i-legend></i-legend>
    <i-radar></i-radar>
</i-echarts>

Versions

v0.1.3

  • 修复部分功能失效的BUG

v0.2.0

  • 添加line和bar的事件绑定,允许使用vue原生语法@click="<func>"v-on:click="<func>"将鼠标事件绑定至指定组件,可以使用的事件包含:click、dblclick、mousedown、mousemove、mouseup、mouseover、mouseout

v0.2.1

  • 新增i-series标签用于v-for循环,例:<i-series v-for="k in array"></i-series>

v0.2.2

  • 修复echarts创建canvas时删除vue components占用用节点使得数据更新时插入节点失败导致系统宕机的错误
  • 修复i-series标签prop不存在导致的报错

v0.3.0

  • 添加radar雷达图表,添加radars雷达图数据描述

v0.3.1

  • 修复同一图表中图表个数改变但图表刷新无效的问题

v0.4.0

  • 增加饼状图
  • 修复依赖项错误

v0.4.1

  • 修复同一图表中图表个数改变但图表刷新无效的问题

v0.4.2

  • 修复显示内容之外的组件(如坐标、图例等)事件无法触发的问题

v0.4.3

  • 修复同一图表中图表个数改变但图表刷新无效的问题

v0.5.0

  • 新增轴滚动组件dataZoom
  • 修复其他数据类型限制