Show / Hide Table of Contents

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 Source

HistogramPlot(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 Source

Bins

Gets the bins of histogram.

Declaration
public Dictionary<int, Bin> Bins { get; }
Property Value
Type Description
System.Collections.Generic.Dictionary<System.Int32, Bin>
| Improve this Doc View Source

BinWidth

Gets width of histogram bin.

Declaration
public double BinWidth { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

Name

Gets the name of the plot.

Declaration
public string Name { get; }
Property Value
Type Description
System.String
| Improve this Doc View Source

XMax

Gets the max value of x values.

Declaration
public double XMax { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

XMin

Gets the min value of x values.

Declaration
public double XMin { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

XUnit

Gets the histogram x-unit.

Declaration
public string XUnit { get; }
Property Value
Type Description
System.String
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX