Class

com.highcharts.config

SeriesWaterfall

Related Doc: package config

Permalink

class SeriesWaterfall extends Object

Annotations
@RawJSType() @ScalaJSDefined()
Note

JavaScript name: series<waterfall>

Linear Supertypes
Object, Any, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SeriesWaterfall
  2. Object
  3. Any
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new SeriesWaterfall()

    Permalink

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. val allowPointSelect: Boolean

    Permalink

    Allow this series' points to be selected by clicking on the markers, bars or pie slices.

    Allow this series' points to be selected by clicking on the markers, bars or pie slices.

    Example:
    1. Line, column, pie

    Since

    1.2.0

  5. val animation: Boolean

    Permalink

    Enable or disable the initial animation when a series is displayed.

    Enable or disable the initial animation when a series is displayed. The animation can also be set as a configuration object. Please note that this option only applies to the initial animation of the series itself. For other animations, see chart.animation and the animation parameter under the API methods. The following properties are supported: <dl> <dt>duration</dt>

    The duration of the animation in milliseconds.
    <dt>easing</dt>
    A string reference to an easing function set on the Math object. See the easing demo.
    </dl>

    Due to poor performance, animation is disabled in old IE browsers for column charts and polar charts.

  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. val borderColor: String

    Permalink

    The color of the border of each waterfall column.

    The color of the border of each waterfall column.

    Since

    3.0

  8. val borderRadius: Double

    Permalink

    The corner radius of the border surrounding each column or bar.

    The corner radius of the border surrounding each column or bar.

    Example:
    1. Rounded columns

  9. val borderWidth: Double

    Permalink

    The width of the border surrounding each column or bar.

    The width of the border surrounding each column or bar.

  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. val color: String

    Permalink

    The main color or the series.

    The main color or the series. In line type series it applies to the line and the point markers unless otherwise specified. In bar type series it applies to the bars unless a color is specified per point. The default value is pulled from the options.colors array.

  12. val colorByPoint: Boolean

    Permalink

    When using automatic point colors pulled from the options.colors collection, this option determines whether the chart should receive one color per series or one color per point.

    When using automatic point colors pulled from the options.colors collection, this option determines whether the chart should receive one color per series or one color per point.

    Since

    2.0

  13. val colors: Array[String]

    Permalink

    A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.

    A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.

    Since

    3.0

  14. val cursor: String

    Permalink

    You can set the cursor to "pointer" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.

    You can set the cursor to "pointer" if you have click events attached to the series, to signal to the user that the points and lines can be clicked.

    Example:
    1. Pointer cursor on line graph, on columns, on scatter markers

  15. val dashStyle: String

    Permalink

    A name for the dash style to use for the line connecting the columns of the waterfall series.

    A name for the dash style to use for the line connecting the columns of the waterfall series. Possible values:

    • Solid
    • ShortDash
    • ShortDot
    • ShortDashDot
    • ShortDashDotDot
    • Dot
    • Dash
    • LongDash
    • DashDot
    • LongDashDot
    • LongDashDotDot .
    Since

    3.0

  16. val data: Any

    Permalink

    An array of data points for the series.

    An array of data points for the series. For the waterfall series type, points can be given in the following ways:

    • An array of numerical values. In this case, the numerical values will be interpreted as y options. The x values will be automatically calculated, either starting at 0 and incremented by 1, or from pointStart and pointInterval given in the series options. If the axis has categories, these will be used. Example:
      data: [0, 5, 3, 5]
      

    -

    An array of arrays with 2 values. In this case, the values correspond to x,y. If the first value is a string, it is applied as the name of the point, and the x value is inferred.

    data: [
        [0, 7],
        [1, 8],
        [2, 3]
    ]
    

    -

    An array of objects with named values. The objects are point configuration objects as seen below. If the total number of data points exceeds the series' turboThreshold, this option is not available.

    data: [{
        x: 1,
        y: 8,
        name: "Point2",
        color: "#00FF00"
    }, {
        x: 1,
        y: 8,
        name: "Point1",
        color: "#FF00FF"
    }]
    

    Example:
    1. The demos use a line series, but the principle is the same for all types.

  17. val dataLabels: SeriesWaterfallDataLabels

    Permalink
  18. val depth: Double

    Permalink

    Depth of the columns in a 3D column chart.

    Depth of the columns in a 3D column chart. Requires highcharts-3d.js.

    Since

    4.0

  19. val edgeColor: String

    Permalink

    3D columns only.

    3D columns only. The color of the edges. Similar to borderColor, except it defaults to the same color as the column.

  20. val edgeWidth: Double

    Permalink

    3D columns only.

    3D columns only. The width of the colored edges.

  21. val enableMouseTracking: Boolean

    Permalink

    Enable or disable the mouse tracking for a specific series.

    Enable or disable the mouse tracking for a specific series. This includes point tooltips and click events on graphs and points. For large datasets it improves performance.

  22. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  23. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  24. val events: SeriesWaterfallEvents

    Permalink
  25. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  26. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  27. val getExtremesFromAll: Boolean

    Permalink

    Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis.

    Whether to use the Y extremes of the total chart width or only the zoomed area when zooming in on parts of the X axis. By default, the Y axis adjusts to the min and max of the visible data. Cartesian series only.

    Since

    4.1.6

  28. val groupPadding: Double

    Permalink

    Padding between each value groups, in x axis units.

    Padding between each value groups, in x axis units.

  29. val groupZPadding: Double

    Permalink

    The spacing between columns on the Z Axis in a 3D chart.

    The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js.

    Since

    4.0

  30. val grouping: Boolean

    Permalink

    Whether to group non-stacked columns or to let them render independent of each other.

    Whether to group non-stacked columns or to let them render independent of each other. Non-grouped columns will be laid out individually and overlap each other.

    Since

    2.3.0

  31. def hasOwnProperty(v: String): Boolean

    Permalink
    Definition Classes
    Object
  32. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  33. val id: String

    Permalink

    An id for the series.

    An id for the series. This can be used after render time to get a pointer to the series object through chart.get().

    Since

    1.2.0

  34. val index: Double

    Permalink

    The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.

    The index of the series in the chart, affecting the internal index in the chart.series array, the visible Z index as well as the order in the legend.

    Since

    2.3.0

  35. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  36. def isPrototypeOf(v: Object): Boolean

    Permalink
    Definition Classes
    Object
  37. val keys: Array[String]

    Permalink

    An array specifying which option maps to which key in the data point array.

    An array specifying which option maps to which key in the data point array. This makes it convenient to work with unstructured data arrays from different sources.

    Since

    4.1.6

  38. val legendIndex: Double

    Permalink

    The sequential index of the series in the legend.

    The sequential index of the series in the legend.

    Try it: Legend in opposite order .

  39. val lineColor: String

    Permalink

    The color of the line that connects columns in a waterfall series.

    The color of the line that connects columns in a waterfall series.

    Since

    3.0

  40. val linkedTo: String

    Permalink

    The id of another series to link to.

    The id of another series to link to. Additionally, the value can be ":previous" to link to the previous series. When two series are linked, only the first one appears in the legend. Toggling the visibility of this also toggles the linked series.

    Example:
    1. Linked series

    Since

    3.0

  41. val maxPointWidth: Double

    Permalink

    The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart.

    The maximum allowed pixel width for a column, translated to the height of a bar in a bar chart. This prevents the columns from becoming too wide when there is a small number of points in the chart.

    Example:
    1. Limited to 50

    Since

    4.1.8

  42. val minPointLength: Double

    Permalink

    The minimal height for a column or width for a bar.

    The minimal height for a column or width for a bar. By default, 0 values are not shown. To visualize a 0 (or close to zero) point, set the minimal point length to a pixel value like 3. In stacked column charts, minPointLength might not be respected for tightly packed values.

  43. val name: String

    Permalink

    The name of the series as shown in the legend, tooltip etc.

    The name of the series as shown in the legend, tooltip etc.

    Example:
    1. Series name

  44. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  45. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  46. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  47. val point: SeriesWaterfallPoint

    Permalink

    Properties for each single point

  48. val pointInterval: Double

    Permalink

    If no x values are given for the points in a series, pointInterval defines the interval of the x values.

    If no x values are given for the points in a series, pointInterval defines the interval of the x values. For example, if a series contains one value every decade starting from year 0, set pointInterval to 10.

    Since Highcharts 4.1, it can be combined with pointIntervalUnit to draw irregular intervals.

    Example:
    1. Datetime X axis

  49. val pointIntervalUnit: String

    Permalink

    On datetime series, this allows for setting the pointInterval to the two irregular time units, month and year.

    On datetime series, this allows for setting the pointInterval to the two irregular time units, month and year. Combine it with pointInterval to draw quarters, 6 months, 10 years etc.

    Since

    4.1.0

  50. val pointPadding: Double

    Permalink

    Padding between each column or bar, in x axis units.

    Padding between each column or bar, in x axis units.

  51. val pointPlacement: Any

    Permalink

    Possible values: null, "on", "between".

    Possible values: null, "on", "between".

    In a column chart, when pointPlacement is "on", the point will not create any padding of the X axis. In a polar column chart this means that the first column points directly north. If the pointPlacement is "between", the columns will be laid out between ticks. This is useful for example for visualising an amount between two points in time or in a certain sector of a polar chart.

    Since Highcharts 3.0.2, the point placement can also be numeric, where 0 is on the axis value, -0.5 is between this value and the previous, and 0.5 is between this value and the next. Unlike the textual options, numeric point placement options won't affect axis padding.

    Note that pointPlacement needs a pointRange to work. For column series this is computed, but for line-type series it needs to be set.

    Defaults to null in cartesian charts, "between" in polar charts.

    Since

    2.3.0

  52. val pointRange: Double

    Permalink

    The X axis range that each point is valid for.

    The X axis range that each point is valid for. This determines the width of the column. On a categorized axis, the range will be 1 by default (one category unit). On linear and datetime axes, the range will be computed as the distance between the two closest data points.

    Since

    2.3

  53. val pointStart: Double

    Permalink

    If no x values are given for the points in a series, pointStart defines on what value to start.

    If no x values are given for the points in a series, pointStart defines on what value to start. For example, if a series contains one yearly value starting from 1945, set pointStart to 1945.

    Example:
    1. Linear, datetime X axis

  54. val pointWidth: Double

    Permalink

    A pixel value specifying a fixed width for each column or bar.

    A pixel value specifying a fixed width for each column or bar. When null, the width is calculated from the pointPadding and groupPadding.

    Since

    1.2.5

  55. def propertyIsEnumerable(v: String): Boolean

    Permalink
    Definition Classes
    Object
  56. val selected: Boolean

    Permalink

    Whether to select the series initially.

    Whether to select the series initially. If showCheckbox is true, the checkbox next to the series name will be checked for a selected series.

    Since

    1.2.0

  57. val shadow: Any

    Permalink

    Whether to apply a drop shadow to the graph line.

    Whether to apply a drop shadow to the graph line. Since 2.3 the shadow can be an object configuration containing color, offsetX, offsetY, opacity and width.

    Example:
    1. Shadow enabled

  58. val showCheckbox: Boolean

    Permalink

    If true, a checkbox is displayed next to the legend item to allow selecting the series.

    If true, a checkbox is displayed next to the legend item to allow selecting the series. The state of the checkbox is determined by the selected option.

    Example:
    1. Show select box

    Since

    1.2.0

  59. val showInLegend: Boolean

    Permalink

    Whether to display this particular series or series type in the legend.

    Whether to display this particular series or series type in the legend. The default value is true for standalone series, false for linked series.

  60. val softThreshold: Boolean

    Permalink

    When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

    When this is true, the series will not cause the Y axis to cross the zero plane (or threshold option) unless the data actually crosses the plane.

    For example, if softThreshold is false, a series of 0, 1, 2, 3 will make the Y axis show negative values according to the minPadding option. If softThreshold is true, the Y axis starts at 0.

    Since

    4.1.9

  61. val stack: String

    Permalink

    This option allows grouping series in a stacked chart.

    This option allows grouping series in a stacked chart. The stack option can be a string or a number or anything else, as long as the grouped series' stack options match each other.

    Since

    2.1

  62. val states: PlotOptionsSeriesStates

    Permalink

    A wrapper object for all the series options in specific states.

  63. val stickyTracking: Boolean

    Permalink

    Sticky tracking of mouse events.

    Sticky tracking of mouse events. When true, the mouseOut event on a series isn't triggered until the mouse moves over another series, or out of the plot area. When false, the mouseOut event on a series is triggered when the mouse leaves the area around the series' graph or markers. This also implies the tooltip. When stickyTracking is false and tooltip.shared is false, the tooltip will be hidden when moving the mouse between series. Defaults to true for line and area type series, but to false for columns, pies etc.

    Since

    2.0

  64. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  65. val threshold: Double

    Permalink

    The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold.

    The Y axis value to serve as the base for the columns, for distinguishing between values above and below a threshold. If null, the columns extend from the padding Y axis minimum.

    Since

    2.0

  66. def toLocaleString(): String

    Permalink
    Definition Classes
    Object
  67. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  68. val tooltip: Object

    Permalink

    A configuration object for the tooltip rendering of each single series.

    A configuration object for the tooltip rendering of each single series. Properties are inherited from tooltip, but only the following properties can be defined on a series level.

    Since

    2.3

  69. val type: String

    Permalink

    The type of series.

    The type of series. Can be one of area, areaspline, bar, column, line, pie, scatter or spline. From version 2.3, arearange, areasplinerange and columnrange are supported with the highcharts-more.js component.

  70. val upColor: String

    Permalink

    The color used specifically for positive point columns.

    The color used specifically for positive point columns. When not specified, the general series color is used.

    Example:
    1. Waterfall

  71. def valueOf(): Any

    Permalink
    Definition Classes
    Object
  72. val visible: Boolean

    Permalink

    Set the initial visibility of the series.

    Set the initial visibility of the series.

  73. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  74. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  75. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  76. val xAxis: Any

    Permalink

    When using dual or multiple x axes, this number defines which xAxis the particular series is connected to.

    When using dual or multiple x axes, this number defines which xAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the xAxis array, with 0 being the first.

  77. val yAxis: Any

    Permalink

    When using dual or multiple y axes, this number defines which yAxis the particular series is connected to.

    When using dual or multiple y axes, this number defines which yAxis the particular series is connected to. It refers to either the axis id or the index of the axis in the yAxis array, with 0 being the first.

  78. val zIndex: Double

    Permalink

    Define the visual z index of the series.

  79. val zoneAxis: String

    Permalink

    Defines the Axis on which the zones are applied.

    Defines the Axis on which the zones are applied.

    Since

    4.1.0

  80. val zones: Array[SeriesWaterfallZones]

    Permalink

    An array defining zones within a series.

    An array defining zones within a series. Zones can be applied to the X axis, Y axis or Z axis for bubbles, according to the zoneAxis option.

    Example:
    1. Color zones

    Since

    4.1.0

Inherited from Object

Inherited from Any

Inherited from AnyRef

Inherited from Any

Ungrouped