Class Series
- Namespace
- PolarChart
- Assembly
- PolarChart.dll
This class contains the details of one series of data/captions.
public class Series : IDisposable
- Inheritance
-
Series
- Implements
- Inherited Members
- Extension Methods
Properties
BackColor
Gets/set the background color color of the series as Windows color.
public int BackColor { get; set; }
Property Value
BlibType
Gets/sets the type of blib. Use one of: 0: Rectangle, 1: Rotated Rectangle, 2: Oval, 3: Triangle Up, 4: Triangle Down, 5: Asterix (*), 6: X, 7: +
public int BlibType { get; set; }
Property Value
BoxColor
Gets/sets the color of the box as Windows color.
public int BoxColor { get; set; }
Property Value
Caption
Gets/sets the caption of the series.
public string Caption { get; set; }
Property Value
Dimensions
Returns the number of dimensions of the series
public int Dimensions { get; }
Property Value
Elements
Returns the elements in the series.
public Collection<Element> Elements { get; }
Property Value
FillColor
Gets/set the fill color of the series as Windows color.
public int FillColor { get; set; }
Property Value
FillStyle
Gets/set the fill style (-2: no fill; -1: solid fill, 0-52 using HatchStyle)
public int FillStyle { get; set; }
Property Value
Font
Gets/sets the font to use for the series.
public PolarFont Font { get; }
Property Value
Height
Gets/sets the height of the series.
public int Height { get; set; }
Property Value
LabelPosition
Gets/sets the label position (0:inside; 1;at value (above))
public int LabelPosition { get; set; }
Property Value
LabelType
Gets/sets the label type (0:None; 1:Value; 2:Caption; 3:ValueAndCaption)
public int LabelType { get; set; }
Property Value
LineColor
Gets/sets the color of the line as Windows color.
public int LineColor { get; set; }
Property Value
LineStyle
Gets/sets the line-style
public int LineStyle { get; set; }
Property Value
LineWidth
Gets/sets the width of the line in pixels.
public int LineWidth { get; set; }
Property Value
Name
Returns the name of the series.
public string Name { get; }
Property Value
SeriesSubType
Gets/sets the series sub-types. Use one of: 'Line', 'Blips', 'LineAndBlips'
public string SeriesSubType { get; set; }
Property Value
SeriesType
Gets/sets the type of series. Only applicable for chart or type 'ColumnsAndLines': can no switch to 'Columns' or 'Lines'.
public string SeriesType { get; set; }
Property Value
ShadowColor
Gets/sets the color of the shadow as Windows color.
public int ShadowColor { get; set; }
Property Value
ShadowX
Gets/sets the x-offset for the shadow in pixels.
public int ShadowX { get; set; }
Property Value
ShadowY
Gets/sets the y-offset for the shadow in pixels.
public int ShadowY { get; set; }
Property Value
SmoothingFactor
Gets/sets smoothing for lines. 0-3: 0:no smoothing (angles), 3: max smoothing (curved).
public int SmoothingFactor { get; set; }
Property Value
Width
Gets/sets the width of the series (bars)
public int Width { get; set; }
Property Value
Methods
Add2Dvalue(double, double, string)
Adds a value to a 2 dimensional series (x-y)
public void Add2Dvalue(double pXvalue, double pYvalue, string pCaption = "")
Parameters
Exceptions
AddCaption(string)
Adds a caption to a captions seried (Dimensions = 0)
public void AddCaption(string pCaption)
Parameters
pCaption
stringThe caption to add
Exceptions
AddEmptyElement(bool)
Adds an empty element to the series. For example for a month no data is gathered for.
public void AddEmptyElement(bool pContinueLine = false)
Parameters
pContinueLine
boolIf true, the line between the poins before and after this point is continued, else it will have a gap.
AddValue(double, string)
Adds a value to the series (1 dimensional).
public void AddValue(double pValue, string pCaption = "")
Parameters
Exceptions
Dispose()
public void Dispose()
~Series()
protected ~Series()