// (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. namespace System.Windows.Controls.DataVisualization.Charting { /// /// Defines methods on classes that contain a global index. /// /// Preview public interface IRequireGlobalSeriesIndex { /// /// Occurs when a global series index changes. /// /// The global index that has changed. /// void GlobalSeriesIndexChanged(int? globalIndex); } }