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

com.vaadin.flow.component.charts.model.Level 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;

import com.vaadin.flow.component.charts.model.style.Color;

/**
 * Set options on specific levels. Takes precedence over series options, but not
 * point options.
 */
public class Level extends AbstractConfigurationObject {

    private Color borderColor;
    private DashStyle borderDashStyle;
    private Number borderWidth;
    private Color color;
    private DataLabels dataLabels;
    private TreeMapLayoutAlgorithm layoutAlgorithm;
    private TreeMapLayoutStartingDirection layoutStartingDirection;
    private Number level;

    public Level() {
    }

    /**
     * @see #setBorderColor(Color)
     */
    public Color getBorderColor() {
        return borderColor;
    }

    /**
     * Can set a borderColor on all points which lies on the same
     * level.
     */
    public void setBorderColor(Color borderColor) {
        this.borderColor = borderColor;
    }

    /**
     * @see #setBorderDashStyle(DashStyle)
     */
    public DashStyle getBorderDashStyle() {
        return borderDashStyle;
    }

    /**
     * Set the dash style of the border of all the point which lies on the
     * level. See plotOptions.scatter.dashStyle
     * for possible options.
     */
    public void setBorderDashStyle(DashStyle borderDashStyle) {
        this.borderDashStyle = borderDashStyle;
    }

    /**
     * @see #setBorderWidth(Number)
     */
    public Number getBorderWidth() {
        return borderWidth;
    }

    /**
     * Can set the borderWidth on all points which lies on the same level.
     */
    public void setBorderWidth(Number borderWidth) {
        this.borderWidth = borderWidth;
    }

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

    /**
     * Can set a color on all points which lies on the same level.
     */
    public void setColor(Color color) {
        this.color = color;
    }

    /**
     * @see #setDataLabels(DataLabels)
     */
    public DataLabels getDataLabels() {
        if (dataLabels == null) {
            dataLabels = new DataLabels();
        }
        return dataLabels;
    }

    /**
     * Can set the options of dataLabels on each point which lies on the level.
     * plotOptions.treemap.dataLabels for
     * possible values.
     * 

* Defaults to: undefined */ public void setDataLabels(DataLabels dataLabels) { this.dataLabels = dataLabels; } /** * @see #setLayoutAlgorithm(TreeMapLayoutAlgorithm) */ public TreeMapLayoutAlgorithm getLayoutAlgorithm() { return layoutAlgorithm; } /** * Can set the layoutAlgorithm option on a specific level. */ public void setLayoutAlgorithm(TreeMapLayoutAlgorithm layoutAlgorithm) { this.layoutAlgorithm = layoutAlgorithm; } /** * @see #setLayoutStartingDirection(TreeMapLayoutStartingDirection) */ public TreeMapLayoutStartingDirection getLayoutStartingDirection() { return layoutStartingDirection; } /** * Can set the layoutStartingDirection option on a specific level. */ public void setLayoutStartingDirection( TreeMapLayoutStartingDirection layoutStartingDirection) { this.layoutStartingDirection = layoutStartingDirection; } /** * @see #setLevel(Number) */ public Number getLevel() { return level; } /** * Decides which level takes effect from the options set in the levels * object. */ public void setLevel(Number level) { this.level = level; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy