aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphX/IGraphDataSeries.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphX/IGraphDataSeries.cs')
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphX/IGraphDataSeries.cs30
1 files changed, 30 insertions, 0 deletions
diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphX/IGraphDataSeries.cs b/Software/Visual_Studio/SideChains/RealTimeGraphX/IGraphDataSeries.cs
new file mode 100644
index 000000000..14a8a0a9f
--- /dev/null
+++ b/Software/Visual_Studio/SideChains/RealTimeGraphX/IGraphDataSeries.cs
@@ -0,0 +1,30 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace RealTimeGraphX
+{
+ /// <summary>
+ /// Represents a graph data series.
+ /// </summary>
+ /// <seealso cref="RealTimeGraphX.IGraphComponent" />
+ public interface IGraphDataSeries : IGraphComponent
+ {
+ /// <summary>
+ /// Gets or sets the series name.
+ /// </summary>
+ String Name { get; set; }
+
+ /// <summary>
+ /// Gets or sets the stroke thickness.
+ /// </summary>
+ double StrokeThickness { get; set; }
+
+ /// <summary>
+ /// Gets or sets a value indicating whether this series should be visible.
+ /// </summary>
+ bool IsVisible { get; set; }
+ }
+}