We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.charts.model.
Class Zones
- java.lang.Object
-
- com.vaadin.flow.component.charts.model.AbstractConfigurationObject
-
- com.vaadin.flow.component.charts.model.Zones
-
All Implemented Interfaces:
@Generated(value="This class is generated and shouldn\'t be modified", comments="Incorrect and missing API should be reported to https://github.com/vaadin/vaadin-charts-flow/issues/new") public class Zones extends AbstractConfigurationObject
An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the
zoneAxis
option.In styled mode, the color zones are styled with the
.highcharts-zone-{n}
class, or custom classed from theclassName
option (view live demo).See Also:
-
-
Constructor Summary
Constructors Constructor and Description Zones()
-
Method Summary
All Methods Modifier and Type Method and Description String
getClassName()
Number
getValue()
void
setClassName(String className)
Styled mode only.
void
setValue(Number value)
The value up to where the zone extends, if undefined the zones stretches to the last value in the series.
-
-
-
Method Detail
-
getClassName
public String getClassName()
See Also:
-
setClassName
public void setClassName(String className)
Styled mode only. A custom class name for the zone.
-
getValue
public Number getValue()
See Also:
-
setValue
public void setValue(Number value)
The value up to where the zone extends, if undefined the zones stretches to the last value in the series.
Defaults to: undefined
-
-