AntV G2
AntV G2

https://g2plot.antv.vision

AntV G2 is a visualisation tool used for creating statistical charts with high interactivity. It is built on top of the data-driven grammar of graphics and provides a wide range of charting options such as bar charts, pie charts, line charts, scatter plots, and more. The tool enables users to create complex visualisations through a simple API, and it is compatible with multiple platforms and frameworks such as React and Vue.js. AntV G2 allows users to customize various aspects of their charts including color schemes, legends, labels, and tooltips. Additionally, it has support for animations which can enhance the user experience by adding more dynamism to the visualisations. This tool can be used for both static and real-time data visualisation applications. Overall, AntV G2 serves as a powerful tool for creating interactive, data-driven, and aesthetically pleasing statistical charts.

Read more

20 Companies using AntV G2

NameLinksEmployeesRevenueTrafficCountrySEOIndustry
logo
Pionex US

cryptocurrency exchange w..

69$17K - $12K$64K united states ..14%
logo
GeneGoCell Inc.

genegocell provides high-..

21$42K - $14K$59K united states ..24%
logo
Biconomy

Bridging the new economy

36$36K - $16K$52K canada100%
logo
Parisclub

worldwide fashion own&par..

10$40K - $46K$94K france91%
logo
Colibris

efficiency in one solutio..

23$46K - $28K$75K france93%
logo
EVI Services Limited

15$39K - $25K$54K hong kong21%
logo
agniko home services priv..

rest edunga bossu- leave ..

3$23K - $46K$75K india68%
logo
Shanghai Agilemobi Co., L..

19$36K - $38K$74K china88%
logo
Key To Online - Web Servi..

Take your business online..

1$36K - $13K$54K india56%
logo
innoPay

-$30K - $29K$60K -3%
logo
shoplus

an easier way in influenc..

3$32K - $36K$210K -87%
logo
Emptor

-$44K - $50K$88K united states ..74%
logo
北京微播易科技股份有限公司

92$1K - $34K$11K china83%
logo
Shenzhen Zhichongjia Tech..

-$13K - $39K$0 china83%
logo
北京讯达网脉科技有限公司

9$25K - $41K$11K china83%

Want to download the entire list?

Enter your email and download the entire list of 20+ companies

We care about your data. Read our privacy policy.

How to use AntV G2

AntV G2 is a powerful tool for creating data-driven visualizations for statistical charts. Here are some steps on how to use it:

  1. First, you need to install the G2 library in your project through npm or yarn.

    npm install @antv/g2

  2. After installing the library, you can import it into your project and create a chart instance.

import { Chart } from '@antv/g2'; const chart = new Chart({ container: 'chart-container', width: 500, height: 300, });

Here, we have created a basic chart instance that sets the container to render the chart, along with its width and height.

  1. Next, you need to specify the data to be rendered in the chart. You can pass data to the
    chart
    instance using the
    source()
    method.
chart.source(data);

Here,

data
is the variable name that stores your data in JSON format.

  1. Once you have specified the data, you can start to create your chart by adding geometries such as lines, bars, and points.
chart.line().position('year*sales');

This code creates a line chart with the x-axis representing the "year" attribute of the data, and the y-axis representing the "sales" attribute of the data.

  1. Additionally, you can customize your chart by setting various properties such as axis labels, titles, and legends.
chart.axis('year', { label: { formatter: (val) => `${val}`, }, }).tooltip({ crosshairs: 'y', shared: true, });

Here, we are formatting the year axis label to display just the number value rather than the full date string. We are also enabling a tooltip that displays additional information when hovering over data points.

  1. Finally, you can render the chart by calling the
    render()
    method on the
    chart
    instance.
chart.render();

This code will display the chart in the container specified earlier.

Using the steps above, you can quickly start creating a wide range of interactive charts and graphs with AntV G2.

Make your sales data-driven.

Website's technology stack, including its CMS, ecommerce platform, and payment processor, along with details about the industry, company and its contacts.

GDPR Compliant

CCPA Compliant

SOC2 Compliant

App screenshot