New to Telerik UI for BlazorStart a free 30-day trial

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

Constructors

C#
public ChartSeriesNegativeValues()

Methods

C#
protected override void BuildRenderTree(RenderTreeBuilder __builder)
Parameters:__builderRenderTreeBuilder

Overrides: ComponentBase.BuildRenderTree(RenderTreeBuilder)

C#
protected override void OnAfterRender(bool firstRender)
Parameters:firstRenderbool

Overrides: ComponentBase.OnAfterRender(bool)

C#
protected override void OnInitialized()

Overrides: DataVizChildComponent.OnInitialized()

C#
protected override void OnParametersSet()

Overrides: ComponentBase.OnParametersSet()

C#
public Dictionary<string, object> Serialize()
Returns:

Dictionary<string, object>

Properties

C#
[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.

C#
[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.

C#
[Parameter]
public bool? Visible { get; set; }