Browse By Tags

  • How to dynamically create a stacked column series with MVVM Binding

    Hi,

    I am trying to create a dynamic stacked column series that binds to the data in view model.

    Here is the sample of data I have

    var ChartData = new ObservableCollection<CityData>();

    public class CityData

    {

    string CityName;

    ObservableCollection…

  • Re: XamDataChart Stackedcolumnseries MVVM

    I have the same question.  In the example below, if I were to set my viewmodel in code behind and had a specific property I was referencing on the view model (called EnergyProdData), which is an IEnumerable, how could i set the stacked column fragments…