Socket
Book a DemoInstallSign in
Socket

@antv/g-canvas

Package Overview
Dependencies
Maintainers
23
Versions
369
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@antv/g-canvas

A canvas library which providing 2d

Source
npmnpm
Version
0.3.3
Version published
Weekly downloads
217K
-14.71%
Maintainers
23
Weekly downloads
 
Created
Source

English | 简体中文

g-canvas

npm package npm downloads Percentage of issues still open

  • A canvas library which providing 2d draw for AntV.

✨ Features

  • Powerful and scalable rendering capability with built-in basic Graphics.
  • Excellent rendering performance and supports visualization scenarios with large amounts of data.
  • Complete simulation of browser DOM events, and no difference from native events.
  • Smooth animation implementation and rich configuration interfaces.

📦 Install

$ npm install @antv/g-canvas --save

🔨 Usage

<div id="c1"></div>
import { Canvas } from '@antv/g-canvas';

const canvas = new Canvas({
  container: 'c1',
  width: 500,
  height: 500,
});

const group = canvas.addGroup();
group.addShape('circle', {
  attrs: {
    x: 100,
    y: 100,
    r: 50,
    fill: 'red',
    stroke: 'blue',
    lineWidth: 5,
  },
});

Keywords

util

FAQs

Package last updated on 23 Dec 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts