@visactor/univer-vchart-plugin
TypeScript icon, indicating that this package has built-in type declarations

2.0.0 • Public • Published

univer-vchart-plugin

The vchart univer plugin encapsulates the capability to create chart overlays within Univer.

npm Version npm Download PRs Welcome

license

English | 简体中文

Introduction

VChart is a chart component library within the VisActor visualization system. Univer is an open-source Office suite. Using the univer-vchart-plugin, you can easily create chart overlays.

🔨 Usage

📦 Installation

# npm
$ npm install @visactor/univer-vchart-plugin

# pnpm
$ pnpm add @visactor/univer-vchart-plugin

📊 A Simple Chart

import {
  UniverVChartPlugin,
  CREATE_VCHART_COMMAND_ID,
} from "@visactor/univer-vchart-plugin";

export function setupUniver() {
  const univer = new Univer({
    theme: defaultTheme,
    locale: LocaleType.EN_US,
    locales: {
      [LocaleType.EN_US]: enUS,
    },
  });
  univer.registerPlugin(UniverVChartPlugin);
}

export function setupVChartDemo($toolbar: HTMLElement, univerAPI: FUniver) {
  const $button = document.createElement("a");
  $button.textContent = "Create vchart demo";
  $toolbar.appendChild($button);

  $button.addEventListener("click", async () => {
    if (!univerAPI) throw new Error("univerAPI is not defined");

    const activeWorkbook = univerAPI.getActiveWorkbook();
    if (!activeWorkbook) throw new Error("activeWorkbook is not defined");
    const activeSheet = activeWorkbook.getActiveSheet();
    if (!activeSheet) throw new Error("activeSheet is not defined");

    await univerAPI.executeCommand(CREATE_VCHART_COMMAND_ID, {
      spec: {
        type: "line",
        data: {
          values: [
            {
              time: "2:00",
              value: 8,
            },
            {
              time: "4:00",
              value: 9,
            },
            {
              time: "6:00",
              value: 11,
            },
            {
              time: "8:00",
              value: 14,
            },
            {
              time: "10:00",
              value: 16,
            },
            {
              time: "12:00",
              value: 17,
            },
            {
              time: "14:00",
              value: 17,
            },
            {
              time: "16:00",
              value: 16,
            },
            {
              time: "18:00",
              value: 15,
            },
          ],
        },
        xField: "time",
        yField: "value",
      },
    });
  });
}

🔗 Related Links

🤝 Contributing PRs Welcome

If you would like to contribute, please read the Code of Conduct and the Contribution Guide first.

Small streams make big rivers!

Readme

Keywords

none

Package Sidebar

Install

npm i @visactor/univer-vchart-plugin

Weekly Downloads

6

Version

2.0.0

License

none

Unpacked Size

60 kB

Total Files

25

Last publish

Collaborators

  • liufangfang
  • visactorowner
  • xuanhun
  • zamhown
  • chensiji.0517
  • youngwinds
  • purpose233
  • ssfxz
  • lixuefei.1313
  • ray_sun
  • xiaoluohe
  • simaq
  • xile611
  • da730
  • zhouxinyu66888
  • zexian_chen