Esempio n. 1
0
 public BurndownChartValueConfig(BurndownChartCategoryConfig config, string name, double value) :
     base(config)
 {
     this.config = config;
     this.name   = name;
     this.value  = value;
 }
Esempio n. 2
0
        public IBurndownChartCategoryConfig AddCategory(string name)
        {
            BurndownChartCategoryConfig result = new BurndownChartCategoryConfig(this, name);

            this.categories.Add(result);

            return(result);
        }