UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

124 lines (82 loc) 5.24 kB
<img src="https://gw.alipayobjects.com/zos/antfincdn/R8sN%24GNdh6/language.svg" width="18"> English | [简体中文](./README.md) <h1 align="center"> <b>G2</b> </h1> <div align="center"> A highly interactive data-driven visualization grammar for statistical charts. [![](https://img.shields.io/travis/antvis/g2.svg)](https://travis-ci.org/antvis/g2) ![CI](https://github.com/antvis/G2/workflows/CI/badge.svg) [![Coverage Status](https://coveralls.io/repos/github/antvis/G2/badge.svg?branch=master)](https://coveralls.io/github/antvis/G2?branch=master) [![NPM Package](https://img.shields.io/npm/v/@antv/g2.svg)](https://www.npmjs.com/package/@antv/g2) [![NPM Downloads](http://img.shields.io/npm/dm/@antv/g2.svg)](https://npmjs.org/package/@antv/g2) ![Dependencies](https://img.shields.io/badge/dependencies-up%20to%20date-brightgreen.svg) [![Percentage of issues still open](http://isitmaintained.com/badge/open/antvis/g2.svg)](http://isitmaintained.com/project/antvis/g2 'Percentage of issues still open') [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=shields)](https://github.com/antvis/g2/pulls) ![](https://img.shields.io/badge/language-TypeScript-red.svg) ![](https://img.shields.io/badge/license-MIT-000000.svg) [![](https://img.shields.io/twitter/follow/AntV_Alipay.svg?label=AntV&style=social)](https://twitter.com/AntV_Alipay) </div> <p align="center"> <a href="https://g2.antv.vision/en">Website</a> • <a href="https://g2.antv.vision/en/docs/manual/about-g2">Tutorial Docs</a> • <a href="https://www.yuque.com/antv">Blog</a> • <a href="https://github.com/antvis/G2Plot">G2Plot</a> </p> G2 is a visualization grammar, a data-driven visual language with a high level of usability and scalability. It provides a set of grammars, takes users beyond a limited set of charts to an almost unlimited world of graphical forms. With G2, you can describe the visual appearance and interactive behavior of a visualization just by one statement, and generate web-based views using Canvas or SVG. ## 📺 Live Demos <a href="https://g2.antv.vision/en/examples/gallery"><img src="https://user-images.githubusercontent.com/6628666/75466330-fe1d0c00-59c4-11ea-91ba-506f60ef8af4.png" style='width: 100%'/></a> ## ✨ Features - 💯Stable grammar of graphics: enable to draw all kinds of charts by mapping data to graphics. - 🤩New grammar of interaction: interaction behaviors combined with Trigger and Action mechanisms are used to exploring data. - 🦍Advanced View module: with the ability to develop customized multi-dimension data analysis graphics. - 👬Dual-engine rendering: with the ability to switch Canvas and SVG freely. - 💄Visual components: interaction-oriented, elegant experience. - 🛡Fully embrace TypeScript: Complete type definition files are provided. ## 📦 Installation ```bash $ npm install @antv/g2 ``` ## 🔨 Getting Started <img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*8qbLQb7A0loAAAAAAAAAAABkARQnAQ" style="width: 600px"> Before drawing we need to prepare a DOM container for G2: ```html <div id="c1"></div> ``` ```ts import { Chart } from '@antv/g2'; const data = [ { genre: 'Sports', sold: 275 }, { genre: 'Strategy', sold: 115 }, { genre: 'Action', sold: 120 }, { genre: 'Shooter', sold: 350 }, { genre: 'Other', sold: 150 }, ]; // Step 1: Create a Chart instance. const chart = new Chart({ container: 'c1', // Specify chart container ID width: 600, // Specify chart width height: 300, // Specify chart height }); // Step 2: Load the data. chart.data(data); // Step 3: Declare the grammar of graphics, draw column chart. chart.interval().position('genre*sold'); // Step 4: Render chart. chart.render(); ``` ## ⌨️ Development ```bash # Install dependencies $ npm install # Run test cases $ npm run test # Open electron to run test cases and listen to file changes $ npm run test-live # Run CI $ npm run ci # Run website $ npm start ``` ## 🏷️ Releases - v3.5.x: https://github.com/antvis/G2/tree/v3.5.x - v4.0.x: https://github.com/antvis/G2/tree/v4.0.x > You can also use **[G2Plot](https://github.com/antvis/G2Plot)** which is an interactive and responsive charting library based on G2. You can easily make superior statistical plots through a few lines of code. ## 🤝 How to Contribute Please let us know how can we help. Do check out [issues](https://github.com/antvis/g2/issues) for bug reports or suggestions first. To become a contributor, please follow our [contributing guide](https://github.com/antvis/g2/blob/master/CONTRIBUTING.md). <a href="https://issuehunt.io/r/antvis/G2" rel="nofollow" target="_blank"><img src="https://camo.githubusercontent.com/fcf6ed4dcbd95ccadfe62647fc93194b7262c862de38406e5dae68aa682c85c3/68747470733a2f2f697373756568756e742e696f2f7374617469632f656d6265642f697373756568756e742d627574746f6e2d76312e737667" alt="Let's fund issues in this repository" data-canonical-src="https://issuehunt.io/static/embed/issuehunt-button-v1.svg" style="max-width:100%;"></a> ## 📧 Contact us DingTalk Group: 30233731 / 35686967 (2 群) <img src="https://gw.alipayobjects.com/zos/antfincdn/8qEHi7GiaN/G2Plot-dingding.JPG" width="200" height="266" />