👏🏻👏🏻👏🏻 收集 G2 生态周边仓库 Collecting G2 related projects #5772
hustcc
announced in
Announcements
Replies: 10 comments 11 replies
|
g2-react: The lightweight React component for @antv/g2. import React from "react";
import { Chart } from "@berryv/g2-react";
export function Demo() {
return (
<Chart
options={{
type: "interval",
width: 640,
height: 480,
data: [
{ genre: "Sports", sold: 275 },
{ genre: "Strategy", sold: 115 },
{ genre: "Action", sold: 120 },
{ genre: "Shooter", sold: 350 },
{ genre: "Other", sold: 150 },
],
encode: { x: "genre", y: "sold" },
}}
/>
);
} |
0 replies
|
Ant Design Charts: AntV react component library import { Bar } from '@ant-design/plots';
const data = [
{ year: '1951 年', value: 38 },
{ year: '1952 年', value: 52 },
{ year: '1956 年', value: 61 },
{ year: '1957 年', value: 145 },
{ year: '1958 年', value: 48 },
];
const DemoBar = () => {
const config = {
data,
xField: 'year',
yField: 'value',
colorField: 'year',
};
return <Bar {...config} />;
}; |
0 replies
https://github.com/lloydzhou/g2x |
7 replies
|
https://github.com/lloydzhou/g2v 前面g2x的vue版本 |
0 replies
|
一个 G2 的复合 Mark:https://github.com/pearmini/g2-tiny-bar |
2 replies
|
G2 的 SSR 工具:https://github.com/pearmini/g2-ssr-node |
0 replies
|
pyg2:A grammar of graphics python library for jupyter notebooks based on G2. 即将升级 ThamaluM/pyG2#4 |
0 replies
|
streamlit-g2: A visualization grammar based on G2 for streamlit. DEMO import streamlit as st
from streamlit_g2 import g2
options = {
"type": "interval",
"data": [
{ "genre": 'Sports', "sold": 275 },
{ "genre": 'Strategy', "sold": 115 },
{ "genre": 'Action', "sold": 120 },
{ "genre": 'Shooter', "sold": 350 },
{ "genre": 'Other', "sold": 150 },
],
"encode": {
"x": "genre",
"y": "sold",
"color": "genre",
}
}
g2(options=options, style=None, key="streamlit_g2")APINow, There is only one API for
|
0 replies
|
https://github.com/GOUYONGCHAO/g2r 基于蚂蚁的antv g2 开发R包,可以快速使用g2画图 |
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
只要是和 AntV G2 相关的开源项目,都可以回帖,等仓库超过 10 个,我们就在 G2 官网开一个页面为大家带来开发者。
包含且不限于:
期望大家一起,让数据可视化社区活跃起来 🔥🔥🔥🔥🔥,当然也可以在这里提出一些想法,组团来实现!
All reactions