dashboard-js-devexpress-dot-dashboard-ca33f5cf.md
A collection of the DashboardParameter objects.
export interface DashboardParameterCollection
Returns a dashboard parameter by its index in the DashboardParameterCollection.
getParameterByIndex(
index: number
): DashboardParameter
| Name | Type | Description |
|---|---|---|
| index | number |
An integer value that specifies the parameter index.
|
| Type | Description |
|---|---|
| DashboardParameter |
A DashboardParameter object that is a dashboard parameter.
|
Returns a dashboard parameter by its name.
getParameterByName(
name: string
): DashboardParameter
| Name | Type | Description |
|---|---|---|
| name | string |
A string that specifies the parameter name.
|
| Type | Description |
|---|---|
| DashboardParameter |
A DashboardParameter object that is a dashboard parameter.
|
Returns an array of dashboard parameters from the DashboardParameterCollection.
getParameterList(): Array<DashboardParameter>
| Type | Description |
|---|---|
| DashboardParameter[] |
An array of DashboardParameter objects that contains parameter settings and metadata.
|