Back to Devexpress

XML File

dashboard-113927-winforms-dashboard-winforms-designer-create-dashboards-in-the-winforms-designer-providing-data-sql-data-source-connect-to-sql-databases-xml-file.md

latest4.3 KB
Original Source

XML File

  • Sep 24, 2025
  • 3 minutes to read

The Dashboard Designer allows you to connect to different types of SQL databases in the Data Source Wizard. You can also use data access API to connect to the database and select data in code.

This tutorial describes how to establish a connection to an XML data file and select data.

Note

The Dashboard Designer has built-in support for XML files and does not require a specific data provider to be installed on the client machine. The XML file should be compatible with the DataSet Relational Structure and includes the XSD schema that describes the document structure.

Create a Data Source in the Data Source Wizard

To connect to the XML file in the Dashboard Designer, follow the steps below:

  1. Click the New Data Source button in the Data Source ribbon tab.

  2. On the first page of the invoked Data Source Wizard dialog, specify whether you want to use an existing data connection or create a new data connection.

  3. On the next page, select XML file and click Next.

  4. On the next page, specify connection parameters and click Next.

  5. Click the Run Query Builder… button to invoke the Query Builder and select data.

Create a Data Source in Code

To create a data source that uses a connection to the XML data file, create an instance of the DashboardSqlDataSource class and follow the steps below:

  1. Specify connection parameters for the XML file. Create the XmlFileConnectionParameters class object and set the XmlFileConnectionParameters.FileName property to specify the path to the file that contains data.

  2. Specify the query. To do this, create a SelectQuery object to specify a set of tables/columns that form a SELECT statement when you execute a query.

  3. Add the created DashboardSqlDataSource object to the Dashboard.DataSources collection.

The following code snippet shows how to supply the dashboard with data from the Northwind XML file:

csharp
using DevExpress.DashboardCommon;
using DevExpress.DataAccess.ConnectionParameters;
using DevExpress.DataAccess.Sql;
// ...
            XmlFileConnectionParameters xmlParams = new XmlFileConnectionParameters();
            xmlParams.FileName = @"..\..\Data\nwind.xml";

            DashboardSqlDataSource xmlDataSource = new DashboardSqlDataSource("Data Source 1", xmlParams);
            SelectQuery selectQuery = SelectQueryFluentBuilder
                .AddTable("Products")
                .SelectColumns("ProductName", "UnitPrice")
                .Build("Query 1");
            xmlDataSource.Queries.Add(selectQuery);
            xmlDataSource.Fill();
            dashboard.DataSources.Add(xmlDataSource);
vb
Imports DevExpress.DashboardCommon
Imports DevExpress.DataAccess.ConnectionParameters
Imports DevExpress.DataAccess.Sql
' ...
            Dim xmlParams As New XmlFileConnectionParameters()
            xmlParams.FileName = "..\..\Data\nwind.xml"

            Dim xmlDataSource As New DashboardSqlDataSource("Data Source 1", xmlParams)
            Dim query As SelectQuery = SelectQueryFluentBuilder _ 
                .AddTable("Products") _ 
                .SelectColumns("ProductName", "UnitPrice") _
                .Build("Query 1")
            xmlDataSource.Queries.Add(selectQuery)
            xmlDataSource.Fill()
            dashboard.DataSources.Add(xmlDataSource)