Skip to content

Commit

Permalink
fixing the highlight
Browse files Browse the repository at this point in the history
  • Loading branch information
Moath-Ahmad committed Jun 12, 2022
1 parent 4190b42 commit d443308
Show file tree
Hide file tree
Showing 18 changed files with 608 additions and 558 deletions.
32 changes: 15 additions & 17 deletions projects/ng-tech-radar/src/lib/helper/interface/index.ts
Original file line number Diff line number Diff line change
@@ -1,31 +1,29 @@
export interface RadarMapDetails {
title: string,
width: number,
height: number,
quadrants: Array<{ name: string }>,
colors: ColorsInterface,
rings: Array<RingInterface>,
print_layout: boolean,
entries?: Array<IEntry>,
title: string;
width: number;
height: number;
quadrants: Array<{ name: string }>;
colors: ColorsInterface;
rings: Array<RingInterface>;
print_layout: boolean;
entries?: Array<IEntry>;
}
export interface RingInterface {
name: string;
color: string;
name: string;
color: string;
}
export interface ColorsInterface {
background: string;
grid: string;
inactive: string;
background: string;
grid: string;
inactive: string;
}

export interface IEntry {
quadrant: number;
ring: number;
label: string;
description?:string,
link?: string,
description?: string;
link?: string;
active: boolean;
moved: number;
}


Loading

0 comments on commit d443308

Please sign in to comment.