X-Git-Url: https://osm.etsi.org/gitweb/?p=osm%2FNG-UI.git;a=blobdiff_plain;f=src%2Fmodels%2FVimAccountModel.ts;fp=src%2Fmodels%2FVimAccountModel.ts;h=433727626416fbfafc82c57104d1b8122a5b91cd;hp=159b2c900c99b7cd3ee0df872daf2817704d17f7;hb=0a34dfa32165036b380ec6ac493469b34007df0a;hpb=40cc37ef2bbc4aac5debc9dea0baeb6dbd87a2d7 diff --git a/src/models/VimAccountModel.ts b/src/models/VimAccountModel.ts index 159b2c9..4337276 100644 --- a/src/models/VimAccountModel.ts +++ b/src/models/VimAccountModel.ts @@ -18,7 +18,6 @@ /** * @file Model for VimAccount Details related information. */ -// tslint:disable: completed-docs import { NSInstanceDetails } from 'NSInstanceModel'; /** Interface for VimAccountDetails */ export interface VimAccountDetails { @@ -146,8 +145,14 @@ export interface RESOURCESDATA { export interface RESOURCESCHARTDATA { title: string; values: CHARTVALUES; + data: CHARTDATA[]; +} +/** Interface common use for the Chart */ +export interface CHARTDATA { data: number[]; - colorValues: Color[]; + backgroundColor?: string[] | string; + hoverBackgroundColor?: string[] | string; + hoverBorderColor?: string[] | string; } /** Interface common use for the Chart */ export interface CHARTVALUES {