The MSChart DataPointCollection.Clear() method is quite slow, taking about 5 seconds to delete 70k elements. It calls ClearItems(), which removes items from the *beginning* of the list until the list is empty. protected override void ClearItems(){ this.SuspendUpdates(); while (base.Count > 0) { this.RemoveItem(0); } this.ResumeUpdates();}
Visual Studio/Silverlight/Tooling version
What category (if any) best represents this feedback?
Steps to reproduce
Product Language
Operating System
Operating System Language
Actual results
Expected results
Please wait...