using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace RealTimeGraphX { /// /// Represents a graph data series. /// /// public interface IGraphDataSeries : IGraphComponent { /// /// Gets or sets the series name. /// String Name { get; set; } /// /// Gets or sets the stroke thickness. /// double StrokeThickness { get; set; } /// /// Gets or sets a value indicating whether this series should be visible. /// bool IsVisible { get; set; } } }