forked from oxyplot/oxyplot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIPlotView.cs
More file actions
45 lines (40 loc) · 1.47 KB
/
IPlotView.cs
File metadata and controls
45 lines (40 loc) · 1.47 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="IPlotView.cs" company="OxyPlot">
// Copyright (c) 2014 OxyPlot contributors
// </copyright>
// <summary>
// Specifies functionality for the plot views.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace OxyPlot
{
/// <summary>
/// Specifies functionality for the plot views.
/// </summary>
public interface IPlotView : IView
{
/// <summary>
/// Gets the actual <see cref="PlotModel" /> of the control.
/// </summary>
new PlotModel ActualModel { get; }
/// <summary>
/// Hides the tracker.
/// </summary>
void HideTracker();
/// <summary>
/// Invalidates the plot (not blocking the UI thread)
/// </summary>
/// <param name="updateData">if set to <c>true</c>, all data bindings will be updated.</param>
void InvalidatePlot(bool updateData = true);
/// <summary>
/// Shows the tracker.
/// </summary>
/// <param name="trackerHitResult">The tracker data.</param>
void ShowTracker(TrackerHitResult trackerHitResult);
/// <summary>
/// Stores text on the clipboard.
/// </summary>
/// <param name="text">The text.</param>
void SetClipboardText(string text);
}
}