DxLegendSubtitleSettings Class
Contains settings for the legend subtitle.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v24.1.dll
NuGet Package: DevExpress.Blazor
Declaration
public class DxLegendSubtitleSettings :
SubtitleBaseSettings
Remarks
Use DxLegendSubtitleSettings
objects to configure subtitle settings for the following components:
- DxBarGaugeLegendSettings
- Contains settings for the Bar Gauge‘s legend.
- DxLegendTitleSettings
- DxFontSettings
- DxMarginSettings
DxLegendSubtitleSettings
To create a legend subtitle, add a DxLegendSubtitleSettings
object to DxLegendTitleSettings component markup.
The DxLegendSubtitleSettings
component allows you to specify the following properties at the component level:
You can also add a DxFontSettings object to subtitle markup to configure the subtitle’s font settings.
The following code snippet customizes the legend’s title and subtitle in the DxBarGauge component:
<DxBarGauge Width="30%"
Height="200px"
StartValue="-5"
EndValue="5"
BaseValue="0"
Values="@Values">
<DxBarGaugeLegendSettings Visible="true">
<DxLegendTitleSettings Text="Legend Title"
HorizontalAlignment="HorizontalAlignment.Right">
<DxFontSettings Color="purple" />
<DxMarginSettings Bottom="10" />
<DxLegendSubtitleSettings Text="Legend Subtitle">
<DxFontSettings Color="orange" />
</DxLegendSubtitleSettings>
</DxLegendTitleSettings>
</DxBarGaugeLegendSettings>
</DxBarGauge>
@code {
double[] Values = new double[] { -2.13, 1.48, -3.09, 4.52, 4.9, 3.9 };
}
Inheritance
Object
ComponentBase
DxSettingsComponent<DevExpress.Blazor.ClientComponents.Internal.SubtitleSettingsModel>
DxComplexSettingsComponent<SubtitleBaseSettings, DevExpress.Blazor.ClientComponents.Internal.SubtitleSettingsModel>
TextBaseSettings<SubtitleBaseSettings, DevExpress.Blazor.ClientComponents.Internal.SubtitleSettingsModel>
SubtitleBaseSettings
DxLegendSubtitleSettings
See Also