using System; using System.Collections.Generic; using System.Text; namespace OxyPlot.Avalonia { /// /// Represents a control that displays a . /// public interface IPlot { /// /// Signals that the appearance of an element has changed. /// /// The element whose appearance has changed. void ElementAppearanceChanged(object element); /// /// Signals that the data of an element has changed. /// /// The element whose data has changed. void ElementDataChanged(object element); } }