using System.Collections.Generic; using LiveCharts.Helpers; namespace LiveCharts.Wpf { /// /// /// public class AxisWindowCollection : NoisyCollection { public AxisWindowCollection() { NoisyCollectionChanged += OnNoisyCollectionChanged; } private void OnNoisyCollectionChanged(IEnumerable oldItems, IEnumerable newItems) { } } }