Skip to content
Snippets Groups Projects
Commit 3f726bbf authored by Carelle Djuffo Nzangue's avatar Carelle Djuffo Nzangue
Browse files

created tag-cloud interface

parent e48f1543
Branches
Tags
No related merge requests found
source diff could not be displayed: it is too large. Options to address this: view the blob.
......@@ -33,6 +33,7 @@
"chart.js": "^2.7.3",
"core-js": "^2.5.7",
"is-docker": "^1.1.0",
"is-promise": "^4.0.0",
"material-design-icons": "^3.0.1",
"ngx-markdown": "^11.1.3",
"ngx-matomo-v9": "^0.3.0",
......
export interface CloudParameters{
/**
* Background color of the Tag-cloud
*/
backgroundColor: string;
/**
* Color when hovering over the elements
*/
fontColor: string;
/**
* Percentage values for the weight classes, by interpolation all classes are filled with values
*/
fontSizeMin: number;
/**
* Percentage values fot the weight classes, by interpolation all classes are filled with values
*/
fontSizeMax: number;
/**
* Describes scaling when hovering
*/
hoverScale: number;
/**
* Time for hovering in ms
*/
hoverTime:number;
/**
* Time before hover animation starts in ms
*/
hoverDelay: number;
/**
* Time for delay in ms between each word during build-up
*/
delayWord: number;
/**
* Enables random angles
*/
randomAngles: boolean;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment