dashboard-devexpress-dot-dashboardblazor-dot-dxdashboard-314db11b.md
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
[Parameter]
public string Endpoint { get; set; }
<Parameter>
Public Property Endpoint As String
| Type | Description |
|---|---|
| String |
A string value that specifies the endpoint URL prefix used to send data requests to a server.
|
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