CardRow Class
A row in the CardItem‘s layout.
Declaration
export class CardRow extends CardRowBase
Remarks
Use the CardLayout.rows property to access rows that constitute a card’s layout. Refer to the CardLayoutTemplate class description to learn how to manage the layout of cards in the CardItem.
Inheritance
constructor
Initializes a new instance of the CardRow class.
Declaration
constructor(
modelJson?: any,
serializer?: DevExpress.Analytics.Utils.ModelSerializer
)
Parameters
| Name | Type | Description |
|---|---|---|
| modelJson | any | A JSON object used for dashboard deserialization. Do not pass this parameter directly. |
| serializer | ModelSerializer | An object used for dashboard deserialization. Do not pass this parameter directly. |
Properties
elementItemTypes Property
Declaration
static elementItemTypes: {
CardRowDataElement: {
constructor: typeof DevExpress.Dashboard.Model.CardRowDataElement;
};
CardRowIndicatorElement: {
constructor: typeof DevExpress.Dashboard.Model.CardRowIndicatorElement;
};
CardRowTextElement: {
constructor: typeof DevExpress.Dashboard.Model.CardRowTextElement;
};
}
Property Value
| Name | Type |
|---|---|
| CardRowDataElement | {constructor: typeof CardRowDataElement} |
| CardRowIndicatorElement | {constructor: typeof CardRowIndicatorElement} |
| CardRowTextElement | {constructor: typeof CardRowTextElement} |
elements Property
Provides access to a collection of CardRowElement objects that are a card’s visual elements.
Declaration
elements: ko.ObservableArray<DevExpress.Dashboard.Model.CardRowElement>
Property Value
| Type | Description |
|---|---|
| ObservableArray<CardRowElement> | An array of CardRowElement objects that are the card’s visual elements. |
Methods
createRowElement(elementJSON, serializer) Method
Declaration
createRowElement(
elementJSON: any,
serializer: DevExpress.Analytics.Utils.ModelSerializer
): DevExpress.Dashboard.Model.CardRowDataElement
Parameters
| Name | Type |
|---|---|
| elementJSON | any |
| serializer | ModelSerializer |
Returns
| Type |
|---|
| CardRowDataElement |
getInfo Method
For internal use.
Declaration
getInfo(): DevExpress.Analytics.Utils.ISerializationInfoArray
Returns
| Type | Description |
|---|---|
| ISerializationInfoArray | An array of objects that provide serialization info. |