DxBackendOptions Class
Contains options that allow you to configure the Dashboard component’s backend.
Namespace: DevExpress.DashboardBlazor
Assembly: DevExpress.Dashboard.v24.1.Blazor.dll
NuGet Package: DevExpress.Blazor.Dashboard
Declaration
Remarks
Use the RequestHttpHeaders property to specify HTTP headers that are sent to the server:
<DxDashboard style="height: 800px;" Endpoint="api/dashboard">
<DxBackendOptions RequestHttpHeaders="@headers"></DxBackendOptions>
</DxDashboard>
@code {
public Dictionary<string, string> headers = new Dictionary<string, string>() { { "Auth", "AuthToken123" } };
}
Inheritance
Object
ComponentBase
DevExpress.DashboardBlazor.Native.DxSettingsComponent
DxBackendOptions
See Also