Infograph
Description
Display an information with provided body details and icon
Attributes
tile=infographtitle:body: infograph body partpath: provide a path to get the data from the shared if path is provided then body attribute is override with the path data.options:[Object]variant: single | left. By default, is single.
render:icon: icon name to be displaymargin: margin to the container in numbertitle: classes for the titlebody: classes for the bodyiconColor: iconColor work only for left vairant
classes: support additional stylesstyles: support additional styles
Example
{
"tile": "infograph",
"title": "Hello Tesing the infograph single version",
"body": "From infograph Body",
"options": {
"variant": "single"
},
"render": {
"icon": "far fa-table",
"margin": 5,
"title": "align-items-center",
"body": "p-4"
}
}
Example1
{
"tile": "infograph",
"title": "Hello test Infograph",
"body": "From infograph Body",
"options": {
"variant": "left"
},
"path": "$.InforGraph",
"render": {
"icon": "far fa-table",
"margin": 5,
"title": "align-items-center",
"body": "p-4",
"iconColor": "red"
}
}