自定义 Shape

简介

自定义 Shape 可以很好地支持部分有 高订制需求的 图表可视化需求。这也是 G2 在向 可编程可视化引擎 迈出的重要一步。在使用自定义 Shape 之前,需要了解 G2 的绘图原理:在 G2 中每种几何形状都是由特定的几个关键点通过线连接而成,下表列出了 G2 各个几何形状的关键点形成机制:

Geometry 类型描述
point点的绘制很简单,只要获取它的坐标以及大小即可,其中的 size 属性代表的是点的半径。 自定义 Shape - 图1
line线其实是由无数个点组成,在 G2 中我们将参与绘制的各个数据转换成坐标上的点然后通过线将逐个点连接而成形成线图,其中的 size 属性代表的是线的粗细。 自定义 Shape - 图2
areaarea 面其实是在 line 线的基础之上形成的,它将折线图中折线与自变量坐标轴之间的区域使用颜色或者纹理填充。自定义 Shape - 图3
intervalinterval 默认的图形形状是矩形,而矩形实际是由四个点组成的,在 G2 中我们根据 pointInfo 中的 x、y、size 以及 y0 这四个值来计算出这四个点,然后顺时针连接而成。自定义 Shape - 图4
polygonpolygon 多边形其实也是由多个点连接而成,在 pointInfo 中 x 和 y 都是数组结构。自定义 Shape - 图5
schemaschema 作为一种自定义的几何图形,在 G2 中默认提供了 box 和 candle 两种 shape,分别用于绘制箱型图和股票图,注意这两种形状的矩形部分四个点的连接顺序都是顺时针,并且起始点均为左下角,这样就可以无缝转换至极坐标。自定义 Shape - 图6自定义 Shape - 图7
edgeedge 边同 line 线一致,区别就是 edge 是一个线段,连接边的两个端点即可。

接口定义

  1. import { registerShape } from '@antv/g2';
  2. // 往 interval 几何标记上注册名为 'line' 的 shape
  3. registerShape('interval', 'line', {
  4. // 定义 line 的关键点
  5. getPoints(shapePoint: ShapePoint) {
  6. return getLinePoints(shapePoint);
  7. },
  8. // 图形具体的绘制代码
  9. draw(cfg: ShapeInfo, container: IGroup) {
  10. const style = getStyle(cfg, true, false, 'lineWidth');
  11. const path = this.parsePath(getRectPath(cfg.points));
  12. const shape = container.addShape('path', {
  13. attrs: {
  14. ...style,
  15. path,
  16. },
  17. name: 'interval',
  18. });
  19. return shape;
  20. },
  21. // 定义图形的缩略图样式
  22. getMarker(markerCfg: ShapeMarkerCfg) {
  23. const { color } = markerCfg;
  24. return {
  25. symbol: (x: number, y: number, r: number) => {
  26. return [
  27. ['M', x, y - r],
  28. ['L', x, y + r],
  29. ];
  30. },
  31. style: {
  32. r: 5,
  33. stroke: color,
  34. },
  35. };
  36. },
  37. });

更详细的使用说明详见: Shape API

快速上手

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

自定义 Shape - 图8

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

自定义 Shape - 图9

第一步,注册 'triangle' shape

  1. import { registerShape } from '@antv/g2';
  2. registerShape('interval', 'triangle', {
  3. // 1. 定义关键点
  4. getPoints(cfg) {
  5. const x = cfg.x;
  6. const y = cfg.y;
  7. const y0 = cfg.y0;
  8. const width = cfg.size;
  9. return [
  10. { x: x - width / 2, y: y0 },
  11. { x: x, y: y },
  12. { x: x + width / 2, y: y0 },
  13. ];
  14. },
  15. // 2. 绘制
  16. draw(cfg, group) {
  17. const points = this.parsePoints(cfg.points); // 将0-1空间的坐标转换为画布坐标
  18. console.log(cfg);
  19. const polygon = group.addShape('path', {
  20. attrs: {
  21. path: [
  22. ['M', points[0].x, points[0].y],
  23. ['L', points[1].x, points[1].y],
  24. ['L', points[2].x, points[2].y],
  25. ],
  26. ...cfg.defaultStyle,
  27. },
  28. });
  29. return polygon;
  30. },
  31. });

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

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

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

第二步,使用

  1. const data = [
  2. { genre: 'Sports', sold: 27500 },
  3. { genre: 'Strategy', sold: 11500 },
  4. { genre: 'Action', sold: 6000 },
  5. { genre: 'Shooter', sold: 3500 },
  6. { genre: 'Other', sold: 1500 },
  7. ];
  8. const chart = new Chart({
  9. container: 'mountNode',
  10. width: 400,
  11. height: 300,
  12. });
  13. chart.data(data);
  14. chart
  15. .interval()
  16. .position('genre*sold')
  17. .shape('triangle');chart.render();

自定义 Shape - 图10