Back to Devexpress

DxDashboard.Endpoint Property

dashboard-devexpress-dot-dashboardblazor-dot-dxdashboard-314db11b.md

latest2.0 KB
Original Source

DxDashboard.Endpoint Property

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

Namespace : DevExpress.DashboardBlazor

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

NuGet Package : DevExpress.Blazor.Dashboard

Declaration

csharp
[Parameter]
public string Endpoint { get; set; }
vb
<Parameter>
Public Property Endpoint As String

Property Value

TypeDescription
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:

razor
<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

DxDashboard Class

DxDashboard Members

DevExpress.DashboardBlazor Namespace