New to Telerik UI for ASP.NET Core? Download free 30-day trial

ChartNegativeValueSettingsBuilder

Methods

Color(System.String)

Sets the color for bubbles representing negative values

Parameters

color - System.String

The bubble color (CSS format).

Example


            @(Html.Kendo().Chart()
                      .Name("Chart")
                      .Series(series => series
                          .Bubble(s => s.x, s => s.y, s => s.size)
                          .NegativeValues(n => n
                              .Visible(true)
                              .Color("#ff0000")
                          )
                       )
            )

Visible(System.Boolean)

Sets the visibility for bubbles representing negative values

Parameters

visible - System.Boolean

The visibility for bubbles representing negative values.

Example


            @(Html.Kendo().Chart()
                      .Name("Chart")
                      .Series(series => series
                          .Bubble(s => s.x, s => s.y, s => s.size)
                          .NegativeValues(n => n
                              .Visible(true)
                          );
                       )
            )

In this article
Not finding the help you need?