IPlot.cs 734 B

123456789101112131415161718192021222324
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace OxyPlot.Avalonia
  5. {
  6. /// <summary>
  7. /// Represents a control that displays a <see cref="PlotModel" />.
  8. /// </summary>
  9. public interface IPlot
  10. {
  11. /// <summary>
  12. /// Signals that the appearance of an element has changed.
  13. /// </summary>
  14. /// <param name="element">The element whose appearance has changed.</param>
  15. void ElementAppearanceChanged(object element);
  16. /// <summary>
  17. /// Signals that the data of an element has changed.
  18. /// </summary>
  19. /// <param name="element">The element whose data has changed.</param>
  20. void ElementDataChanged(object element);
  21. }
  22. }