AnyChart
API Reference
Still have questions?
Contact support
Top

class anychart.core.stock.series.DiscreteBase Improve this Doc

Extends: anychart.core.stock.series.Base

DiscreteBase series class.

Methods Overview

Specific settings
getIndex()Gets series index.
legendItem()Legend item settings.
pointWidth()Point width settings.
Data
data()Data settings.
name()Series name settings.
Interactivity
enabled()Element state (enabled or disabled).
Point Elements
tooltip()Tooltip settings.
Scales
yScale()Y-scale settings.
Series
allowPointSettings()Allows to set point settings from data.
Size and Position
bottom()Bottom bound settings.
bounds()Bounds settings.
getPixelBounds()Returns pixel bounds.
height()Height settings.
left()Left bound settings.
maxHeight()Maximum height.
maxWidth()Maximum width.
minHeight()Minimum height.
minWidth()Minimum width.
right()Right bound settings.
top()Top bound settings.
width()Width settings.
zIndex()Z-index of the element.

Methods Description

allowPointSettings

Getter for the allowPointSettings flag.

Returns:

boolean - Returns allowPointSettings flag.
See listing
var plot = chart.plot();
var series = plot.column(data);
var allowPointSettings = series.allowPointSettings();
Setter for the allowPointSettings flag.

Params:

NameTypeDefaultDescription
enabledboolean
false
Allows to set individual point settings.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

bottom

Getter for element bottom bound settings.

Returns:

number | string | undefined - Element's bottom bound setting.
Setter for element bottom bound settings.

Params:

NameTypeDefaultDescription
bottomnumber | string | null
null
Bottom bound settings for the element.

Returns:

anychart.core.stock.series.DiscreteBase - Returns self for method chaining.

bounds

Getter for element bounds settings.

Returns:

anychart.core.utils.Bounds - Bounds of the element.
Setter for bounds of the element using one parameter.

Params:

NameTypeDescription
boundsanychart.utils.RectObj | anychart.math.Rect | anychart.core.utils.BoundsBounds of element.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.
Setter for element bounds settings.

Params:

NameTypeDefaultDescription
xnumber | string
null
X-coordinate.
ynumber | string
null
Y-coordinate.
widthnumber | string
null
Width.
heightnumber | string
null
Height.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

data

Getter for data for the series.

Returns:

anychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | string - Returns mapping.
Setter for data for the series.

Params:

NameTypeDescription
dataanychart.data.TableMapping | anychart.data.Table | Array.<Array.<*>> | stringData for the series.
mappingSettingsObject.<string, ({column: number, type: (anychart.enums.AggregationType|string), weights: number}|number)>Mapping settings. An object where keys are field names and values are objects with fields: - 'column': number - Column index, that the field should get values from; - 'type': anychart.enums.AggregationType|string - How to group values for the field. Defaults to 'close'. - 'weights': number - Column to get weights from for 'weightedAverage' grouping type. Note: If type set to 'weightedAverage', but opt_weightsColumn is not passed - uses 'average' grouping instead. or numbers - just the column index to get values from. In this case the grouping type will be set to 'close'.
csvSettingsObjectCSV parser settings if the string is passed.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

enabled

Getter for the element state (enabled or disabled).

Returns:

boolean - Element state.
Setter for the element enabled state.

Params:

NameTypeDefaultDescription
enabledboolean
true
Enabled state to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.
Example.
if (!element.enabled())
   element.enabled(true);

getIndex

Gets series index.

Returns:

number - Returns series index.

getPixelBounds

Returns pixel bounds of the element due to parent bounds and self bounds settings.

Returns:

anychart.math.Rect - Pixel bounds of the element.

height

Getter for element height settings.

Returns:

number | string | undefined - Element's height setting.
Setter for element height setting.

Params:

NameTypeDefaultDescription
heightnumber | string | null
null
Height settings for the element.

Returns:

anychart.core.stock.series.DiscreteBase - Returns self for method chaining.

left

Getter for element left bound settings.

Returns:

number | string | undefined - Element's left bound setting.
Setter for element left bound settings.

Params:

NameTypeDefaultDescription
leftnumber | string | null
null
Left bound setting for the element.

Returns:

anychart.core.stock.series.DiscreteBase - Returns self for method chaining.

legendItem

Getter for the legend item setting for series.

Returns:

anychart.core.utils.LegendItemSettings - Legend item settings.
Setter for the legend item setting for series.

Params:

NameTypeDescription
settingsObjectLegend item settings object.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

maxHeight

Getter for the maximum height.

Returns:

number | string | null - Element's maximum height.
Setter for the maximum height.

Params:

NameTypeDefaultDescription
heightnumber | string | null
null
Maximum height to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

maxWidth

Getter for the maximum width.

Returns:

number | string | null - Element's maximum width.
Setter for the maximum width.

Params:

NameTypeDefaultDescription
widthnumber | string | null
null
Maximum width to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

minHeight

Getter for the minimum height.

Returns:

number | string | null - Element's minimum height.
Setter for the minimum height.

Params:

NameTypeDefaultDescription
heightnumber | string | null
null
Minimum height to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

minWidth

Getter for the minimum width.

Returns:

number | string | null - Element's minimum width.
Setter for the minimum width.

Params:

NameTypeDefaultDescription
widthnumber | string | null
null
Minimum width to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

name

Getter for the series name.

Returns:

string - Series name.
Setter for the series name.

Params:

NameTypeDescription
namestringSeries name.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

pointWidth

Getter for point width settings.

Returns:

string | number - Point width pixel value.
Setter for the point width settings.

Params:

NameTypeDefaultDescription
widthnumber | string | null
'75%'
Point width pixel value.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.
Getter for element right bound settings.

Returns:

number | string | undefined - Element's right bound setting.
Setter for element right bound setting.

Params:

NameTypeDefaultDescription
rightnumber | string | null
null
Right bound setting for the element.

Returns:

anychart.core.stock.series.DiscreteBase - Returns self for method chaining.

tooltip

Getter for the tooltip.

Returns:

anychart.core.ui.Tooltip - Tooltip instance.
Setter for the tooltip.

Params:

NameTypeDefaultDescription
settingsObject | boolean | null
true
Tooltip settings.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

top

Getter for element top bound settings.

Returns:

number | string | undefined - Element's top bound setting.
Setter for element top bound settings.

Params:

NameTypeDefaultDescription
topnumber | string | null
null
Top bound setting for the element.

Returns:

anychart.core.stock.series.DiscreteBase - Returns self for method chaining.

width

Getter for element width settings.

Returns:

number | string | undefined - Element's width setting.
Setter for element width setting.

Params:

NameTypeDefaultDescription
widthnumber | string | null
null
Width settings for the element.

Returns:

anychart.core.stock.series.DiscreteBase - Returns self for method chaining.

yScale

Getter for the Y-scale.

Returns:

anychart.scales.ScatterBase - Series Y-scale.
See listing
var plot = chart.plot();
var plotSeries = plot.line(data);
var yScale = plotSeries.yScale();
Setter for the Y-scale.

Params:

NameTypeDefaultDescription
settingsanychart.scales.ScatterBase | Object | anychart.enums.ScaleTypes | string
anychart.scales.Linear
Scale settings to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.

zIndex

Getter for the Z-index of the element.

Returns:

number - Z-index.
Setter for the Z-index of the element.

Params:

NameTypeDefaultDescription
zIndexnumber
0
Value to set.

Returns:

anychart.core.stock.series.DiscreteBase - Self instance for method chaining.