VTable/packages/vtable
2024-11-15 17:42:56 +08:00
..
__tests__ fix: highlightInRange feature does not include the header 2024-11-05 22:34:30 +08:00
examples feat: add HeaderHighlightPlugin 2024-11-15 17:42:56 +08:00
nodejs
scripts chore: enlarge bugserver trigger intercal 2024-09-06 18:23:09 +08:00
src fix: fix row pos in HeaderHighlightPlugin 2024-11-15 17:42:56 +08:00
.eslintrc.js
bundler.config.js
CHANGELOG.json build: prelease version 1.10.5 2024-11-11 07:56:35 +00:00
CHANGELOG.md build: prelease version 1.10.5 2024-11-11 07:56:35 +00:00
jest.config.js
package.json fix: call renderWithRecreateCells should not effect colWidth when widthMode is adaptive #2835 2024-11-14 20:02:14 +08:00
README.md
setup-mock.js
tsconfig.eslint.json
tsconfig.json

VTable

VTable is not just a high-performance multidimensional data analysis table, but also a grid artist that creates art between rows and columns.

Introduction • demo • Tutorial • API•

npm Version npm Download license

English| 简体中文

video

Introduction

VTable is a canvas table library based on visual rendering engine VRender.

The core capabilities are as follows:

  1. Extreme performance: Supports fast computation and rendering of millions of data points.
  2. Multidimensional analysis: Automatically analyzes and presents multidimensional data.
  3. Strong expressiveness: Provides flexible and powerful graphic capabilities, seamlessly integrating with charts of VChart.

Repo Intro

This repository includes the following packages:

  1. vtable: VTable components
  2. vtable-docs: VTable documentation

Usage

Installation

npm package

// npm
npm install @visactor/vtable

// yarn
yarn add @visactor/vtable

Quick Start

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",
    }
];

const option = {
  records:[
      {
      "Order ID": "CA-2018-156720",
      "Customer ID": "JM-15580",
      "Product Name": "Bagged Rubber Bands",
      "Sales": "3.024",
      "Profit": "-0.605"
  },
  {
      "Order ID": "CA-2018-115427",
      "Customer ID": "EB-13975",
      "Product Name": "GBC Binding covers",
      "Sales": "20.72",
      "Profit": "6.475"
  },
  ...
  ],
  columns,
  widthMode:'standard'
};
const tableInstance = new VTable.ListTable(document.getElementById(CONTAINER_ID), option);




More demos and detailed tutorials

Related Links

Ecosystem

Project Description
AI-generated Components AI-generated table component.

Contribution

If you would like to contribute, please read the Code of Conduct Guide first。

Small streams converge to make great rivers and seas!

License

MIT License