import { ShapeEnum } from "../ShapeEnum"; import { ShapeData } from "../base"; export class TickData extends ShapeData { override get needFill(): boolean { return false; } constructor(other?: Partial) { super() this.type = ShapeEnum.Tick; this.strokeStyle = '#FF0000'; this.lineWidth = 2; other && this.read(other) } }