Packages

final case class HistOptions(orientation: Orientation = VERTICAL, cumulative: Opt[Cumulative] = Blank, histnorm: Opt[HistNorm] = Blank, histfunc: Opt[HistFunction] = Blank, xbins: Opt[Xbins] = Blank, ybins: Opt[Ybins] = Blank) extends Component with Product with Serializable

This class sets the options for a histogram. Generally this will be manipulated by a component that sits higher up in the class hierarchy.

orientation

: Specifies whether the histogram is vertical or horizontal.

cumulative

: This takes in a Cumulative type which specifies how the histogram cumulative function works.

histnorm

: Specifies the type of normalization for the histogram series.

histfunc

: Specifies the binning function for the histogram series.

xbins

: An Xbin specified by the user.

ybins

: A Ybin specified by the user.

Linear Supertypes
Serializable, Product, Equals, Component, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HistOptions
  2. Serializable
  3. Product
  4. Equals
  5. Component
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HistOptions(orientation: Orientation = VERTICAL, cumulative: Opt[Cumulative] = Blank, histnorm: Opt[HistNorm] = Blank, histfunc: Opt[HistFunction] = Blank, xbins: Opt[Xbins] = Blank, ybins: Opt[Ybins] = Blank)

    orientation

    : Specifies whether the histogram is vertical or horizontal.

    cumulative

    : This takes in a Cumulative type which specifies how the histogram cumulative function works.

    histnorm

    : Specifies the type of normalization for the histogram series.

    histfunc

    : Specifies the binning function for the histogram series.

    xbins

    : An Xbin specified by the user.

    ybins

    : A Ybin specified by the user.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. val cumulative: Opt[Cumulative]
  7. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  8. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  9. val histfunc: Opt[HistFunction]
  10. val histnorm: Opt[HistNorm]
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. val orientation: Orientation
  16. def productElementNames: Iterator[String]
    Definition Classes
    Product
  17. def setCumulative(new_cumulative: Cumulative): HistOptions
  18. def setCumulative(enabled: Opt[Boolean] = Blank, direction: Opt[Direction] = Blank, currentbin: Opt[CurrentBin] = Blank): HistOptions
  19. def setHistFunc(new_histfunc: HistFunction): HistOptions
  20. def setHistNorm(new_histnorm: HistNorm): HistOptions
  21. def setOrientation(new_orientation: Orientation): HistOptions
  22. def setXBins(new_xbins: Xbins): HistOptions
  23. def setXbins(start: Opt[Double] = Blank, end: Opt[Double] = Blank, size: Opt[Double] = Blank): HistOptions
  24. def setYBins(new_ybins: Ybins): HistOptions
  25. def setYbins(start: Opt[Double] = Blank, end: Opt[Double] = Blank, size: Opt[Double] = Blank): HistOptions
  26. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. val xbins: Opt[Xbins]
  31. val ybins: Opt[Ybins]

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Component

Inherited from AnyRef

Inherited from Any

Ungrouped