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

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

package com.vaadin.flow.component.charts.model;

/*-
 * #%L
 * Vaadin Charts for Flow
 * %%
 * Copyright (C) 2014 - 2018 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;

/**
 * 

* An array of lines stretching across the plot area, marking a specific value * on one of the axes. *

* *

* In styled mode, the plot lines are styled by the * .highcharts-plot-line class in addition to the * className option. *

*/ @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 PlotLine extends AbstractConfigurationObject { private String className; private String id; private Label label; private Number value; private Number zIndex; public PlotLine() { } /** * @see #setClassName(String) */ public String getClassName() { return className; } /** * A custom class name, in addition to the default * highcharts-plot-line, to apply to each individual line. */ public void setClassName(String className) { this.className = className; } /** * @see #setId(String) */ public String getId() { return id; } /** * An id used for identifying the plot line in Axis.removePlotLine. */ public void setId(String id) { this.id = id; } /** * @see #setLabel(Label) */ public Label getLabel() { if (label == null) { label = new Label(); } return label; } /** * Text labels for the plot bands */ public void setLabel(Label label) { this.label = label; } /** * @see #setValue(Number) */ public Number getValue() { return value; } /** * The position of the line in axis units. */ public void setValue(Number value) { this.value = value; } /** * @see #setZIndex(Number) */ public Number getZIndex() { return zIndex; } /** * The z index of the plot line within the chart. */ public void setZIndex(Number zIndex) { this.zIndex = zIndex; } public PlotLine(Number value) { this.value = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy