using System.Drawing; using System.Drawing.Drawing2D; namespace DelftTools.Controls.Swf.Charting.Series { public interface ILineChartSeries : IChartSeries { /// /// Width of the line /// int Width { get; set; } /// /// Dash style of the line /// DashStyle DashStyle { get; set; } /// /// Pointer color /// Color PointerColor { get; set; } /// /// Visibility of pointer /// bool PointerVisible { get; set; } /// /// Size of the line points /// int PointerSize { get; set; } /// /// Figure (style) to use for the points /// PointerStyles PointerStyle { get; set; } /// /// Type of interpolation to use (constant, linear or none) /// InterpolationType InterpolationType { get; set; } /// /// Show title of the series as label /// bool TitleLabelVisible { get; set; } /// /// Color of the line around the points /// Color PointerLineColor { get; set; } /// /// Show a line around the points /// bool PointerLineVisible { get; set; } } }