Configures the visual styling and display behavior for negative values in bubble chart series. Controls how negative data points are represented with distinct colors and visibility settings to provide clear differentiation between positive and negative values in data visualizations.
Definition
Namespace:Telerik.Blazor.Components
Assembly:Telerik.Blazor.dll
Syntax:
public class ChartSeriesNegativeValues : DataVizChildComponent, IComponent, IHandleEvent, IHandleAfterRender, IDisposable
Inheritance: objectComponentBaseDataVizChildComponentChartSeriesNegativeValues
Implements:
Inherited Members
Constructors
public ChartSeriesNegativeValues()
Methods
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Overrides:
protected override void OnInitialized()
Overrides:
protected override void OnParametersSet()
Overrides:
Properties
[Parameter]
public RenderFragment ChildContent { get; set; }
Sets the color for negative value bubbles in bubble chart series using any valid CSS color value. Accepts hex codes (#F44336), RGB values (rgb(244, 67, 54)), named colors (red, orange), or HSL values. Use distinctive colors to clearly differentiate negative values from positive ones in bubble visualizations.
[Parameter]
public string Color { get; set; }
Controls the visibility of negative value bubbles in bubble chart series. Set to true to display negative bubbles with distinct styling, false to hide negative values completely, or leave null for default behavior. Visible negative bubbles help users understand the complete data range.
[Parameter]
public bool? Visible { get; set; }