Menu

Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.

Enterprise Open source

Signature

typescript
export interface NavLinkDTO 

Import

typescript
import { NavLinkDTO } from '@grafana/data';

Properties

PropertyTypeDescription
childrenNavLinkDTO[]
descriptionstring
dividerboolean
hideFromMenuboolean
hideFromTabsboolean
highlightTextstring
iconstring
idstring
imgstring
sectionNavSection
sortWeightnumber
subTitlestring
targetstring
textstring
urlstring

children property

Signature

typescript
children?: NavLinkDTO[];

description property

Signature

typescript
description?: string;

divider property

Signature

typescript
divider?: boolean;

hideFromMenu property

Signature

typescript
hideFromMenu?: boolean;

hideFromTabs property

Signature

typescript
hideFromTabs?: boolean;

highlightText property

Signature

typescript
highlightText?: string;

icon property

Signature

typescript
icon?: string;

id property

Signature

typescript
id?: string;

img property

Signature

typescript
img?: string;

section property

Signature

typescript
section?: NavSection;

sortWeight property

Signature

typescript
sortWeight?: number;

subTitle property

Signature

typescript
subTitle?: string;

target property

Signature

typescript
target?: string;

text property

Signature

typescript
text: string;

url property

Signature

typescript
url?: string;