The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/docs/sources/packages_api/data/datalink.md

1.7 KiB

+++

-----------------------------------------------------------------------

Do not edit this file. It is automatically generated by API Documenter.

-----------------------------------------------------------------------

title = "DataLink" keywords = ["grafana","documentation","sdk","@grafana/data"] type = "docs" +++

Link configuration. The values may contain variables that need to be processed before running

Signature

export interface DataLink 

Import

import { DataLink } from '@grafana/data';

Properties

Property Type Description
meta {
datasourceUid?: string;
}
onBuildUrl (event: DataLinkClickEvent) => string
onClick (event: DataLinkClickEvent) => void
targetBlank boolean
title string
url string

meta property

Signature

meta?: {
        datasourceUid?: string;
    };

onBuildUrl property

Signature

onBuildUrl?: (event: DataLinkClickEvent) => string;

onClick property

Signature

onClick?: (event: DataLinkClickEvent) => void;

targetBlank property

Signature

targetBlank?: boolean;

title property

Signature

title: string;

url property

Signature

url: string;