Click or drag to resize
Grid Solutions Framework

ParameterDefinitionTRequired Property

Gets flag that indicates if the parameter is required.

Namespace: GrafanaAdapters.Functions
Assembly: GrafanaAdapters (in GrafanaAdapters.dll) Version: 2.4.182-beta
Syntax
public bool Required { get; init; }
View Source

Property Value

Boolean

Implements

IParameterRequired
Remarks

Required parameters (i.e., Required = true) must precede optional parameters (i.e., Required = false) in the parameter list.

Note that the data source values parameter, i.e., the 'expression', is technically a required parameter but always exists as the last parameter after any defined optional or internal parameters. This parameter is automatically added to the parameter list by the ParameterDefinitions class.

See Also