ChartNegativeValueSettingsBuilder

Methods

Color(System.String)

Sets the color for bubbles representing negative values

Parameters

color - System.String

The bubble color (CSS format).

Example

Razor
 
            @(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

Razor
 
            @(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
MethodsColor(System.String)Visible(System.Boolean)
Not finding the help you need?
Contact Support