Default area and range-navigator series fills to solid

This commit is contained in:
yordanov
2026-06-15 10:29:07 +03:00
committed by Vladimir Enchev
parent e694f75a75
commit 414e9968f2
4 changed files with 15 additions and 15 deletions

View File

@@ -27,12 +27,12 @@ namespace Radzen.Blazor
public string? Fill { get; set; }
/// <summary>
/// Specifies how the area is filled. Set to <see cref="FillMode.Gradient"/> by default - the area fades from the series color towards the baseline.
/// Use <see cref="FillMode.Solid"/> for a solid fill or <see cref="FillMode.None"/> to render only the line.
/// Specifies how the area is filled. Set to <see cref="FillMode.Solid"/> by default.
/// Use <see cref="FillMode.Gradient"/> for a fill that fades toward the baseline, or <see cref="FillMode.None"/> to render only the line.
/// </summary>
/// <value>The fill mode. Default is <see cref="FillMode.Gradient"/>.</value>
/// <value>The fill mode. Default is <see cref="FillMode.Solid"/>.</value>
[Parameter]
public FillMode FillMode { get; set; } = FillMode.Gradient;
public FillMode FillMode { get; set; } = FillMode.Solid;
/// <summary>
/// Specifies the opacity at the top of the gradient fill. Used when <see cref="FillMode"/> is <see cref="FillMode.Gradient"/>.

View File

@@ -27,12 +27,12 @@ namespace Radzen.Blazor
public string? Fill { get; set; }
/// <summary>
/// Specifies how the area is filled. Set to <see cref="FillMode.Gradient"/> by default - the area fades from the series color towards the baseline.
/// Use <see cref="FillMode.Solid"/> for a solid fill or <see cref="FillMode.None"/> to render only the line.
/// Specifies how the area is filled. Set to <see cref="FillMode.Solid"/> by default.
/// Use <see cref="FillMode.Gradient"/> for a fill that fades toward the baseline, or <see cref="FillMode.None"/> to render only the line.
/// </summary>
/// <value>The fill mode. Default is <see cref="FillMode.Gradient"/>.</value>
/// <value>The fill mode. Default is <see cref="FillMode.Solid"/>.</value>
[Parameter]
public FillMode FillMode { get; set; } = FillMode.Gradient;
public FillMode FillMode { get; set; } = FillMode.Solid;
/// <summary>
/// Specifies the opacity at the top of the gradient fill. Used when <see cref="FillMode"/> is <see cref="FillMode.Gradient"/>.

View File

@@ -70,11 +70,11 @@ namespace Radzen.Blazor
public double FillOpacity { get; set; } = 0.3;
/// <summary>
/// Specifies how the area below the line is filled. Set to <see cref="FillMode.Gradient"/> by default - the area fades from the fill color towards the baseline.
/// Specifies how the area below the line is filled. Set to <see cref="FillMode.Solid"/> by default.
/// </summary>
/// <value>The fill mode. Default is <see cref="FillMode.Gradient"/>.</value>
/// <value>The fill mode. Default is <see cref="FillMode.Solid"/>.</value>
[Parameter]
public FillMode FillMode { get; set; } = FillMode.Gradient;
public FillMode FillMode { get; set; } = FillMode.Solid;
private readonly string gradientId = $"rzNavGradient{Guid.NewGuid():N}";

View File

@@ -27,12 +27,12 @@ namespace Radzen.Blazor
public string? Fill { get; set; }
/// <summary>
/// Specifies how the area is filled. Set to <see cref="FillMode.Gradient"/> by default - the area fades from the series color towards the baseline.
/// Use <see cref="FillMode.Solid"/> for a solid fill or <see cref="FillMode.None"/> to render only the line.
/// Specifies how the area is filled. Set to <see cref="FillMode.Solid"/> by default.
/// Use <see cref="FillMode.Gradient"/> for a fill that fades toward the baseline, or <see cref="FillMode.None"/> to render only the line.
/// </summary>
/// <value>The fill mode. Default is <see cref="FillMode.Gradient"/>.</value>
/// <value>The fill mode. Default is <see cref="FillMode.Solid"/>.</value>
[Parameter]
public FillMode FillMode { get; set; } = FillMode.Gradient;
public FillMode FillMode { get; set; } = FillMode.Solid;
/// <summary>
/// Specifies the opacity at the top of the gradient fill. Used when <see cref="FillMode"/> is <see cref="FillMode.Gradient"/>.