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

tech.tablesaw.plotly.components.change.Increasing Maven / Gradle / Ivy

There is a newer version: 0.43.1
Show newest version
package tech.tablesaw.plotly.components.change;

public class Increasing extends Change {

    private Increasing(IncreasingBuilder builder) {
        super(builder);
    }

    public static IncreasingBuilder builder() {
        return new IncreasingBuilder();
    }

    public static class IncreasingBuilder extends ChangeBuilder {

        public Increasing.IncreasingBuilder fillColor(String color) {
            this.fillColor = color;
            return this;
        }

        public Increasing.IncreasingBuilder changeLine(ChangeLine line) {
            this.changeLine = line;
            return this;
        }

        public Increasing build() {
            return new Increasing(this);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy