14 lines
300 B
TypeScript
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;
|
|
}
|
|
}
|