All Projects → antvis → GUI

antvis / GUI

Licence: MIT license
UI components for G.

Programming Languages

typescript
32286 projects

GUI

UI components for G.

Build Status Coverage Status npm Version npm Download npm License

Features

📦 Installation

$ npm install @antv/gui

🔨 Getting Started

import { Canvas } from '@antv/g';
import { Button } from '@antv/gui';

// add `arrow` instance into canvas
const canvas = new Canvas({
  /* ... */
});
const button = new Button({
  /* ... */
});
canvas.appendChild(button);

// render it
canvas.render();

📎 Components

📮 Contribution

$ git clone [email protected]:antvis/gui.git

$ cd gui

$ tnpm i

$ tnpm t

Then send a pull request after coding.

📄 License

MIT@AntV.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].