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/ui/bigvaluesparkline.md

79 lines
1.5 KiB

+++
# -----------------------------------------------------------------------
# Do not edit this file. It is automatically generated by API Documenter.
# -----------------------------------------------------------------------
title = "BigValueSparkline"
keywords = ["grafana","documentation","sdk","@grafana/ui"]
type = "docs"
+++
## BigValueSparkline interface
<b>Signature</b>
```typescript
export interface BigValueSparkline
```
<b>Import</b>
```typescript
import { BigValueSparkline } from '@grafana/ui';
```
<b>Properties</b>
| Property | Type | Description |
| --- | --- | --- |
| [data](#data-property) | <code>GraphSeriesValue[][]</code> | |
| [highlightIndex](#highlightindex-property) | <code>number</code> | |
| [xMax](#xmax-property) | <code>number &#124; null</code> | |
| [xMin](#xmin-property) | <code>number &#124; null</code> | |
| [yMax](#ymax-property) | <code>number &#124; null</code> | |
| [yMin](#ymin-property) | <code>number &#124; null</code> | |
### data property
<b>Signature</b>
```typescript
data: GraphSeriesValue[][];
```
### highlightIndex property
<b>Signature</b>
```typescript
highlightIndex?: number;
```
### xMax property
<b>Signature</b>
```typescript
xMax?: number | null;
```
### xMin property
<b>Signature</b>
```typescript
xMin?: number | null;
```
### yMax property
<b>Signature</b>
```typescript
yMax?: number | null;
```
### yMin property
<b>Signature</b>
```typescript
yMin?: number | null;
```