Go to file
2024-05-06 10:43:25 +08:00
.github feat: init openinula-vchart 2024-03-26 11:58:05 +08:00
.vscode feat: update vmind playground 2023-12-29 16:14:05 +08:00
common chore: upgrade dependencies 2024-05-06 10:43:25 +08:00
docs chore: upgrade dependencies 2024-05-06 10:43:25 +08:00
packages chore: upgrade dependencies 2024-05-06 10:43:25 +08:00
share Merge remote-tracking branch 'origin/main' into release/1.5.4 2023-10-30 14:41:57 +08:00
tools chore: upgrade dependencies 2024-05-06 10:43:25 +08:00
.editorconfig
.eslintignore perf: use group encode in static encodes 2023-11-03 16:07:56 +08:00
.gitattributes
.gitignore feat: add wx simple entry 2023-11-22 19:39:50 +08:00
.lintstagedrc
.prettierignore perf: use group encode in static encodes 2023-11-03 16:07:56 +08:00
.prettierrc.js
CODE_OF_CONDUCT.md
CONTRIBUTING.md chore: add readme for document 2023-08-28 17:16:30 +08:00
CONTRIBUTING.zh-CN.md chore: add readme for document 2023-08-28 17:16:30 +08:00
LICENSE
option chore(docs): path update 2023-09-06 17:19:49 +08:00
package-lock.json feat: skylark chart generation 2023-12-18 22:10:54 +08:00
package.json feat: skylark chart generation 2023-12-18 22:10:54 +08:00
README.md Update README.md 2023-12-13 14:29:52 +08:00
README.zh-CN.md feat: optmize wx env 2023-09-13 19:11:26 +08:00
rush.json feat: init openinula-vchart 2024-03-26 11:58:05 +08:00

VChart

VChart, more than just a cross-platform charting library, but also an expressive data storyteller.

IntroductionDemoTutorialAPICross-Platform

npm Version npm Download PRs Welcome

license

English| 简体中文

video

Introduction

VChart is a charting component library in VisActor visualization system. It wraps the charting logic based on visual grammar library VGrammar and the component encapsulation based on visual rendering engine VRender. The core capabilities are as follows:

  1. Cross-platform: Automatically adapt to desktop, H5, and multiple small program environments
  2. Storytelling: Comprehensive annotation, animation, flow control, narrative templates, and other enhanced features for visual storytelling
  3. Scenes: Deliver visual storytelling capabilities to end-users, unlock developer productivity

Repository Introduction

This repository includes the following packages:

  1. vchart: The core code repository of VChart
  2. react-vchart: The VChart component encapsulated based on React
  3. taro-vchart: The VChart component encapsulated based on Taro
  4. lark-vchart: The VChart component encapsulated based on Lark miniAPP
  5. tt-vchart: The VChart component encapsulated based on TikTok miniAPP
  6. block-vchart: The VChart component encapsulated based on Lark Block
  7. wx-vchartThe VChart component encapsulated based on Wx miniAPP
  8. docs: VChart site source code, and also contains all Chinese and English documents, chart sample codes, etc. of the site.

🔨 Usage

📦 Installation

# npm
$ npm install @visactor/vchart

# yarn
$ yarn add @visactor/vchart

📊 A Chart Example

import VChart from '@visactor/vchart';

const spec = {
  type: 'bar',
  data: [
    {
      id: 'barData',
      values: [
        { month: 'Monday', sales: 22 },
        { month: 'Tuesday', sales: 13 },
        { month: 'Wednesday', sales: 25 },
        { month: 'Thursday', sales: 29 },
        { month: 'Friday', sales: 38 }
      ]
    }
  ],
  xField: 'month',
  yField: 'sales',
  crosshair: {
    xField: { visible: true }
  }
};

// 'chart' is the id of your dom container, such as <div id="chart"></chart>
const vchart = new VChart(spec, { dom: 'chart' });
vchart.renderAsync();

⌨️ Development

First of all, please install @microsoft/rush

$ npm i --global @microsoft/rush

Then clone locally:

# clone
$ git clone git@github.com:VisActor/VChart.git
$ cd VChart
# install dependencies
$ rush update
# start vchart development server
$ rush start
# start react-vchart development server
$ rush react
# start site development server
$ rush docs

📖 Documents

After installation & clone & update, run docs to preview documents locally.

# start vchart document server
$ rush docs

💫 Ecosystem

Project Description
React-VChart React interface for @VisActor/VChart
OMI Web Components Framework

🤝 Contribution PRs Welcome

If you would like to contribute, please read the Code of Conduct and our contributing guide first。

Small streams converge to make great rivers and seas!