VTable/README.zh-CN.md

199 lines
5.2 KiB
Markdown
Raw Permalink Normal View History

2023-06-20 06:20:34 +00:00
<div align="center">
<a href="https://github.com/VisActor#gh-light-mode-only" target="_blank">
<img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_light.svg"/>
</a>
<a href="https://github.com/VisActor#gh-dark-mode-only" target="_blank">
<img alt="VisActor Logo" width="200" src="https://github.com/VisActor/.github/blob/main/profile/logo_500_200_dark.svg"/>
2023-06-20 06:20:34 +00:00
</a>
</div>
<div align="center">
<h1>VTable</h1>
</div>
<div align="center">
VTable不只是一款高性能的多维数据分析表格更是一个在行列间创作的方格艺术家。
<p align="center">
<a href="https://visactor.io/vtable">简介</a>
<a href="https://visactor.io/vtable/example">demo</a>
<a href="https://visactor.io/vtable/guide/Getting_Started/Getting_Started">教程</a>
<a href="https://visactor.io/vtable/option/ListTable">API</a>
2023-06-20 06:20:34 +00:00
</p>
![](https://github.com/visactor/vtable/actions/workflows/bug-server.yml/badge.svg)
![](https://github.com/visactor/vtable/actions/workflows/unit-test.yml/badge.svg)
[![npm Version](https://img.shields.io/npm/v/@visactor/vtable.svg)](https://www.npmjs.com/package/@visactor/vtable)
[![npm Download](https://img.shields.io/npm/dm/@visactor/vtable.svg)](https://www.npmjs.com/package/@visactor/vtable)
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/visactor/vtable/blob/main/LICENSE)
</div>
<div align="center">
[English](./README.md) | 简体中文
</div>
<div align="center">
video
</div>
# 简介
VTable 是 VisActor 可视化体系中的表格组件库,基于可视化渲染引擎 [VRender](https://github.com/VisActor/VRender) 进行封装。
核心能力如下:
2023-06-20 06:20:34 +00:00
1. 性能极致:支持百万级数据快速运算与渲染
2. 多维分析:多维数据自动分析与呈现
3. 表现力强:提供灵活强大的图形能力,无缝融合[VChart](https://github.com/VisActor/VChart)
# 仓库简介
本仓库包含如下 package
2023-09-01 11:44:51 +00:00
1. packages/vtable表格组件代码
2. packages/vtable-gantt: 甘特图组件代码
3. packages/vtable-editors: 表格编辑器组件代码
4. packages/vtable-export: 表格导出工具代码
5. packages/vtable-search: 表格搜索工具代码
6. packages/react-vtable: React 版本的表格组件
7. packages/vue-vtable: Vue 版本的表格组件
8. docs: 教程文档
2023-06-20 06:20:34 +00:00
# Usage 使用
2023-06-20 06:20:34 +00:00
## 安装
[npm package](https://www.npmjs.com/package/@visactor/vtable)
```bash
// npm
npm install @visactor/vtable
// yarn
yarn add @visactor/vtable
```
## 快速上手
```javascript
2023-07-28 07:27:58 +00:00
// this demo you can run on codesanbox https://codesandbox.io/s/vtable-simple-demo-g8q738
2023-06-20 06:20:34 +00:00
import * as VTable from '@visactor/vtable';
const columns = [
{
field: 'Order ID',
caption: 'Order ID'
},
{
field: 'Customer ID',
caption: 'Customer ID'
},
{
field: 'Product Name',
caption: 'Product Name'
},
{
field: 'Sales',
caption: 'Sales'
},
{
field: 'Profit',
caption: 'Profit'
}
2023-06-20 06:20:34 +00:00
];
const option = {
2023-08-28 03:43:53 +00:00
container: document.getElementById(CONTAINER_ID),
records: [
2023-07-05 04:37:08 +00:00
{
'Order ID': 'CA-2018-156720',
'Customer ID': 'JM-15580',
'Product Name': 'Bagged Rubber Bands',
Sales: '3.024',
Profit: '-0.605'
2023-07-05 04:37:08 +00:00
},
{
'Order ID': 'CA-2018-115427',
'Customer ID': 'EB-13975',
'Product Name': 'GBC Binding covers',
Sales: '20.72',
Profit: '6.475'
}
2023-07-05 04:37:08 +00:00
// ...
2023-06-20 06:20:34 +00:00
],
columns
2023-06-20 06:20:34 +00:00
};
const tableInstance = new VTable.ListTable(option);
```
##
[更多 demo 和详细教程](https://visactor.io/vtable)
2023-09-01 11:44:51 +00:00
# ⌨️ 开发
2023-06-20 06:20:34 +00:00
2023-07-28 07:27:58 +00:00
首先,全局安装 [@microsoft/rush](https://rushjs.io/pages/intro/get_started/)
```bash
$ npm i --global @microsoft/rush
```
接着将代码 clone 至本地:
```bash
# clone
$ git clone git@github.com:VisActor/VTable.git
$ cd VTable
# install dependencies
$ rush update
# start vtable demo
$ cd packages/vtable
2023-09-01 11:44:51 +00:00
# execute in file path: ./packages/vtable
2023-07-28 07:27:58 +00:00
$ rushx demo
2023-09-01 11:44:51 +00:00
# start site development server, execute in file path: ./
$ rush docs
# after execut git commit, please run the following command to update the change log. Please execute in file path: ./
$ rush change-all
2023-07-28 07:27:58 +00:00
```
2023-09-01 11:44:51 +00:00
# 📖 Documents
安装并且更新依赖后,可以执行 docs 命令,开启 VTable 的本地文档预览
```bash
# start vtable document server. execute in file path: ./
$ rush docs
```
2023-09-01 11:44:51 +00:00
# 🔗 相关链接
2023-06-20 06:20:34 +00:00
- [官网](https://visactor.io/vtable)
2023-11-03 11:44:43 +00:00
- [使用趋势](https://npm-compare.com/@visactor/vtable)
2023-06-20 06:20:34 +00:00
# 💫 生态系统
2023-06-20 06:20:34 +00:00
| Project | Description |
| ---------------------------------------------------------------------------- | ----------------- |
| [React-VTable](https://www.visactor.io/vtable/guide/Developer_Ecology/react) | VTable React 组件 |
2024-03-11 02:10:23 +00:00
# ⭐️ Star History
2024-03-11 02:10:23 +00:00
[![Star History Chart](https://api.star-history.com/svg?repos=visactor/vtable&type=Date)](https://star-history.com/#visactor/vtable&Date)
2023-06-20 06:20:34 +00:00
2023-09-01 11:44:51 +00:00
# 🤝 参与贡献
2023-06-20 06:20:34 +00:00
如想参与贡献,请先阅读 [行为准则](./CODE_OF_CONDUCT.md) 和 [贡献指南](./CONTRIBUTING.zh-CN.md)。
细流成河,终成大海!
<a href="https://github.com/visactor/vtable/graphs/contributors"><img src="https://contrib.rocks/image?repo=visactor/vtable" /></a>
# 许可证
[MIT 协议](./LICENSE)