Skip to main content
All docs
V23.2

DxDashboard.Endpoint Property

Specifies the URL the Dashboard component uses to send data requests to a server.

Namespace: DevExpress.DashboardBlazor

Assembly: DevExpress.Dashboard.v23.2.Blazor.dll

NuGet Package: DevExpress.Blazor.Dashboard

Declaration

[Parameter]
public string Endpoint { get; set; }

Property Value

Type Description
String

A string value that specifies the endpoint URL prefix used to send data requests to a server.

Remarks

The Endpoint property allows the Dashboard component to interact with a backend (send data requests to a server). The Endpoint value corresponds to the values of the .NET RouteBuilderExtension.MapDashboardRoute properties. The following code snippet shows how to specify the URL used to send data requests to a backend:

<DxDashboard style="height: 800px"
             Endpoint="api/dashboard">
</DxDashboard>

See the following topic for more information about the server-side configuration: Server-Side Configuration (ASP.NET Core).

See Also