![JAR search and dependency download from the Maven repository](/logo.png)
com.github.highcharts4gwt.model.highcharts.option.api.SeriesColumn Maven / Gradle / Ivy
Show all versions of highcharts Show documentation
package com.github.highcharts4gwt.model.highcharts.option.api;
import com.github.highcharts4gwt.model.array.api.Array;
import com.github.highcharts4gwt.model.array.api.ArrayNumber;
import com.github.highcharts4gwt.model.array.api.ArrayString;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.AfterAnimateHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.CheckboxClickHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.ClickHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.Data;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.DataLabels;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.HideHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.LegendItemClickHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.MouseOutHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.MouseOverHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.Point;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.ShowHandler;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.States;
import com.github.highcharts4gwt.model.highcharts.option.api.seriescolumn.Tooltip;
/**
* A column
series. If the type option is not specified, it is inherited from chart.type.
*
* For options that apply to multiple series, it is recommended to add them to the pointOptions.series options structure. To apply to all series of this specific type, apply it to plotOptions.column.
*
*/
public interface SeriesColumn {
/**
* Allow this series' points to be selected by clicking on the markers, bars or pie slices.
*
*/
boolean allowPointSelect();
/**
* Allow this series' points to be selected by clicking on the markers, bars or pie slices.
*
*/
SeriesColumn allowPointSelect(boolean allowPointSelect);
/**
* 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:
*
* - duration
* - The duration of the animation in milliseconds.
* - easing
* - When using jQuery as the general framework, the easing can be set to
linear
or swing
. More easing functions are available with the use of jQuery plug-ins, most notably the jQuery UI suite. See the jQuery docs. When using MooTools as the general framework, use the property name transition
instead of easing
.
*
*
* Due to poor performance, animation is disabled in old IE browsers for column charts and polar charts.
*
*/
boolean animation();
/**
* 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:
*
* - duration
* - The duration of the animation in milliseconds.
* - easing
* - When using jQuery as the general framework, the easing can be set to
linear
or swing
. More easing functions are available with the use of jQuery plug-ins, most notably the jQuery UI suite. See the jQuery docs. When using MooTools as the general framework, use the property name transition
instead of easing
.
*
*
* Due to poor performance, animation is disabled in old IE browsers for column charts and polar charts.
*
*/
SeriesColumn animation(boolean animation);
/**
* The color of the border surrounding each column or bar.
*
*/
String borderColor();
/**
* The color of the border surrounding each column or bar.
*
*/
SeriesColumn borderColor(String borderColor);
/**
* The corner radius of the border surrounding each column or bar.
*
*/
double borderRadius();
/**
* The corner radius of the border surrounding each column or bar.
*
*/
SeriesColumn borderRadius(double borderRadius);
/**
* The width of the border surrounding each column or bar.
*
*/
double borderWidth();
/**
* The width of the border surrounding each column or bar.
*
*/
SeriesColumn borderWidth(double borderWidth);
/**
* 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.
*
*/
String color();
/**
* 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.
*
*/
SeriesColumn color(String color);
/**
* 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.
*
*/
boolean colorByPoint();
/**
* 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.
*
*/
SeriesColumn colorByPoint(boolean colorByPoint);
/**
* A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.
*
*/
ArrayString colors();
/**
* A series specific or series type specific color set to apply instead of the global colors when colorByPoint is true.
*
*/
SeriesColumn colors(ArrayString colors);
/**
* When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. .
*
*/
double cropThreshold();
/**
* When the series contains less points than the crop threshold, all points are drawn, event if the points fall outside the visible plot area at the current zoom. The advantage of drawing all points (including markers and columns), is that animation is performed on updates. On the other hand, when the series contains more points than the crop threshold, the series data is cropped to only contain points that fall within the plot area. The advantage of cropping away invisible points is to increase performance on large series. .
*
*/
SeriesColumn cropThreshold(double cropThreshold);
/**
* 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.
*
*/
String cursor();
/**
* 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.
*
*/
SeriesColumn cursor(String cursor);
/**
* An array of data points for the series. For the column
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, 6],
* [1, 2],
* [2, 6]
* ]
*
*
* 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: 5,
* name: "Point2",
* color: "#00FF00"
* }, {
* x: 1,
* y: 9,
* name: "Point1",
* color: "#FF00FF"
* }]
*
*
*/
Array dataAsArrayObject();
/**
* An array of data points for the series. For the column
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, 6],
* [1, 2],
* [2, 6]
* ]
*
*
* 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: 5,
* name: "Point2",
* color: "#00FF00"
* }, {
* x: 1,
* y: 9,
* name: "Point1",
* color: "#FF00FF"
* }]
*
*
*/
SeriesColumn dataAsArrayObject(Array dataAsArrayObject);
/**
* An array of data points for the series. For the column
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, 6],
* [1, 2],
* [2, 6]
* ]
*
*
* 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: 5,
* name: "Point2",
* color: "#00FF00"
* }, {
* x: 1,
* y: 9,
* name: "Point1",
* color: "#FF00FF"
* }]
*
*
*/
ArrayNumber dataAsArrayNumber();
/**
* An array of data points for the series. For the column
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, 6],
* [1, 2],
* [2, 6]
* ]
*
*
* 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: 5,
* name: "Point2",
* color: "#00FF00"
* }, {
* x: 1,
* y: 9,
* name: "Point1",
* color: "#FF00FF"
* }]
*
*
*/
SeriesColumn dataAsArrayNumber(ArrayNumber dataAsArrayNumber);
/**
*
*/
DataLabels dataLabels();
/**
*
*/
SeriesColumn dataLabels(DataLabels dataLabels);
/**
* Depth of the columns in a 3D column chart. Requires highcharts-3d.js
.
*
*/
double depth();
/**
* Depth of the columns in a 3D column chart. Requires highcharts-3d.js
.
*
*/
SeriesColumn depth(double depth);
/**
* 3D columns only. The color of the edges. Similar to borderColor
, except it defaults to the same color as the column.
*
*/
String edgeColor();
/**
* 3D columns only. The color of the edges. Similar to borderColor
, except it defaults to the same color as the column.
*
*/
SeriesColumn edgeColor(String edgeColor);
/**
* 3D columns only. The width of the colored edges.
*
*/
double edgeWidth();
/**
* 3D columns only. The width of the colored edges.
*
*/
SeriesColumn edgeWidth(double edgeWidth);
/**
* 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.
*
*/
boolean enableMouseTracking();
/**
* 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.
*
*/
SeriesColumn enableMouseTracking(boolean enableMouseTracking);
void addAfterAnimateHandler(AfterAnimateHandler afterAnimateHandler);
void addCheckboxClickHandler(CheckboxClickHandler checkboxClickHandler);
void addClickHandler(ClickHandler clickHandler);
void addHideHandler(HideHandler hideHandler);
void addLegendItemClickHandler(LegendItemClickHandler legendItemClickHandler);
void addMouseOutHandler(MouseOutHandler mouseOutHandler);
void addMouseOverHandler(MouseOverHandler mouseOverHandler);
void addShowHandler(ShowHandler showHandler);
/**
* Padding between each value groups, in x axis units.
*
*/
double groupPadding();
/**
* Padding between each value groups, in x axis units.
*
*/
SeriesColumn groupPadding(double groupPadding);
/**
* The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js
.
*
*/
double groupZPadding();
/**
* The spacing between columns on the Z Axis in a 3D chart. Requires highcharts-3d.js
.
*
*/
SeriesColumn groupZPadding(double groupZPadding);
/**
* 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.
*
*/
boolean grouping();
/**
* 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.
*
*/
SeriesColumn grouping(boolean grouping);
/**
* An id for the series. This can be used after render time to get a pointer to the series object through chart.get()
.
*
*/
String id();
/**
* An id for the series. This can be used after render time to get a pointer to the series object through chart.get()
.
*
*/
SeriesColumn id(String id);
/**
* 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.
*
*/
double index();
/**
* 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.
*
*/
SeriesColumn index(double index);
/**
* A custom mapping of data point array positions to respective object properties. For example, is the first key is name
, the first item in a series.data array is interpreted as point.name.
*
*/
ArrayString keys();
/**
* A custom mapping of data point array positions to respective object properties. For example, is the first key is name
, the first item in a series.data array is interpreted as point.name.
*
*/
SeriesColumn keys(ArrayString keys);
/**
* The sequential index of the series in the legend. Try it: Legend in opposite order .
*
*/
double legendIndex();
/**
* The sequential index of the series in the legend. Try it: Legend in opposite order .
*
*/
SeriesColumn legendIndex(double legendIndex);
/**
* 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.
*
*/
String linkedTo();
/**
* 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.
*
*/
SeriesColumn linkedTo(String linkedTo);
/**
* 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.
*
*/
double minPointLength();
/**
* 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.
*
*/
SeriesColumn minPointLength(double minPointLength);
/**
* The name of the series as shown in the legend, tooltip etc.
*
*/
String name();
/**
* The name of the series as shown in the legend, tooltip etc.
*
*/
SeriesColumn name(String name);
/**
* The color for the parts of the graph or points that are below the threshold.
*
*/
String negativeColor();
/**
* The color for the parts of the graph or points that are below the threshold.
*
*/
SeriesColumn negativeColor(String negativeColor);
/**
* Properties for each single point
*
*/
Point point();
/**
* Properties for each single point
*
*/
SeriesColumn point(Point point);
/**
* 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.
*
*/
double pointInterval();
/**
* 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.
*
*/
SeriesColumn pointInterval(double pointInterval);
/**
* 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.
*
*/
String pointIntervalUnit();
/**
* 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.
*
*/
SeriesColumn pointIntervalUnit(String pointIntervalUnit);
/**
* Padding between each column or bar, in x axis units.
*
*/
double pointPadding();
/**
* Padding between each column or bar, in x axis units.
*
*/
SeriesColumn pointPadding(double pointPadding);
/**
* 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.
*
*/
String pointPlacementAsString();
/**
*
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.
*
*/
SeriesColumn pointPlacementAsString(String pointPlacementAsString);
/**
*
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.
*
*/
double pointPlacementAsNumber();
/**
*
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.
*
*/
SeriesColumn pointPlacementAsNumber(double pointPlacementAsNumber);
/**
* 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.
*
*/
double pointRange();
/**
* 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.
*
*/
SeriesColumn pointRange(double pointRange);
/**
* 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.
*
*/
double pointStart();
/**
* 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.
*
*/
SeriesColumn pointStart(double pointStart);
/**
* A pixel value specifying a fixed width for each column or bar. When null
, the width is calculated from the pointPadding
and groupPadding
.
*
*/
double pointWidth();
/**
* A pixel value specifying a fixed width for each column or bar. When null
, the width is calculated from the pointPadding
and groupPadding
.
*
*/
SeriesColumn pointWidth(double pointWidth);
/**
* Whether to select the series initially. If showCheckbox
is true, the checkbox next to the series name will be checked for a selected series.
*
*/
boolean selected();
/**
* Whether to select the series initially. If showCheckbox
is true, the checkbox next to the series name will be checked for a selected series.
*
*/
SeriesColumn selected(boolean selected);
/**
* 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
.
*
*/
boolean shadowAsBoolean();
/**
* 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
.
*
*/
SeriesColumn shadowAsBoolean(boolean shadowAsBoolean);
/**
* 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
.
*
*/
String shadowAsJsonString();
/**
* 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
.
*
*/
SeriesColumn shadowAsJsonString(String shadowAsJsonString);
/**
* 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.
*
*/
boolean showCheckbox();
/**
* 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.
*
*/
SeriesColumn showCheckbox(boolean showCheckbox);
/**
* Whether to display this particular series or series type in the legend. The default value is true
for standalone series, false
for linked series.
*
*/
boolean showInLegend();
/**
* Whether to display this particular series or series type in the legend. The default value is true
for standalone series, false
for linked series.
*
*/
SeriesColumn showInLegend(boolean showInLegend);
/**
* 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.
*
*/
String stack();
/**
* 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.
*
*/
SeriesColumn stack(String stack);
/**
* Whether to stack the values of each series on top of each other. Possible values are null to disable, "normal" to stack by value or "percent".
*
*/
String stacking();
/**
* Whether to stack the values of each series on top of each other. Possible values are null to disable, "normal" to stack by value or "percent".
*
*/
SeriesColumn stacking(String stacking);
/**
* A wrapper object for all the series options in specific states.
*
*/
States states();
/**
* A wrapper object for all the series options in specific states.
*
*/
SeriesColumn states(States states);
/**
* 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.
*
*/
boolean stickyTracking();
/**
* 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.
*
*/
SeriesColumn stickyTracking(boolean stickyTracking);
/**
* 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.
*
*/
double 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.
*
*/
SeriesColumn threshold(double threshold);
/**
* 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.
*
*/
Tooltip tooltip();
/**
* 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.
*
*/
SeriesColumn tooltip(Tooltip tooltip);
/**
* When a series contains a data array that is longer than this, only one dimensional arrays of numbers,
or two dimensional arrays with x and y values are allowed. Also, only the first
point is tested, and the rest are assumed to be the same format. This saves expensive
data checking and indexing in long series. Set it to 0
disable.
*
*/
double turboThreshold();
/**
* When a series contains a data array that is longer than this, only one dimensional arrays of numbers,
or two dimensional arrays with x and y values are allowed. Also, only the first
point is tested, and the rest are assumed to be the same format. This saves expensive
data checking and indexing in long series. Set it to 0
disable.
*
*/
SeriesColumn turboThreshold(double turboThreshold);
/**
* 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.
*
*/
String type();
/**
* 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.
*
*/
SeriesColumn type(String type);
/**
* Set the initial visibility of the series.
*
*/
boolean visible();
/**
* Set the initial visibility of the series.
*
*/
SeriesColumn visible(boolean visible);
/**
* 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.
*
*/
double xAxisAsNumber();
/**
* 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.
*
*/
SeriesColumn xAxisAsNumber(double xAxisAsNumber);
/**
* 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.
*
*/
String xAxisAsString();
/**
* 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.
*
*/
SeriesColumn xAxisAsString(String xAxisAsString);
/**
* 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.
*
*/
double yAxisAsNumber();
/**
* 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.
*
*/
SeriesColumn yAxisAsNumber(double yAxisAsNumber);
/**
* 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.
*
*/
String yAxisAsString();
/**
* 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.
*
*/
SeriesColumn yAxisAsString(String yAxisAsString);
/**
* Define the visual z index of the series.
*
*/
double zIndex();
/**
* Define the visual z index of the series.
*
*/
SeriesColumn zIndex(double zIndex);
/**
* Defines the Axis on which the zones are applied.
*
*/
String zoneAxis();
/**
* Defines the Axis on which the zones are applied.
*
*/
SeriesColumn zoneAxis(String zoneAxis);
/**
* An array defining zones within a series.
*
*/
ArrayNumber zones();
/**
* An array defining zones within a series.
*
*/
SeriesColumn zones(ArrayNumber zones);
String getFieldAsJsonObject(String fieldName);
SeriesColumn setFieldAsJsonObject(String fieldName, String fieldValueAsJonObject);
String getFunctionAsString(String fieldName);
SeriesColumn setFunctionAsString(String fieldName, String functionAsString);
}