Проблема с привязкой диаграммы рядов с накоплением столбцов к серии - PullRequest
0 голосов
/ 03 марта 2011

У меня большая проблема с привязкой серии столбцов с накоплением к моему графику.

У меня есть открытое свойство ObservableCollection Series в моей модели представления и пытаюсь разными способами, но оно все еще не работает.

Этокод из ViewModel для подготовки Series: private void drawChart () {this.Series.Clear ();

        var dataValues = new List<List<SimpleDataValue>>();

        int wartoscNiezalezna = 1;

        for (int i = 0; i < 2; i++)
        {
            dataValues.Add(new List<SimpleDataValue>());
        }

        foreach (var item in myCollection)
        {
            var param = someparam;

            dataValues[0].Add(new SimpleDataValue { IndependentValue = "Czujnik " + wartoscNiezalezna, DependentValue = 100 });
            //czerwone
            dataValues[1].Add(new SimpleDataValue { IndependentValue = "" + wartoscNiezalezna, DependentValue = 200 });

            wartoscNiezalezna++;

        }
        var stackedSeries = Activator.CreateInstance(typeof(StackedColumnSeries)) as DefinitionSeries;

        int itemnr=0;
        foreach (var item in dataValues)
        {
            var definicja = new SeriesDefinition();
            if(itemnr==0)
            definicja.Title = "Stan 1";
            else
                definicja.Title = "Stan 2";
            definicja.DependentValuePath = "DependentValue";
            definicja.IndependentValuePath = "IndependentValue";
            definicja.ToolTip = "asdas";
            definicja.ItemsSource = item;
            stackedSeries.SeriesDefinitions.Add(definicja);
            itemnr++;
        }
       Series.Add(stackedSeries);
    }

Я не могу связать его с:

    <charting:Chart x:Name="MyChart"  Padding="10,10,10,10">
        <charting:Chart.Series>
            <charting:StackedColumnSeries>
                <charting:SeriesDefinition ItemsSource="{Binding Series}" DependentValuePath="DependentValue" IndependentValuePath="IndependentValue">
                </charting:SeriesDefinition>
            </charting:StackedColumnSeries>
        </charting:Chart.Series>
    </charting:Chart>

Я пытался с SeriesDefinitionsКоллекция и другие.Буду очень признателен за помощь.

Ответы [ 2 ]

0 голосов
/ 30 мая 2012

Я не уверен с синтаксисом, но логика должна быть такой:

ViewModel

public class GraphItem    {
    public string IndependentValue { get; set; }
    public int DependentValue1 { get; set; }
    public int DependentValue2 { get; set; }
}

public class ChartViewModel
{
    private List<GraphItem> itemCollection;
    public List<GraphItem> ItemCollection 
    { 
      get { return itemCollection;}
      set { 
            itemCollection=value;
            OnPropertyChanged("ItemCollection");

            }
    }

    public ChartViewModel()
    {
       //Bind ItemCollection 
    }


}

Xaml:

<charting:Chart x:Name="MyChart"  Padding="10,10,10,10" DataContext={Binding ItemCollection}">
    <charting:Chart.Series>
        <charting:StackedColumnSeries>
            <charting:SeriesDefinition Title="Stan 1" ItemsSource="{Binding}" DependentValuePath="DependentValue1" IndependentValuePath="IndependentValue" />
            <charting:SeriesDefinition Title="Stan 2" ItemsSource="{Binding}" DependentValuePath="DependentValue2" IndependentValuePath="IndependentValue" />
        </charting:StackedColumnSeries>
    </charting:Chart.Series>
</charting:Chart>

Может это помочь.

0 голосов
/ 05 марта 2011

Надеюсь, я ответил на ваш вопрос там

В любом случае, я публикую вторую часть моего ответа здесь:

MainWindow.xaml

<charting:Chart x:Name="MyChart"  Padding="10,10,10,10">
    <charting:Chart.Series>
        <charting:StackedColumnSeries>
            <charting:SeriesDefinition Title="Stan 1" ItemsSource="{Binding FirstCollection}" DependentValuePath="DependentValue" IndependentValuePath="IndependentValue" />
            <charting:SeriesDefinition Title="Stan 2" ItemsSource="{Binding SecondCollection}" DependentValuePath="DependentValue" IndependentValuePath="IndependentValue" />
        </charting:StackedColumnSeries>
    </charting:Chart.Series>
</charting:Chart>

MainWindow.xaml.cs

public partial class MainPage : UserControl
{
    public MainPage()
    {
        InitializeComponent();
        this.MyChart.DataContext = new ChartModel
        {
            FirstCollection = Enumerable.Range(1, 10).Select(i => new SimpleDataValue { IndependentValue = "Czujnik " + i, DependentValue = 100 }).ToList(),
            SecondCollection = Enumerable.Range(1, 10).Select(i => new SimpleDataValue { IndependentValue = "" + i, DependentValue = 200 }).ToList()
        };

    }
}

public class SimpleDataValue
{
    public string IndependentValue { get; set; }
    public int DependentValue { get; set; }
}

public class ChartModel
{
    public List<SimpleDataValue> FirstCollection { get; set; }
    public List<SimpleDataValue> SecondCollection { get; set; }
}
...