VizRepeater class

Signature

  1. export declare class VizRepeater<V, D = {}> extends PureComponent<Props<V, D>, State<V>>

Import

  1. import { VizRepeater } from '@grafana/ui';

Constructors

ConstructorModifiersDescription
constructor(props)Constructs a new instance of the VizRepeater class

Properties

PropertyModifiersTypeDescription
defaultPropsstaticDefaultProps

Methods

MethodModifiersDescription
componentDidUpdate(prevProps)
getOrientation()
render()
renderGrid()

constructor(props)

Constructs a new instance of the VizRepeater class

Signature

  1. constructor(props: Props<V, D>);

Parameters

ParameterTypeDescription
propsProps<V, D>

defaultProps property

Signature

  1. static defaultProps: DefaultProps;

componentDidUpdate method

Signature

  1. componentDidUpdate(prevProps: Props<V, D>): void;

Parameters

ParameterTypeDescription
prevPropsProps<V, D>

Returns:

void

getOrientation method

Signature

  1. getOrientation(): VizOrientation;

Returns:

VizOrientation

render method

Signature

  1. render(): JSX.Element;

Returns:

JSX.Element

renderGrid method

Signature

  1. renderGrid(): JSX.Element;

Returns:

JSX.Element