this.data = [ {path: 'M10 10 L30 10 L30 30 L10 30 Z'}, {path: 'M50 50 L70 50 L70 70 L50 70 Z'} ];
this.data = [ {path: 'M10 10 L30 10 L30 30 L10 30 Z'}, {path: 'M50 50 L70 50 L70 70 L50 70 ZM60 60 L80 60 L80 80 L60 80 Z'} ];
确保路径段的末尾和新的路径段的起始坐标具有相同的精度,例如都是小数点后两位。
如果以上方法无法解决问题,则可以尝试使用 d3.js 库中的 line() 函数来生成路径。例如:
import { Component } from '@angular/core'; import * as d3 from 'd3';
@Component({
selector: 'app-svg',
template:
})
export class SvgComponent {
private data = [
{x: 10, y: 10},
{x: 30, y: 10},
{x: 30, y: 30},
{x: 10, y: 30},
{x: 10, y: 10},
];
constructor() {}
ngOnInit() { const