mirror of
https://github.com/grafana/grafana.git
synced 2024-11-28 03:34:15 -06:00
cc3fc18076
* added packages reference menu item. * removed the draft flag. * Updated docs by running script.
80 lines
1.5 KiB
Markdown
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 | null</code> | |
|
|
| [xMin](#xmin-property) | <code>number | null</code> | |
|
|
| [yMax](#ymax-property) | <code>number | null</code> | |
|
|
| [yMin](#ymin-property) | <code>number | 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;
|
|
```
|