Skip to main content
All docs
V18.2

ASPxClientDashboardItemData.CreateTuple(Object[]) Method

Creates a tuple based on the specified axes names and corresponding values.

Namespace: DevExpress.DashboardWeb.Scripts

Assembly: DevExpress.Dashboard.v18.2.Web.WebForms.Scripts.dll

Declaration

public ASPxClientDashboardItemDataAxisPointTuple CreateTuple(
    object[] values
)

Parameters

Name Type Description
values Object[]

An array of name-value pairs containing the axis name and corresponding values.

Returns

Type Description
ASPxClientDashboardItemDataAxisPointTuple

An ASPxClientDashboardItemDataAxisPointTuple object representing an axis point tuple.

Remarks

For instance, you can use the following syntax to pass a name-value pair to the CreateTuple method.

var axisPointTuple = clientData.CreateTuple([{ AxisName: DashboardDataAxisNames.DefaultAxis, Value: ["UK", "Robert King"]}]);
See Also