Class Series
Data series.
Inheritance
System.Object
Series
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: SpiceSharpParser.ModelReaders.Netlist.Spice.Readers.Controls.Plots
Assembly: SpiceSharpParser.dll
Syntax
public class Series
Constructors
| Improve this Doc View SourceSeries(String)
Initializes a new instance of the Series class.
Declaration
public Series(string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | Name of the series. |
Properties
| Improve this Doc View SourceName
Gets the name of series.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Points
Gets the series points.
Declaration
public List<Point> Points { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<Point> |
XUnit
Gets or sets the x-unit.
Declaration
public string XUnit { get; set; }
Property Value
Type | Description |
---|---|
System.String |
YUnit
Gets or sets the y-unit.
Declaration
public string YUnit { get; set; }
Property Value
Type | Description |
---|---|
System.String |