Hello,
i'd like to know if it's possible to set two point labels in one bar(look attached file).
My view model class looks like that:
Thanks in advance.
i'd like to know if it's possible to set two point labels in one bar(look attached file).
My view model class looks like that:
public class ProductSales |
{ |
public ProductSales(int quantity, double percValue, string monthName) |
{ |
this.Quantity = quantity; |
this.ImplementedPlan = percValue; |
this.MonthName = monthName; |
} |
public int Quantity |
{ |
get; set; |
} |
public double ImplementedPlan |
{ |
get; set; |
} |
public string MonthName |
{ |
get; set; |
} |
} |
Thanks in advance.