All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.flow.component.charts.model.DataLabels Maven / Gradle / Ivy

There is a newer version: 24.4.12
Show newest version
package com.vaadin.flow.component.charts.model;

/*-
 * #%L
 * Vaadin Charts for Flow
 * %%
 * Copyright (C) 2014 - 2019 Vaadin Ltd
 * %%
 * This program is available under Commercial Vaadin Add-On License 3.0
 * (CVALv3).
 * 
 * See the file licensing.txt distributed with this software for more
 * information about licensing.
 * 
 * You should have received a copy of the CVALv3 along with this program.
 * If not, see .
 * #L%
 */


import javax.annotation.Generated;
import com.vaadin.flow.component.charts.model.style.Color;
import com.vaadin.flow.component.charts.model.style.Style;

/**
 * 

* Options for the series data labels, appearing next to each data point. *

* *

* In styled mode, the data labels can be styled wtih the * .highcharts-data-label-box and * .highcharts-data-label class names (see example). *

*/ @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 DataLabels extends AbstractDataLabels { private HorizontalAlign align; private Boolean allowOverlap; private Color backgroundColor; private Color borderColor; private Number borderRadius; private Number borderWidth; private String className; private Color color; private Boolean crop; private Boolean defer; private Boolean enabled; private String format; private String _fn_formatter; private Boolean inside; private String overflow; private Number padding; private Number rotation; private Boolean shadow; private Shape shape; private Style style; private Boolean useHTML; private VerticalAlign verticalAlign; private Number x; private Number y; private Number zIndex; private Color connectorColor; private Number connectorPadding; private Number connectorWidth; private Number distance; private Boolean softConnector; public DataLabels() { } /** * @see #setAlign(HorizontalAlign) */ public HorizontalAlign getAlign() { return align; } /** * The alignment of the data label compared to the point. If * right, the right side of the label should be touching the * point. For points with an extent, like columns, the alignments also * dictates how to align it inside the box, as given with the inside option. Can be * one of "left", "center" or "right". *

* Defaults to: center */ public void setAlign(HorizontalAlign align) { this.align = align; } /** * @see #setAllowOverlap(Boolean) */ public Boolean getAllowOverlap() { return allowOverlap; } /** * Whether to allow data labels to overlap. To make the labels less * sensitive for overlapping, the dataLabels.padding can * be set to 0. *

* Defaults to: false */ public void setAllowOverlap(Boolean allowOverlap) { this.allowOverlap = allowOverlap; } /** * @see #setBackgroundColor(Color) */ public Color getBackgroundColor() { return backgroundColor; } /** * The background color or gradient for the data label. Defaults to * undefined. */ public void setBackgroundColor(Color backgroundColor) { this.backgroundColor = backgroundColor; } /** * @see #setBorderColor(Color) */ public Color getBorderColor() { return borderColor; } /** * The border color for the data label. Defaults to undefined. */ public void setBorderColor(Color borderColor) { this.borderColor = borderColor; } /** * @see #setBorderRadius(Number) */ public Number getBorderRadius() { return borderRadius; } /** * The border radius in pixels for the data label. *

* Defaults to: 0 */ public void setBorderRadius(Number borderRadius) { this.borderRadius = borderRadius; } /** * @see #setBorderWidth(Number) */ public Number getBorderWidth() { return borderWidth; } /** * The border width in pixels for the data label. *

* Defaults to: 0 */ public void setBorderWidth(Number borderWidth) { this.borderWidth = borderWidth; } /** * @see #setClassName(String) */ public String getClassName() { return className; } /** * A class name for the data label. Particularly in styled mode, this can be used to give each series' or point's data * label unique styling. In addition to this option, a default color class * name is added so that we can give the labels a contrast text shadow. */ public void setClassName(String className) { this.className = className; } /** * @see #setColor(Color) */ public Color getColor() { return color; } /** * The text color for the data labels. Defaults to null. */ public void setColor(Color color) { this.color = color; } /** * @see #setCrop(Boolean) */ public Boolean getCrop() { return crop; } /** * Whether to hide data labels that are outside the plot area. By default, * the data label is moved inside the plot area according to the overflow option. *

* Defaults to: true */ public void setCrop(Boolean crop) { this.crop = crop; } /** * @see #setDefer(Boolean) */ public Boolean getDefer() { return defer; } /** * Whether to defer displaying the data labels until the initial series * animation has finished. *

* Defaults to: true */ public void setDefer(Boolean defer) { this.defer = defer; } public DataLabels(Boolean enabled) { this.enabled = enabled; } /** * @see #setEnabled(Boolean) */ public Boolean getEnabled() { return enabled; } /** * Enable or disable the data labels. *

* Defaults to: false */ public void setEnabled(Boolean enabled) { this.enabled = enabled; } /** * @see #setFormat(String) */ public String getFormat() { return format; } /** * A format string for the data label. Available variables are the same * as for formatter. *

* Defaults to: {y} */ public void setFormat(String format) { this.format = format; } public String getFormatter() { return _fn_formatter; } public void setFormatter(String _fn_formatter) { this._fn_formatter = _fn_formatter; } /** * @see #setInside(Boolean) */ public Boolean getInside() { return inside; } /** * For points with an extent, like columns, whether to align the data label * inside the box or to the actual value point. Defaults to * false in most cases, true in stacked columns. */ public void setInside(Boolean inside) { this.inside = inside; } /** * @see #setOverflow(String) */ public String getOverflow() { return overflow; } /** * How to handle data labels that flow outside the plot area. The default is * justify, which aligns them inside the plot area. For columns * and bars, this means it will be moved inside the bar. To display data * labels outside the plot area, set crop to false * and overflow to "none". *

* Defaults to: justify */ public void setOverflow(String overflow) { this.overflow = overflow; } /** * @see #setPadding(Number) */ public Number getPadding() { return padding; } /** * When either the borderWidth or the * backgroundColor is set, this is the padding within the box. *

* Defaults to: 5 */ public void setPadding(Number padding) { this.padding = padding; } /** * @see #setRotation(Number) */ public Number getRotation() { return rotation; } /** * Text rotation in degrees. Note that due to a more complex structure, * backgrounds, borders and padding will be lost on a rotated data label. *

* Defaults to: 0 */ public void setRotation(Number rotation) { this.rotation = rotation; } /** * @see #setShadow(Boolean) */ public Boolean getShadow() { return shadow; } /** * The shadow of the box. Works best with borderWidth or * backgroundColor. Since 2.3 the shadow can be an object * configuration containing color, offsetX, * offsetY, opacity and width. *

* Defaults to: false */ public void setShadow(Boolean shadow) { this.shadow = shadow; } /** * @see #setShape(Shape) */ public Shape getShape() { return shape; } /** * The name of a symbol to use for the border around the label. Symbols are * predefined functions on the Renderer object. *

* Defaults to: square */ public void setShape(Shape shape) { this.shape = shape; } /** * @see #setStyle(Style) */ public Style getStyle() { if (style == null) { style = new Style(); } return style; } /** * Styles for the label. The default color setting is * "contrast", which is a pseudo color that Highcharts picks up * and applies the maximum contrast to the underlying point item, for * example the bar in a bar chart. The textOutline is a pseudo * property that applies an outline of the given width with the given color, * which by default is the maximum contrast to the text. So a bright text * color will result in a black text outline for maximum readability on a * mixed background. In some cases, especially with grayscale text, the text * outline doesn't work well, in which cases it can be disabled by setting * it to "none". *

* Defaults to: {"color": "contrast", "fontSize": "11px", "fontWeight": * "bold", "textOutline": "1px contrast" } */ public void setStyle(Style style) { this.style = style; } /** * @see #setUseHTML(Boolean) */ public Boolean getUseHTML() { return useHTML; } /** * Whether to use HTML to render the labels. *

* Defaults to: false */ public void setUseHTML(Boolean useHTML) { this.useHTML = useHTML; } /** * @see #setVerticalAlign(VerticalAlign) */ public VerticalAlign getVerticalAlign() { return verticalAlign; } /** * The vertical alignment of a data label. Can be one of top, * middle or bottom. The default value depends on * the data, for instance in a column chart, the label is above positive * values and below negative values. */ public void setVerticalAlign(VerticalAlign verticalAlign) { this.verticalAlign = verticalAlign; } /** * @see #setX(Number) */ public Number getX() { return x; } /** * The x position offset of the label relative to the point. *

* Defaults to: 0 */ public void setX(Number x) { this.x = x; } /** * @see #setY(Number) */ public Number getY() { return y; } /** * The y position offset of the label relative to the point. *

* Defaults to: -6 */ public void setY(Number y) { this.y = y; } /** * @see #setZIndex(Number) */ public Number getZIndex() { return zIndex; } /** * The Z index of the data labels. The default Z index puts it above the * series. Use a Z index of 2 to display it behind the series. *

* Defaults to: 6 */ public void setZIndex(Number zIndex) { this.zIndex = zIndex; } /** * @see #setConnectorColor(Color) */ public Color getConnectorColor() { return connectorColor; } /** *

* The color of the line connecting the data label to the pie slice. The * default color is the same as the point's color. *

* *

* In styled mode, the connector stroke is given in the * .highcharts-data-label-connector class. *

*

* Defaults to: {point.color} */ public void setConnectorColor(Color connectorColor) { this.connectorColor = connectorColor; } /** * @see #setConnectorPadding(Number) */ public Number getConnectorPadding() { return connectorPadding; } /** * The distance from the data label to the connector. *

* Defaults to: 5 */ public void setConnectorPadding(Number connectorPadding) { this.connectorPadding = connectorPadding; } /** * @see #setConnectorWidth(Number) */ public Number getConnectorWidth() { return connectorWidth; } /** *

* The width of the line connecting the data label to the pie slice. *

* *

* In styled mode, the connector stroke width is given in the * .highcharts-data-label-connector class. *

*

* Defaults to: 1 */ public void setConnectorWidth(Number connectorWidth) { this.connectorWidth = connectorWidth; } /** * @see #setDistance(Number) */ public Number getDistance() { return distance; } /** * The distance of the data label from the pie's edge. Negative numbers put * the data label on top of the pie slices. Connectors are only shown for * data labels outside the pie. *

* Defaults to: 30 */ public void setDistance(Number distance) { this.distance = distance; } /** * @see #setSoftConnector(Boolean) */ public Boolean getSoftConnector() { return softConnector; } /** * Whether to render the connector as a soft arc or a line with sharp break. *

* Defaults to: true */ public void setSoftConnector(Boolean softConnector) { this.softConnector = softConnector; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy