using System.Drawing;
namespace DelftTools.Controls.Swf.Charting.Series
{
public interface IPointChartSeries : IChartSeries
{
///
/// Size of the points
///
int Size { get; set; }
///
/// Figure (style) to use for the points
///
PointerStyles Style { get; set; }
///
/// Show a line around the points
///
bool LineVisible { get; set; }
///
/// Color of the line around the points
///
Color LineColor { get; set; }
}
}