src/app/core/basic-datatypes/entity/entity-block/entity-block-config.ts
Configuration for Entity Types to define what the tooltip showing some details about an entity should look like.
Properties |
fields |
fields:
|
Type : string[]
|
Other fields to be displayed. |
image |
image:
|
Type : string
|
Optional |
Optional photo to display in the tooltip. |
title |
title:
|
Type : string
|
Primary field displayed as a kind of header in the tooltip. |
export interface EntityBlockConfig {
/**
* Primary field displayed as a kind of header in the tooltip.
*/
title: string;
/**
* Optional photo to display in the tooltip.
*/
image?: string;
/**
* Other fields to be displayed.
*/
fields: string[];
}