UNPKG

ag-charts-community

Version:

Advanced Charting / Charts supporting Javascript / Typescript / React / Angular / Vue

12 lines 338 B
import { Marker } from "./marker"; export class Circle extends Marker { updatePath() { const { x, y, path, size } = this; const r = size / 2; path.clear(); path.cubicArc(x, y, r, r, 0, 0, Math.PI * 2, 0); path.closePath(); } } Circle.className = 'Circle'; //# sourceMappingURL=circle.js.map