diff --git a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html index 7cb387e759fe558c26678b0192dd29a08f5fd21a..ee19adcd5a99786546ba01c0c978ad8955c768eb 100644 --- a/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html +++ b/src/app/components/shared/_dialogs/cloud-configuration/cloud-configuration.component.html @@ -72,8 +72,7 @@ <mat-form-field appearance="fill"> <mat-label>{{'tag-cloud-config.font-family' | translate}}</mat-label> <mat-select (selectionChange)="valueChanged()" [(ngModel)]="cloudParameters.fontFamily"> - <mat-option value="Helvetica,Arial,sans-serif">Helvetica</mat-option> - <mat-option value="Roboto">Roboto</mat-option> + <mat-option value="sans-serif">Normal</mat-option> <mat-option value="Abril Fatface">Abril Fatface</mat-option> <mat-option value="Dancing Script">Dancing Script</mat-option> <mat-option value="Indie Flower">Indie Flower</mat-option> diff --git a/src/app/components/shared/tag-cloud/tag-cloud.component.ts b/src/app/components/shared/tag-cloud/tag-cloud.component.ts index 2a0aa2eb838d623c8f8e6bc54cd2f4db8439eeeb..86af6e98da2dd6fa38cc3c77e04065258e561231 100644 --- a/src/app/components/shared/tag-cloud/tag-cloud.component.ts +++ b/src/app/components/shared/tag-cloud/tag-cloud.component.ts @@ -110,7 +110,7 @@ const getDefaultCloudParameters = (): CloudParameters => { {maxVisibleElements: -1, color: resDefaultColors[10], rotation: 0}, ]; return { - fontFamily: 'Helvetica,Arial,sans-serif', + fontFamily: 'Dancing Script', fontWeight: 'normal', fontStyle: 'normal', fontSize: '10px', @@ -122,7 +122,7 @@ const getDefaultCloudParameters = (): CloudParameters => { hoverTime: 0.6, hoverDelay: 0.4, delayWord: 0, - randomAngles: false, + randomAngles: true, checkSpelling: true, sortAlphabetically: false, textTransform: CloudTextStyle.normal,