using System;
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.
///
float StrokeThickness { get; set; }
///
/// Gets or sets a value indicating whether to fill the series.
///
bool UseFill { get; }
///
/// Gets or sets a value indicating whether this series should be visible.
///
bool IsVisible { get; set; }
///
/// Gets the current value.
///
Object CurrentValue { get; set; }
}
}