Files
worklenz/worklenz-backend/src/controllers/reporting/point-options-object.ts
chamikaJ 8825b0410a init
2025-04-17 18:28:54 +05:30

14 lines
300 B
TypeScript

import * as Highcharts from "highcharts";
export default class PointOptionsObject implements Highcharts.PointOptionsObject {
name!: string;
color!: string;
y!: number;
constructor(name: string, color: string, y: number) {
this.name = name;
this.color = color;
this.y = y;
}
}