Skip to content

Commit

Permalink
feat(custom Shape): 添加 Shape 文档 以及 添加 三个 自定义 Shape demo (#3246)
Browse files Browse the repository at this point in the history
Co-authored-by: ai-qing-hai <wb-xcf804241@antgroup.com>
  • Loading branch information
ai-qing-hai and ai-qing-hai committed Aug 26, 2022
1 parent c6b941a commit ea0bbfa
Show file tree
Hide file tree
Showing 12 changed files with 847 additions and 2 deletions.
178 changes: 178 additions & 0 deletions docs/api/options/shape.en.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
---
title: 图表形状
order: 3
---

#### 使用方式

## 简介

Shape is built in to configure general graphics requirements. Custom Shapes work well for some **highly customized** graphical visualization needs.

<b>Chart shapes can be configured in four ways:</b>

The first,pass `string` to set the built-in Shape.

```ts
// 柱状图/条形图
shape: 'hollow-rect' | 'tick';
// 散点图
shape: 'cicle' | 'square';
// 其他内置 shape: circle, square, bowtie, diamond, hexagon, triangle,triangle-down, hollow-circle, hollow-square, hollow-bowtie,hollow-diamond, hollow-hexagon, hollow-triangle, hollow-triangle-down, cross, tick, plus, hyphen, line
```

The second,pass `[]` to set Shape.

```ts
// 区分的字段
shapeField: 'x';
// 更具区分的字段 区分形状
shape: ['circle', 'square'];
```

The third,pass `callback` to set Shape.

```ts
// 区分的字段
shapeField: 'x';
// 回调区分形状
shape: (x) => {
if(x === '2020'){
return 'circle';
}
// TODO
return 'square';
};
```

The fourth, `G2.registerShape` custom Shape.

```ts
import { G2 } from '@antv/g2plot';

// 往 interval 几何标记上注册名为 'line' 的 shape
G2.registerShape('interval', 'line', {
// 定义 line 的关键点
getPoints(shapePoint: ShapePoint) {
return getLinePoints(shapePoint);
},
// 图形具体的绘制代码
draw(cfg: ShapeInfo, container: IGroup) {
const style = getStyle(cfg, true, false, 'lineWidth');
const path = this.parsePath(getRectPath(cfg.points));
const shape = container.addShape('path', {
attrs: {
...style,
path,
},
name: 'interval',
});

return shape;
},
// 定义图形的缩略图样式
getMarker(markerCfg: ShapeMarkerCfg) {
const { color } = markerCfg;
return {
symbol: (x: number, y: number, r: number) => {
return [
['M', x, y - r],
['L', x, y + r],
];
},
style: {
r: 5,
stroke: color,
},
};
},
});
```

| Geometry 类型 | 描述 |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| point | 点的绘制很简单,只要获取它的坐标以及大小即可,其中的  `size`  属性代表的是点的半径。 <img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*IF_yR6LCyw4AAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| line | 线其实是由无数个点组成,在 G2 中我们将参与绘制的各个数据转换成坐标上的点然后通过线将逐个点连接而成形成线图,其中的  `size`  属性代表的是线的粗细。 <img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*8YQzSpmUnEAAAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| area | area 面其实是在 line 线的基础之上形成的,它将折线图中折线与自变量坐标轴之间的区域使用颜色或者纹理填充。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*JRyMSIpRfRwAAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| interval | interval 默认的图形形状是矩形,而矩形实际是由四个点组成的,在 G2 中我们根据 pointInfo 中的 x、y、size 以及 y0 这四个值来计算出这四个点,然后顺时针连接而成。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*soWnSLeska8AAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| polygon | polygon 多边形其实也是由多个点连接而成,在 pointInfo 中 x 和 y 都是数组结构。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*anXLQ72bP78AAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| violin | violin 小提琴图也是由多个点连接而成。 `pointInfo` 中,x 是小提琴中心点的 x 坐标,size 是小提琴的最大宽度,而 \_size 和 y 是相同长度的 number 数组,每一对 (\_size, y) 表示小提琴图上的一个采样点。\_size 是采样点处的概率密度,即小提琴的宽度;y 是采样点在 y 轴上的位置。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*RB6IRobZJBoAAAAAAAAAAAAAARQnAQ" style="width: 98px;" alt="violin"> |
| schema | schema 作为一种自定义的几何图形,在 G2 中默认提供了 box 和 candle 两种 shape,分别用于绘制箱型图和股票图,注意这两种形状的矩形部分四个点的连接顺序都是顺时针,并且起始点均为左下角,这样就可以无缝转换至极坐标。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*USWRQ4MxENAAAAAAAAAAAABkARQnAQ" style="width: 98px;"><img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*NxwVQqQsgHwAAAAAAAAAAABkARQnAQ" style="width: 92px;"> |
| edge | edge 边同 line 线一致,区别就是 edge 是一个线段,连接边的两个端点即可。

<!-- 更详细的使用说明详见: [Shape API](../../api/register#g2register-shape)。 -->

## 快速上手自定义 Shape

以柱状图举例,几何标记 interval 会给出四个关键点(即组成矩形的四个顶点),然后将这四个点依次连接,得到每个柱子的形状。**红色圆形**标记就是几何标记点。默认的柱状图就是通过四个几何标记点,依次相连后得到的。

![](https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*MHASTo6s90oAAAAAAAAAAABkARQnAQ#align=left&display=inline&height=196&originHeight=196&originWidth=249&status=done&style=none&width=249)

下面我们就使用自定义 shape 的功能,把上面的柱状图的柱子变成三角形,即如下图所示:

![](https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*8MCIS7hehZsAAAAAAAAAAABkARQnAQ#align=left&display=inline&height=196&originHeight=196&originWidth=245&status=done&style=none&width=245)

#### 第一步,注册 'triangle' shape

```javascript
import { G2, Column } from '@antv/g2plot';

G2.registerShape('interval', 'triangle', {
// 1. 定义关键点
getPoints(cfg) {
const x = cfg.x;
const y = cfg.y;
const y0 = cfg.y0;
const width = cfg.size;
return [
{ x: x - width / 2, y: y0 },
{ x: x, y: y },
{ x: x + width / 2, y: y0 },
];
},
// 2. 绘制
draw(cfg, group) {
const points = this.parsePoints(cfg.points); // 将0-1空间的坐标转换为画布坐标
const polygon = group.addShape('path', {
attrs: {
path: [
['M', points[0].x, points[0].y],
['L', points[1].x, points[1].y],
['L', points[2].x, points[2].y],
],
...cfg.defaultStyle,
},
});
return polygon;
},
});

const data = [
{ year: '1951 年', value: 38 },
{ year: '1952 年', value: 52 },
{ year: '1956 年', value: 61 },
{ year: '1957 年', value: 145 },
{ year: '1958 年', value: 48 },
];

const column = new Column('container', {
data,
xField: 'year',
yField: 'value',
legend: {
position: 'top-left',
},
// 自定义 shape
shape: 'triangle',
});

column.render();
```

上面代码中,我们进行了三步操作:

1. 通过 `getPoints()`   方法返回三角形的三个关键点(即三个顶点)。此时 cfg 中会传入,x, y, y0, size。其中 x, y 是柱子最高点的坐标,y0 是横坐标轴的 y 坐标,size 是柱子默认宽度。
1. 得到标记点后,我们在 `draw()` 方法中拿到 cfg.points 数据和数据映射后的图形属性数据(比如 cfg.color),再通过绘图库提供的多边形图形,将三个点依次头尾相连,生成每个三角形。
1. 通过 addShap 来绘制图形,addShape 的参数参考: [绘图文档](https://g.antv.vision/zh/docs/api/general/container/#addshapecfg-shapecfg)

> 注意:points 数据和参与 points 计算的配置项都是 0-1 空间的数据!
178 changes: 178 additions & 0 deletions docs/api/options/shape.zh.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,178 @@
---
title: 图表形状
order: 3
---

#### 使用方式

## 简介

内置 Shape 可以配置一般需求的图形。 自定义 Shape 可以很好地支持部分有 **高订制需求的** 图表可视化需求。

<b>图表形状配置有四种方式:</b>

第一种,传入 `string` 设置内置 Shape。

```ts
// 柱状图/条形图
shape: 'hollow-rect' | 'tick';
// 散点图
shape: 'cicle' | 'square';
// 其他内置 shape: circle, square, bowtie, diamond, hexagon, triangle,triangle-down, hollow-circle, hollow-square, hollow-bowtie,hollow-diamond, hollow-hexagon, hollow-triangle, hollow-triangle-down, cross, tick, plus, hyphen, line
```

第二种,传入 `[]` 设置 Shape

```ts
// 区分的字段
shapeField: 'x';
// 更具区分的字段 区分形状
shape: ['circle', 'square'];
```

第三种,传入 `callback` 设置 Shape

```ts
// 区分的字段
shapeField: 'x';
// 回调区分形状
shape: (x) => {
if(x === '2020'){
return 'circle';
}
// TODO
return 'square';
};
```

第四种, `G2.registerShape` 自定义 Shape

```ts
import { G2 } from '@antv/g2plot';

// 往 interval 几何标记上注册名为 'line' 的 shape
G2.registerShape('interval', 'line', {
// 定义 line 的关键点
getPoints(shapePoint: ShapePoint) {
return getLinePoints(shapePoint);
},
// 图形具体的绘制代码
draw(cfg: ShapeInfo, container: IGroup) {
const style = getStyle(cfg, true, false, 'lineWidth');
const path = this.parsePath(getRectPath(cfg.points));
const shape = container.addShape('path', {
attrs: {
...style,
path,
},
name: 'interval',
});

return shape;
},
// 定义图形的缩略图样式
getMarker(markerCfg: ShapeMarkerCfg) {
const { color } = markerCfg;
return {
symbol: (x: number, y: number, r: number) => {
return [
['M', x, y - r],
['L', x, y + r],
];
},
style: {
r: 5,
stroke: color,
},
};
},
});
```

| Geometry 类型 | 描述 |
| ------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
| point | 点的绘制很简单,只要获取它的坐标以及大小即可,其中的  `size`  属性代表的是点的半径。 <img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*IF_yR6LCyw4AAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| line | 线其实是由无数个点组成,在 G2 中我们将参与绘制的各个数据转换成坐标上的点然后通过线将逐个点连接而成形成线图,其中的  `size`  属性代表的是线的粗细。 <img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*8YQzSpmUnEAAAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| area | area 面其实是在 line 线的基础之上形成的,它将折线图中折线与自变量坐标轴之间的区域使用颜色或者纹理填充。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*JRyMSIpRfRwAAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| interval | interval 默认的图形形状是矩形,而矩形实际是由四个点组成的,在 G2 中我们根据 pointInfo 中的 x、y、size 以及 y0 这四个值来计算出这四个点,然后顺时针连接而成。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*soWnSLeska8AAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| polygon | polygon 多边形其实也是由多个点连接而成,在 pointInfo 中 x 和 y 都是数组结构。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*anXLQ72bP78AAAAAAAAAAABkARQnAQ" style="width: 50%;"> |
| violin | violin 小提琴图也是由多个点连接而成。 `pointInfo` 中,x 是小提琴中心点的 x 坐标,size 是小提琴的最大宽度,而 \_size 和 y 是相同长度的 number 数组,每一对 (\_size, y) 表示小提琴图上的一个采样点。\_size 是采样点处的概率密度,即小提琴的宽度;y 是采样点在 y 轴上的位置。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*RB6IRobZJBoAAAAAAAAAAAAAARQnAQ" style="width: 98px;" alt="violin"> |
| schema | schema 作为一种自定义的几何图形,在 G2 中默认提供了 box 和 candle 两种 shape,分别用于绘制箱型图和股票图,注意这两种形状的矩形部分四个点的连接顺序都是顺时针,并且起始点均为左下角,这样就可以无缝转换至极坐标。<img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*USWRQ4MxENAAAAAAAAAAAABkARQnAQ" style="width: 98px;"><img src="https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*NxwVQqQsgHwAAAAAAAAAAABkARQnAQ" style="width: 92px;"> |
| edge | edge 边同 line 线一致,区别就是 edge 是一个线段,连接边的两个端点即可。

<!-- 更详细的使用说明详见: [Shape API](../../api/register#g2register-shape)。 -->

## 快速上手自定义 Shape

以柱状图举例,几何标记 interval 会给出四个关键点(即组成矩形的四个顶点),然后将这四个点依次连接,得到每个柱子的形状。**红色圆形**标记就是几何标记点。默认的柱状图就是通过四个几何标记点,依次相连后得到的。

![](https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*MHASTo6s90oAAAAAAAAAAABkARQnAQ#align=left&display=inline&height=196&originHeight=196&originWidth=249&status=done&style=none&width=249)

下面我们就使用自定义 shape 的功能,把上面的柱状图的柱子变成三角形,即如下图所示:

![](https://gw.alipayobjects.com/mdn/rms_2274c3/afts/img/A*8MCIS7hehZsAAAAAAAAAAABkARQnAQ#align=left&display=inline&height=196&originHeight=196&originWidth=245&status=done&style=none&width=245)

#### 第一步,注册 'triangle' shape

```javascript
import { G2, Column } from '@antv/g2plot';

G2.registerShape('interval', 'triangle', {
// 1. 定义关键点
getPoints(cfg) {
const x = cfg.x;
const y = cfg.y;
const y0 = cfg.y0;
const width = cfg.size;
return [
{ x: x - width / 2, y: y0 },
{ x: x, y: y },
{ x: x + width / 2, y: y0 },
];
},
// 2. 绘制
draw(cfg, group) {
const points = this.parsePoints(cfg.points); // 将0-1空间的坐标转换为画布坐标
const polygon = group.addShape('path', {
attrs: {
path: [
['M', points[0].x, points[0].y],
['L', points[1].x, points[1].y],
['L', points[2].x, points[2].y],
],
...cfg.defaultStyle,
},
});
return polygon;
},
});

const data = [
{ year: '1951 年', value: 38 },
{ year: '1952 年', value: 52 },
{ year: '1956 年', value: 61 },
{ year: '1957 年', value: 145 },
{ year: '1958 年', value: 48 },
];

const column = new Column('container', {
data,
xField: 'year',
yField: 'value',
legend: {
position: 'top-left',
},
// 自定义 shape
shape: 'triangle',
});

column.render();
```

上面代码中,我们进行了三步操作:

1. 通过 `getPoints()`   方法返回三角形的三个关键点(即三个顶点)。此时 cfg 中会传入,x, y, y0, size。其中 x, y 是柱子最高点的坐标,y0 是横坐标轴的 y 坐标,size 是柱子默认宽度。
1. 得到标记点后,我们在 `draw()` 方法中拿到 cfg.points 数据和数据映射后的图形属性数据(比如 cfg.color),再通过绘图库提供的多边形图形,将三个点依次头尾相连,生成每个三角形。
1. 通过 addShap 来绘制图形,addShape 的参数参考: [绘图文档](https://g.antv.vision/zh/docs/api/general/container/#addshapecfg-shapecfg)

> 注意:points 数据和参与 points 计算的配置项都是 0-1 空间的数据!
Empty file.
Empty file.
Loading

0 comments on commit ea0bbfa

Please sign in to comment.