Class HistogramPlot
Data for histogram plot.
Inheritance
System.Object
HistogramPlot
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 HistogramPlot
Constructors
| Improve this Doc View SourceHistogramPlot(String, String, Double, Double, Double)
Initializes a new instance of the HistogramPlot class.
Declaration
public HistogramPlot(string name, string xUnit, double xMin, double xMax, double binWidth)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of plot. |
System.String | xUnit | Unit of x values. |
System.Double | xMin | Min value of x values. |
System.Double | xMax | Max value of x values. |
System.Double | binWidth | Width of one bin. |
Properties
| Improve this Doc View SourceBins
Gets the bins of histogram.
Declaration
public Dictionary<int, Bin> Bins { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.Dictionary<System.Int32, Bin> |
BinWidth
Gets width of histogram bin.
Declaration
public double BinWidth { get; }
Property Value
Type | Description |
---|---|
System.Double |
Name
Gets the name of the plot.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
XMax
Gets the max value of x values.
Declaration
public double XMax { get; }
Property Value
Type | Description |
---|---|
System.Double |
XMin
Gets the min value of x values.
Declaration
public double XMin { get; }
Property Value
Type | Description |
---|---|
System.Double |
XUnit
Gets the histogram x-unit.
Declaration
public string XUnit { get; }
Property Value
Type | Description |
---|---|
System.String |