Click here to Skip to main content
15,893,814 members
Articles / Desktop Programming / WPF

How to create stock charts using the Silverlight Toolkit

Rate me:
Please Sign up or sign in to vote.
4.70/5 (15 votes)
16 Feb 2009CPOL2 min read 142.2K   2.7K   65  
An article on how to create a Candlestick stock chart using the Silverlight Toolkit.
// (c) Copyright Microsoft Corporation.
// This source is subject to the Microsoft Public License (Ms-PL).
// Please see http://go.microsoft.com/fwlink/?LinkID=131993 for details.
// All other rights reserved.

using System.Collections;
using System.Collections.Generic;
using System.Collections.Specialized;
using System.Linq;
using System.Windows;
using System.Windows.Controls;

namespace Microsoft.Windows.Controls.DataVisualization
{
    /// <summary>
    /// An object that synchronizes changes in an observable collection to 
    /// a list.
    /// </summary>
    /// <typeparam name="T">The type of the objects in the collection.
    /// </typeparam>
    internal class ObservableCollectionListAdapter<T>
        where T : class
    {
        /// <summary>
        /// The collection to synchronize with a list.
        /// </summary>
        private IEnumerable _collection;

        /// <summary>
        /// Gets or sets the collection to synchronize with a list.
        /// </summary>
        public IEnumerable Collection
        {
            get
            {
                return _collection;
            }
            set
            {
                IEnumerable oldValue = _collection;
                INotifyCollectionChanged oldObservableCollection = oldValue as INotifyCollectionChanged;
                INotifyCollectionChanged newObservableCollection = value as INotifyCollectionChanged;
                _collection = value;

                if (oldObservableCollection != null)
                {
                    oldObservableCollection.CollectionChanged -= OnCollectionChanged;
                }

                if (value == null && TargetList != null)
                {
                    TargetList.Clear();
                }
                if (newObservableCollection != null)
                {
                    newObservableCollection.CollectionChanged += OnCollectionChanged;
                }
            }
        }

        /// <summary>
        /// Gets or sets the panel to synchronize with the collection.
        /// </summary>
        public IList TargetList { get; set; }

        /// <summary>
        /// Method that synchronizes the panel's child collection with the 
        /// contents of the observable collection when it changes.
        /// </summary>
        /// <param name="sender">The source of the event.</param>
        /// <param name="e">Information about the event.</param>
        public void OnCollectionChanged(object sender, NotifyCollectionChangedEventArgs e)
        {
            if (TargetList != null)
            {
                if (e.Action == NotifyCollectionChangedAction.Reset)
                {
                    TargetList.Clear();
                }
                else if (e.Action == NotifyCollectionChangedAction.Replace)
                {
                    for (int cnt = 0; cnt < e.OldItems.Count; cnt++)
                    {
                        T oldItem = e.OldItems[cnt] as T;
                        T newItem = e.NewItems[cnt] as T;

                        int index = TargetList.IndexOf(oldItem);

                        if (index != -1)
                        {
                            TargetList[index] = newItem;
                        }
                        else
                        {
                            TargetList.Remove(oldItem);
                            TargetList.Add(newItem);
                        }
                    }
                }
                else
                {
                    if (e.Action == NotifyCollectionChangedAction.Remove && e.OldItems != null)
                    {
                        foreach (T element in e.OldItems)
                        {
                            TargetList.Remove(element);
                        }
                    }
                    else if (e.Action == NotifyCollectionChangedAction.Add && e.NewItems != null)
                    {
                        e.NewItems
                            .OfType<T>()
                            .ForEachWithIndex((item, index) =>
                                {
                                    TargetList.Insert(e.NewStartingIndex + index, item);
                                });
                    }
                }
            }
        }

        /// <summary>
        /// A method that populates a panel with the items in the collection.
        /// </summary>
        public void Populate()
        {
            if (TargetList != null)
            {
                if (Collection != null)
                {
                    foreach (T item in Collection)
                    {
                        TargetList.Add(item);
                    }
                }
                else
                {
                    TargetList.Clear();
                }
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions