Skip to main content
A newer version of this page is available. .

Providing Data

  • 5 minutes to read

The Dashboard Designer allows you to bind various dashboard items to data in a virtually uniform manner. To learn more, see the Binding Dashboard Items to Data topic.

The only difference is in the data sections that the required dashboard item has. This topic describes how to bind a Choropleth Map dashboard item to data in the Designer or in code.

Binding to Data in the Designer

The image below shows a sample Choropleth Map dashboard item that is bound to data.

ChoroplethMapDataBinding_Main

To bind the Choropleth Map dashboard item to data, drag and drop a data source field to a placeholder contained in one of the available data sections. The Choropleth Map provides two data item groups for data binding: DATA ITEMS and TOOLTIP DATA ITEMS. Tables below list the available data sections.

DATA ITEMS

Section

Processed as

Description

Attribute

Dimension

Allows you to associate map shapes with data source field values.

To associate map shapes with data source field values, drag-and-drop the required dimension to the data item’s placeholder and select the required attribute in the Map Attribute Binding dialog. To invoke this dialog, click the Options button (the ChoroplethMap_MapAttributeBindingIcon icon) next to the Attribute placeholder.

MapAttributeBindingDialog_ChoroplethMap

Select the required attribute and click OK.

Maps

Measure

Contains data items whose values are used to color map shapes. Map shape colors vary based on the map type.

Click the Options button (the Grid_ColumnTypeIndicators_MeasureColumn or Grid_ColumnTypeIndicators_DeltaColumn icon depending on the map type) next to the Value placeholder and select the required map type in the invoked Choropleth Map Options dialog.

ChoroplethMapOptions_MapType

  • If you select Value, the Choropleth map colors map shapes depending on the values provided. To learn more, see Map Coloring.
  • If you select Delta, the Choropleth map colors map shapes depending on the difference between two values. To learn how to specify delta indication settings, see Delta.

Note

You can fill several data item containers in the Maps section and use the Values drop-down menu to switch between the provided values. To invoke the Values menu, click the DashboardItems_OtherElements icon in the dashboard item caption.

TOOLTIP DATA ITEMS

Section

Processed as

Description

Measures

Measure

Allows you to add supplementary content to the tooltips. Drag and drop the required measures to provide additional data.

TooltipDataItems_dx

Binding to Data in Code

To provide data for the Choropleth Map dashboard item, do the following.

  1. Provide the required map. Use the MapDashboardItem.Area property to specify the built-in map or specify the existing shapefile using the MapDashboardItem.CustomShapefile property.
  2. Specify the binding between the required map attribute and the data source field. Use the ChoroplethMapDashboardItem.AttributeName property to specify the name of the required attribute. Specify the corresponding dimension using the ChoroplethMapDashboardItem.AttributeDimension property.
  3. Specify the measure or set of measures that will be used to color map shapes.

  4. Optionally, provide tooltip values using the MapDashboardItem.TooltipMeasures property.

Example

The following example demonstrates how to bind a Choropleth Map dashboard item to data in code.

Imports System.Windows.Forms
Imports DevExpress.DashboardCommon
Imports DevExpress.DataAccess.ConnectionParameters
Imports DevExpress.DataAccess.Sql

Namespace Dashboard_CreateChoroplethMap
    Partial Public Class Form1
        Inherits Form

        Public Sub New()
            InitializeComponent()

            ' Creates a new dashboard and a data source for this dashboard.
            Dim dashboard As New Dashboard()

            Dim dataSource As New DashboardSqlDataSource()
            Dim sqlQuery As New CustomSqlQuery("Countries", "select * from Countries")
            dataSource.ConnectionParameters = New Access97ConnectionParameters("..\..\Data\countriesDB.mdb", "", "")
            dataSource.Queries.Add(sqlQuery)

            ' Creates a choropleth map dashboard item and specifies its data source.
            Dim choroplethMap As New ChoroplethMapDashboardItem()
            choroplethMap.DataSource = dataSource
            choroplethMap.DataMember = "Countries"

            ' Loads the map of the world.
            choroplethMap.Area = ShapefileArea.WorldCountries

            ' Specifies a binding between the required map attribute and the data source field.
            choroplethMap.AttributeName = "NAME"
            choroplethMap.AttributeDimension = New Dimension("Country")

            ' Creates a ValueMap object with a measure that provides data for color map shapes.
            ' Then, adds this object to the Maps collection of the choropleth map dashboard item.
            Dim populationMap As New ValueMap(New Measure("Population"))
            choroplethMap.Maps.Add(populationMap)

            ' Adds the choropleth map dashboard item to the dashboard and opens this
            ' dashboard in the Dashboard Viewer.
            dashboard.Items.Add(choroplethMap)
            dashboardViewer1.Dashboard = dashboard
        End Sub
    End Class
End Namespace
See Also