Skip to main content

Bind Dashboard Items to Data in the Designer

  • 4 minutes to read

This topic explains how to bind the newly created dashboard item to data source fields, to display data.

Binding Concepts

To bind dashboard items to data in the Dashboard Designer, the DATA ITEMS pane is used.

DataItemPane

Each dashboard item type has a specific set of data sections, such as Values, Arguments and Series in the chart, Columns and Sparklines in the grid, and Values, Columns and Rows in the pivot grid. Each data section corresponds to a particular dashboard item area or element, and should be mapped to data to be displayed within this area/element.

Mapping is performed using data items - objects that are used to bind a dashboard item to data source fields. Data items are used to link the dashboard item to the required data source fields and, thus, visualize data within the dashboard item.

Another key concept in data binding is the data item container (a DataItemContainer class descendant), which represents a set of data items. It can contain either a single data item or multiple data items, and allows you to specify various options related to how a specific dashboard item visualizes data.

DataItemsPane_VisualElements_Binding

The data item can process data in two ways - as dimensions or measures. This depends on the data section to which the data item is assigned, and the type of the data item container.

  • dimension (the Dimension class) - a data item whose values are not intended to be summarized.

    These values can be of any type - string, date-time or numeric. In any case, the dashboard does not summarize the dimension values, but groups identical values. You can perform grouping, sorting, or display the top values for the dimension values.

    You can also customize data format settings for numeric and date-time values. To access the data shaping settings, use the data item’s menu button.

    DataItem_MenuButton_Dimension

    For instance, dimensions are used to provide data for the chart argument axis, pivot grid column and row headers.

  • measure (the Measure class) - a data item whose values are summarized before they are used in the dashboard.

    These values can be of any type - numeric, date-time or string. In any case, the dashboard will calculate an appropriate summary function against measure values. You can also customize the data format settings that affect how summary values are displayed. To access these settings, use the data item’s menu button.

    DataItem_MenuButton

    For example, measures are used to provide data for the chart’s Y-axis, and to calculate pivot cell values.

Specific data sections display Options buttons for each data item container. Use these buttons to invoke a dialog that allows you to specify the settings of this data item container. These settings affect how a particular dashboard item’s area/element displays the provided data.

DataItemContainer_OptionsButtons

Create Binding

The DATA ITEMS pane displays data sections of the selected dashboard item. It can be used to add, rearrange or remove data items.

To bind a dashboard item to data, select the dashboard item. Then choose the required data field from the Data Source Browser and drop it onto the appropriate section in the DATA ITEMS pane.

DataItemsPane_DragField

You can remove the data item by dragging it outside the DATA ITEMS pane.

To learn how to bind a specific dashboard item to data, see the Providing Data topic for the required dashboard item.

To rename the data item, click its menu button and select Rename, to invoke the Rename Data Item dialog.

DataItems_RenameDataItem

In code, use the DataItem.Name property.

Modify Binding

You can modify data binding by dragging data item containers within a data section. To do this, drag the data item container to the required position.

DataItemsPane_ModifyDataBinding

You can also modify data binding by dragging data items within the DATA ITEMS pane. This action has the following specifics.

  • If you drag the data item to a new position, the settings specified for the corresponding data item container will be restored to the default values.
  • If you drag the data item to an existing data item placeholder, the settings of the corresponding data item container will be applied.

Clear Binding

To remove all data items for a selected dashboard item, use the Remove Data Items button in the Home ribbon tab.

DataItemsPane_RemoveDataItems

You can also do this via the dashboard item’s context menu.

DashboardItemMenu_RemoveDataItems

See Also