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

com.vaadin.flow.component.charts.model.style.Style Maven / Gradle / Ivy

There is a newer version: 24.5.4
Show newest version
/**
 * Copyright 2000-2024 Vaadin Ltd.
 *
 * This program is available under Vaadin Commercial License and Service Terms.
 *
 * See {@literal } for the full
 * license.
 */
package com.vaadin.flow.component.charts.model.style;

import com.vaadin.flow.component.charts.model.AbstractConfigurationObject;

/**
 * Style options for CSS styling
 */
@SuppressWarnings("serial")
public class Style extends AbstractConfigurationObject {
    private Color color;
    private FontWeight fontWeight;
    private String fontFamily;
    private String fontSize;
    private String left;
    private String top;
    private StylePosition position;
    private String lineHeight;
    private String textShadow;

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

    /**
     * Sets the color CSS attribute.
     *
     * @param color
     */
    public void setColor(Color color) {
        this.color = color;
    }

    /**
     * @see #setFontWeight(FontWeight)
     */
    public FontWeight getFontWeight() {
        return fontWeight;
    }

    /**
     * Sets the font-weight CSS attribute.
     *
     * @param fontWeight
     */
    public void setFontWeight(FontWeight fontWeight) {
        this.fontWeight = fontWeight;
    }

    /**
     * @see #setFontFamily(String)
     */
    public String getFontFamily() {
        return fontFamily;
    }

    /**
     * Sets the font-family CSS attribute.
     *
     * @param fontFamily
     */
    public void setFontFamily(String fontFamily) {
        this.fontFamily = fontFamily;
    }

    /**
     * @see #setFontSize(String)
     */
    public String getFontSize() {
        return fontSize;
    }

    /**
     * Sets the font-size CSS attribute.
     *
     * @param fontSize
     */
    public void setFontSize(String fontSize) {
        this.fontSize = fontSize;
    }

    /**
     * @see #setLeft(String)
     */
    public String getLeft() {
        return left;
    }

    /**
     * Sets the left CSS attribute
     *
     * @param left
     */
    public void setLeft(String left) {
        this.left = left;
    }

    /**
     * @see #setTop(String)
     */
    public String getTop() {
        return top;
    }

    /**
     * Sets the top CSS attribute
     *
     * @param top
     */
    public void setTop(String top) {
        this.top = top;
    }

    /**
     * Sets the position CSS attribute
     *
     * @param position
     */
    public void setPosition(StylePosition position) {
        this.position = position;
    }

    /**
     * @see #setPosition(StylePosition)
     */
    public StylePosition getPosition() {
        return position;
    }

    /**
     * Sets the line-height CSS attribute
     */
    public void setLineHeight(String lineHeight) {
        this.lineHeight = lineHeight;
    }

    /**
     * @see #setLineHeight(String)
     */
    public String getLineHeight() {
        return lineHeight;
    }

    /**
     * @see #setTextShadow(String)
     */
    public String getTextShadow() {
        return textShadow;
    }

    /**
     * Sets the textShadow CSS attribute
     *
     * @param textShadow
     */
    public void setTextShadow(String textShadow) {
        this.textShadow = textShadow;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy