This question is locked. New answers and comments are not allowed.
Could u pls advice how to do chart like on the picture attached with data model like this:
Data look like this:
I think it should be gantt chart.
public class Contract{ public string ContractOID; public DateTime StartDate; public DateTime EndDate } Contracts = new ObservableCollection<Contract>{ new Contract {ContractOID=1, ContractOID="Contract1", StartDate=new DateTime(2011,1,1), EndDate=new DateTime(2011,3,15)}, new Contract {ContractOID=2,ContractOID="Contract2", StartDate=new DateTime(2011,3,16), EndDate=new DateTime(2011,12,31)}, Data look like this:
| ContractOID | StartDate | EndDate |
| Contract1 | 1-Jan-11 | 15-Mar-11 |
| Contract2 | 16-Mar-11 | 31-Dec-11 |
I think it should be gantt chart.