I want to create grid in WPF, which is dynamiccally grows depending on the array length that is in the view model. So in view model I have three props:
public string[] HorisontalNames {get;}
public string[] VerticalNames {get;}
public double[,] Values {get;set;}
Is that possible? I want it to be simple for view model.