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

com.vaadin.flow.component.charts.model.Bottom 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;
import com.vaadin.flow.component.charts.model.style.Color;

/**
 * The bottom of the frame around a 3D chart.
 */
@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 Bottom extends AbstractConfigurationObject {

	private Color color;
	private Number size;

	public Bottom() {
	}

	/**
	 * @see #setColor(Color)
	 */
	public Color getColor() {
		return color;
	}

	/**
	 * The color of the panel.
	 * 

* Defaults to: transparent */ public void setColor(Color color) { this.color = color; } /** * @see #setSize(Number) */ public Number getSize() { return size; } /** * The thickness of the panel. *

* Defaults to: 1 */ public void setSize(Number size) { this.size = size; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy