grafana/docs/sources/packages_api/ui/bigvaluesparkline.md
Marcus Andersson cc3fc18076
Docs: enable packages reference docs for 7-beta (#23953)
* added packages reference menu item.

* removed the draft flag.

* Updated docs by running script.
2020-04-28 09:53:58 +02:00

80 lines
1.5 KiB
Markdown

+++
# -----------------------------------------------------------------------
# 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;
```