-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathVisualizerDataPoint.cs
More file actions
36 lines (32 loc) · 980 Bytes
/
Copy pathVisualizerDataPoint.cs
File metadata and controls
36 lines (32 loc) · 980 Bytes
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
using Syncfusion.Windows.Chart;
namespace ArrayVisualizerExt.ChartData
{
internal class VisualizerDataPoint : IChartDataPoint
{
public VisualizerDataPoint(double x, double y)
{
X = x;
Y = y;
Values = new[] {y};
}
public double X { get; set; }
public double Y { get; set; }
public double[] Values { get; set; }
public bool IsEmpty { get; set; }
public bool EmptyPoint { get; set; }
public string Label { get; set; }
public bool Visible { get; set; }
public object StringItem { get; set; }
public ChartSegment ParentSegment { get; set; }
public object Item { get; set; }
public object Tag { get; set; }
public object Clone()
{
VisualizerDataPoint customPoint = new VisualizerDataPoint(X, Y);
return customPoint;
}
public void Dispose()
{
}
}
}