- watch all changes on DataOptions models in dataservice

- npm updates
This commit is contained in:
Arno Kaimbacher 2021-10-12 16:42:07 +02:00
parent 7f13e31251
commit cd4119b986
9 changed files with 948 additions and 467 deletions

View file

@ -10,6 +10,7 @@ export interface DataEntry {
export interface InternalDataEntry {
internalId: string;
datasetIndex?: number;
// hoverId: string;
data: number[];
selected?: boolean;

View file

@ -73,6 +73,7 @@ export class DatasetOptions {
) {
this.internalId = internalId;
this.color = color;
this.visible = true;
}
}