final case class Cumulative(enabled: Opt[Boolean] = Blank, direction: Opt[Direction] = Blank, currentbin: Opt[CurrentBin] = Blank) extends Component with Product with Serializable
This is an option for a histogram chart. If enabled == true, it shows cumulative distribution by summing the bin values.
- enabled
: A boolean that specifies whether the cumulative distribution is enabled.
- direction
: If 'increasing' will sum all prior bins. if 'decreasing' will sum the later bins.
- currentbin
: only applies if enabled == true. Sets whether the bin is included, excluded, or has half of its value in the current cumulative value.
- Alphabetic
- By Inheritance
- Cumulative
- Serializable
- Product
- Equals
- Component
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Cumulative(enabled: Opt[Boolean] = Blank, direction: Opt[Direction] = Blank, currentbin: Opt[CurrentBin] = Blank)
- enabled
: A boolean that specifies whether the cumulative distribution is enabled.
- direction
: If 'increasing' will sum all prior bins. if 'decreasing' will sum the later bins.
- currentbin
: only applies if enabled == true. Sets whether the bin is included, excluded, or has half of its value in the current cumulative value.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val currentbin: Opt[CurrentBin]
- val direction: Opt[Direction]
- val enabled: Opt[Boolean]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- def setCurrentbin(new_currentbin: CurrentBin): Cumulative
- def setDirection(new_direction: Direction): Cumulative
- def setEnabled(new_enabled: Boolean): Cumulative
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
This is the API documentation for Picta, a graphing library for Scala.
More detailed documentation about using the library can be found at https://acse-fk4517.github.io/picta-docs/.
Click on the following link to get started with the API docs: https://acse-fk4517.github.io/picta-docs/pages/api/org/carbonateresearch/picta/index.html