mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
Default area and range-navigator series fills to solid
This commit is contained in:
committed by
Vladimir Enchev
parent
e694f75a75
commit
414e9968f2
@@ -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"/>.
|
||||
|
||||
@@ -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"/>.
|
||||
|
||||
@@ -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}";
|
||||
|
||||
|
||||
@@ -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"/>.
|
||||
|
||||
Reference in New Issue
Block a user