DataV

Vue数据可视化组件库(类似阿里DataV,大屏数据展示),提供SVG的边框及装饰、图表、水位图、飞线图等组件,简单易用,长期更新(React版已发布)

MIT License

Downloads
7.2K
Stars
9K
Committers
13

Bot releases are hidden (Show)

DataV - V2.3.0-alpha (2019-07-04)

Published by jiaming743 over 5 years ago

Directory Structure Change

  • before

    .
    ├── components
    │   ├── borderBox1
    │   │   └── index.vue
    │   ├── borderBox2
    │   │   └── index.vue
    │   ├── etc.
    │   └── index.js
    ├── mixins
    │   └── autoResize.js
    ├── util
    │   └── index.js
    ├── index.js
    ├── package.json // main: 'index.js'
    └── etc.
    
  • after

    .
    ├── lib // After compilation
    │   ├── components
    │   │   ├── borderBox1
    │   │   |   ├── src
    │   │   |   |   ├── main.vue
    │   │   |   |   └── main.css
    │   │   |   └── index.js
    │   │   ├── etc.
    │   │   └── index.js
    │   ├── mixin
    │   │   └── autoResize.js
    │   ├── util
    │   │   └── index.js
    │   └── index.js
    ├── publish // For pre-publish process
    ├── src // For development environments
    │   ├── components
    │   │   ├── borderBox1
    │   │   |   ├── src
    │   │   |   |   └── main.vue
    │   │   |   └── index.js
    │   │   ├── etc.
    │   │   └── index.js
    │   ├── mixin
    │   │   └── autoResize.js
    │   ├── util
    │   │   └── index.js
    │   └── index.js
    ├── package.json // main: '/lib/index.js'
    ├── publish.js
    └── etc.
    
  • Introduced on demand

    import borderBox1 from '@jiaminghi/data-view/lib/components/borderBox1'
    
    Vue.use(borderBox1)
    
DataV - V2.2.0-alpha (2019-06-29)

Published by jiaming743 over 5 years ago

New

  • borderBox
  • decoration
DataV - V2.1.1-alpha (2019-06-28)

Published by jiaming743 over 5 years ago

Bug Fixes

  • autoResize: Exception caused by autoResize mixin.
  • charts: Legend is blocked by slot and can't click.
DataV - V2.1.0-alpha (2019-06-27)

Published by jiaming743 over 5 years ago

New

  • conicalColumnChart
  • scrollRankingBoard
DataV - V2.0.0-alpha (2019-06-26)

Published by jiaming743 over 5 years ago

Perfect

  • SVG: Refactoring borderbox and decoration components with SVG (Volume dropped to 6%).
  • charts: New charting component that supports animation.
  • compatibility: Better data compatibility.

New

  • digitalFlop
  • flylineChart
  • borderBox
  • decoration

Components

  • prefix: Components add dv prefix to prevent conflicts.
<!-- v 1.x.x -->
<decoration-1 />

<!-- v 2.x.x -->
<dv-decoration-1 />