Optional Embedded Visual Authoring Breadcrumb Properties

This applies to: Visual Data Discovery

Optionally, you can pass breadcrumb properties as parameters to the createComponent method when embedding Symphony visual authoring components.

Here is a sample:

			"breadcrumbs": { 
			"title": "<title>",
			"onClick": () => {console.log('clicked')},
			"href": "<uri-or-fqdn>",
			"target": "_blank"
		}

The following table describes the optional breadcrumb properties.

Property/Object Default Description
"title":"<title>" none

The first item breadcrumbs title. A valid title should be specified in quotes ("<title>").

Type: string

"onClick" none

The click action handler for the breadcrumb title.

Type: function

"href":"<uri-or-fqdn>" none

The link address of the breadcrumb title. A valid link address, such as a URI or Fully Qualified Domain Name should be specified in quotes ("<uri-or-fqdn>").

Type: string

"target":"_blank" none

The link target parameter. Use "_blank" to open in a new tab. A valid link target should be specified in quotes ("<uri-or-fqdn>").

Type: string