Subversion Repositories SmartDukaan

Rev

Rev 27904 | Go to most recent revision | View as "text/plain" | Blame | Compare with Previous | Last modification | View Log | RSS feed

package com.spice.profitmandi.common.model;

import java.util.List;

public class DatasetModel {

        public String label;
        public String backgroundColor;
        public List<Double> data;
        public String type;
        public int order;
        public String fill;

        
        

        

        public String getFill() {
                return fill;
        }

        public void setFill(String fill) {
                this.fill = fill;
        }

        public String getType() {
                return type;
        }

        public void setType(String type) {
                this.type = type;
        }


        public int getOrder() {
                return order;
        }

        public void setOrder(int order) {
                this.order = order;
        }


        public String stack;

        public String getLabel() {
                return label;
        }

        public void setLabel(String label) {
                this.label = label;
        }

        public String getBackgroundColor() {
                return backgroundColor;
        }

        public void setBackgroundColor(String backgroundColor) {
                this.backgroundColor = backgroundColor;
        }

        public List<Double> getData() {
                return data;
        }

        public void setData(List<Double> data) {
                this.data = data;
        }

        public String getStack() {
                return stack;
        }

        public void setStack(String stack) {
                this.stack = stack;
        }

        @Override
        public String toString() {
                return "DatasetModel [label=" + label + ", backgroundColor=" + backgroundColor + ", data=" + data + ", stack="
                                + stack + "]";
        }

        public DatasetModel(String label, String backgroundColor, List<Double> data, String stack) {
                super();
                this.label = label;
                this.backgroundColor = backgroundColor;
                this.data = data;
                this.stack = stack;
        }

        public DatasetModel() {
                super();
        }

}