MyGit

ElemeFE/v-charts

Fork: 1995 Star: 6801 (更新于 2024-12-12 15:06:42)

license: MIT

Language: JavaScript .

基于 Vue2.0 和 ECharts 封装的图表组件📈📊

最后发布版本: v1.18.0 ( 2018-10-15 23:59:52)

官方网址 GitHub网址

mark text

v-charts

Build Status NPM downloads Npm package Language License Join the chat

Document | Sample Project | English | 中文

Chart components based on Vue2.x and Echarts

Features

  • Uniform data format: Use an uniform data format that both convient for frontend and backend, and also easy to create and edit.
  • Simplified configuration: With simplified configuration items, complex requirements can be easily implemented.
  • Simple customization: Provide a variety of custom Echarts way, you can easily set the chart options.

Support

Modern browsers and Internet Explorer 10+, include pc and mobile browser.

Install

npm i v-charts echarts -S

Start

<template>
  <div>
    <ve-line :data="chartData"></ve-line>
  </div>
</template>

<script>
import VeLine from 'v-charts/lib/line.common'
export default {
  components: { VeLine },
  data () {
    return {
      chartData: {
        columns: ['date', 'PV'],
        rows: [
          { 'date': '01-01', 'PV': 1231 },
          { 'date': '01-02', 'PV': 1223 },
          { 'date': '01-03', 'PV': 2123 },
          { 'date': '01-04', 'PV': 4123 },
          { 'date': '01-05', 'PV': 3123 },
          { 'date': '01-06', 'PV': 7123 }
        ]
      }
    }
  }
}
</script>

Changelog

Detailed changes for each release are documented in the release notes or ChangeLog.

Contribution

Please make sure to read the Contributing Guide before making a pull request.

License

MIT

最近版本更新:(数据更新于 2024-10-03 16:59:46)

2018-10-15 23:59:52 v1.18.0

2018-07-11 12:25:12 v1.17.8

2018-07-10 12:09:40 v1.17.7

2018-06-26 17:27:31 v1.17.6

2018-06-25 22:29:54 v1.17.5

2018-06-22 14:51:54 v1.17.4

2018-06-19 13:26:17 v1.17.3

2018-06-18 14:11:33 v1.17.2

2018-06-16 15:20:24 v1.17.1

2018-06-15 18:15:02 v1.17.0

主题(topics):

echarts, vue

ElemeFE/v-charts同语言 JavaScript最近更新仓库

2024-12-22 13:19:55 gethomepage/homepage

2024-12-22 11:34:40 chris81605/Degrees-of-Lewdity_Cheat_Extended

2024-12-22 00:44:14 gorhill/uBlock

2024-12-21 12:14:02 layui/layui

2024-12-21 03:44:01 emberjs/ember.js

2024-12-20 02:57:09 nodejs/node