AnyChart
API Reference
Still have questions?
Contact support
Top

class anychart.standalones.ResourceList Improve this Doc

Extends: anychart.core.resource.ResourceList

The ResourceList class contains methods for configuring standalones resource list.

Methods Overview

Specific settings
drawBottomLine()Drawing of the bottom line.
drawLeftLine()Drawing of the left line.
drawRightLine()Drawing of the right line.
drawTopLine()Drawing of the top line.
images()Images settings.
target()Target settings.
verticalScrollBarPosition()Vertical scroll bar position.
Coloring
background()Background settings.
evenFill()Even fill settings.
oddFill()Odd fill settings.
stroke()Stroke settings.
Data
data()Data settings.
Interactivity
enabled()Element state (enabled or disabled).
Size and Position
bottom()Bottom bound settings.
bounds()Bounds settings.
getPixelBounds()Returns pixel bounds.
height()Height settings.
left()Left bound settings.
maxHeight()Maximum height.
maxRowHeight()Maximum row height settings.
maxWidth()Maximum width.
minHeight()Minimum height.
minRowHeight()Minimum row height settings.
minWidth()Minimum width.
parentBounds()Parent bounds settings.
right()Right bound settings.
rowHeight()Row height settings.
top()Top bound settings.
width()Width settings.
zIndex()Z-index of the element.
Text settings
descriptions()Descriptions settings.
names()Names settings.
overlay()Overlay element.
tags()Tags settings.
types()Types settings.
Miscellaneous
container()Container settings.
draw()Draws resource list.

Methods Description

background

Getter for the background.

Returns:

anychart.core.ui.Background - Background instance.
Setter for the background.

Params:

NameTypeDescription
settingsstring | Object | null | booleanBackground settings to set.

Returns:

anychart.standalones.ResourceList - 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.standalones.ResourceList - 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.standalones.ResourceList - 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.standalones.ResourceList - Self instance for method chaining.

container

Getter for the resource list container.

Returns:

anychart.graphics.vector.Layer | anychart.graphics.vector.Stage - The resource list container.
See listing
var container = resourceList.container();
Setter for the resource list container.

Params:

NameTypeDescription
elementanychart.graphics.vector.Layer | anychart.graphics.vector.Stage | string | ElementThe value to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

data

Getter for resource list data.

Returns:

anychart.data.View - Returns the data mapping.
See listing
var data = resourceList.data();
Setter for resource list data.

Params:

NameTypeDescription
dataanychart.data.View | anychart.data.Set | Array | stringValue to set.
csvSettingsanychart.enums.TextParsingMode | anychart.data.TextParsingSettingsIf CSV string is passed, you can pass CSV parser settings here as a hash map.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

descriptions

Getter for descriptions.

Returns:

anychart.core.resource.resourceList.TextSettings - Returns a class to provide text settings for resource item descriptions.
Setter for descriptions.

Params:

NameTypeDescription
settingsObjectObject with settings.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

draw

Draws resource list.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

drawBottomLine

Getter for the bottom line drawing flag.

Returns:

boolean - Drawing flag.
See listing
var resourceList = chart.resourceList();
var drawBottomLine = resourceList.drawBottomLine();
Setter for the bottom line drawing flag.

Params:

NameTypeDefaultDescription
enabledboolean
true
Value to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

drawLeftLine

Getter for the left line drawing flag.

Returns:

boolean - Drawing flag.
See listing
var resourceList = chart.resourceList();
var drawLeftLine = resourceList.drawLeftLine();
Setter for the left line drawing flag.

Params:

NameTypeDefaultDescription
enabledboolean
false
Value to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

drawRightLine

Getter for the right line drawing flag.

Returns:

boolean - Drawing flag.
See listing
var resourceList = chart.resourceList();
var drawRightLine = resourceList.drawRightLine();
Setter for the right line drawing flag.

Params:

NameTypeDefaultDescription
enabledboolean
false
Value to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

drawTopLine

Getter for the top line drawing flag.

Returns:

boolean - Drawing flag.
See listing
var resourceList = chart.resourceList();
var drawTopLine = resourceList.drawTopLine();
Setter for the top line drawing flag.

Params:

NameTypeDefaultDescription
enabledboolean
false
Value to set.

Returns:

anychart.standalones.ResourceList - 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.standalones.ResourceList - Self instance for method chaining.
Example.
if (!element.enabled())
   element.enabled(true);

evenFill

Getter for the even fill color.

Returns:

anychart.graphics.vector.Fill - The odd fill color.
See listing
var resourceList = chart.resourceList();
var evenFill = resourceList.evenFill();
Setter for even fill settings using an array, an object or a string. Learn more about coloring.

Params:

NameTypeDescription
coloranychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)>Color as an object, an array or a string.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Even fill color with opacity.

Params:

NameTypeDescription
colorstringColor as a string.
opacitynumberColor opacity.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Linear gradient even fill. Learn more about coloring.

Params:

NameTypeDescription
keysArray.<(anychart.graphics.vector.GradientKey|string)>Gradient keys.
anglenumberGradient angle.
modeboolean | anychart.graphics.vector.Rect | ObjectGradient mode.
opacitynumberGradient opacity.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Radial gradient even fill. Learn more about coloring.

Params:

NameTypeDescription
keysArray.<(anychart.graphics.vector.GradientKey|string)>Color-stop gradient keys.
cxnumberX ratio of center radial gradient.
cynumberY ratio of center radial gradient.
modeanychart.graphics.math.RectIf defined then userSpaceOnUse mode, else objectBoundingBox.
opacitynumberOpacity of the gradient.
fxnumberX ratio of focal point.
fynumberY ratio of focal point.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

Params:

NameTypeDescription
imageSettingsanychart.graphics.vector.FillObject with settings.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

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.standalones.ResourceList - Returns self for method chaining.

images

Getter for images.

Returns:

anychart.core.resource.resourceList.ImageSettings - Returns a class to provide settings for resource item images.
Setter for images.

Params:

NameTypeDescription
settingsObjectObject with settings for resource images.

Returns:

anychart.standalones.ResourceList - Self instance 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.standalones.ResourceList - Returns self 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.standalones.ResourceList - Self instance for method chaining.

maxRowHeight

Getter for the maximum row height.

Returns:

number - Maximum row height
See listing
var maxRowHeight = resourceList.maxRowHeight();
Setter for the maximum row height.

Params:

NameTypeDescription
heightnumberMaximum row height to set.

Returns:

anychart.standalones.ResourceList - 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.standalones.ResourceList - 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.standalones.ResourceList - Self instance for method chaining.

minRowHeight

Getter for the minimum row height.

Returns:

number - Minimum row height
See listing
var minRowHeight = resourceList.minRowHeight();
Setter for the minimum row height.

Params:

NameTypeDescription
heightnumberMinimum row height to set.

Returns:

anychart.standalones.ResourceList - 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.standalones.ResourceList - Self instance for method chaining.

names

Getter for names.

Returns:

anychart.core.resource.resourceList.TextSettings - Returns a class to provide text settings for resource item names.
Setter for names.

Params:

NameTypeDescription
settingsObjectObject with settings.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

oddFill

Getter for the odd fill color.

Returns:

anychart.graphics.vector.Fill - The odd fill color.
See listing
var resourceList = chart.resourceList();
var oddFill = resourceList.oddFill();
Setter for odd fill settings using an array, an object or a string. Learn more about coloring.

Params:

NameTypeDescription
coloranychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)>Color as an object, an array or a string.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Odd fill color with opacity.

Params:

NameTypeDescription
colorstringColor as a string.
opacitynumberColor opacity (0 to 1).

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Linear gradient odd fill. Learn more about coloring.

Params:

NameTypeDescription
keysArray.<(anychart.graphics.vector.GradientKey|string)>Gradient keys.
anglenumberGradient angle.
modeboolean | anychart.graphics.vector.Rect | ObjectGradient mode.
opacitynumberGradient opacity.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Radial gradient odd fill. Learn more about coloring.

Params:

NameTypeDescription
keysArray.<(anychart.graphics.vector.GradientKey|string)>Color-stop gradient keys.
cxnumberX ratio of center radial gradient.
cynumberY ratio of center radial gradient.
modeanychart.graphics.math.RectIf defined then userSpaceOnUse mode, else objectBoundingBox.
opacitynumberOpacity of the gradient.
fxnumberX ratio of focal point.
fynumberY ratio of focal point.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

Params:

NameTypeDescription
imageSettingsanychart.graphics.vector.FillObject with settings.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

overlay

Getter for the overlay element.

Returns:

anychart.core.gantt.Overlay - Overlay element.
See listing
var element = resourceList.overlay();
Setter for the overlay element.

Params:

NameTypeDescription
settingsstring | Object | null | booleanValue to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

parentBounds

Getter for parent bounds.

Returns:

anychart.math.Rect - Stage bounds.
See listing
var parentBounds = resourceList.parentBounds();
Setter for bounds using single value.

Params:

NameTypeDescription
boundsanychart.math.Rect | Object | nullParent to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Setter for bounds using several values.

Params:

NameTypeDescription
leftnumberLeft space.
topnumberTop space.
widthnumberA width for a resource list.
heightnumberA height for a resource list.

Returns:

anychart.standalones.ResourceList - 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.standalones.ResourceList - Returns self for method chaining.

rowHeight

Getter for the row height.

Returns:

number - Minimum row height
See listing
var minRowHeight = resourceList.minRowHeight();
Setter for the minimum row height.

Params:

NameTypeDescription
heightnumberMinimum row height to set.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

stroke

Getter for the stroke.

Returns:

anychart.graphics.vector.Stroke - The stroke.
See listing
var resourceList = chart.resourceList();
var stroke = resourceList.stroke();
Setter for the stroke. Learn more about stroke settings.

Params:

NameTypeDefaultDescription
coloranychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null
Stroke settings.
thicknessnumber
1
Line thickness.
dashpatternstring
Controls the pattern of dashes and gaps used to stroke paths.
lineJoinstring | anychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapstring | anychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.
Setter for stroke using an object.

Params:

NameTypeDescription
settingsObjectStroke settings from anychart.graphics.vector.Stroke.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

tags

Getter for tags.

Returns:

anychart.core.resource.resourceList.TagsSettings - Returns a class to provide text settings for resource item tags.
Setter for tags.

Params:

NameTypeDescription
settingsObjectObject with settings.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

target

Getter for the source chart for list.

Returns:

anychart.charts.Resource - Source chart for target.
Setter for the source chart for list.

Params:

NameTypeDescription
targetanychart.charts.ResourceTarget to set.

Returns:

anychart.standalones.ResourceList - 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.standalones.ResourceList - Returns self for method chaining.

types

Getter for types.

Returns:

anychart.core.resource.resourceList.TextSettings - Returns a class to provide text settings for resource item types.
Setter for types.

Params:

NameTypeDescription
settingsObjectObject with settings.

Returns:

anychart.standalones.ResourceList - Self instance for method chaining.

verticalScrollBarPosition

Getter for the vertical scroll bar position.

Returns:

number - Returns scroll bar position.
Setter for the vertical scroll bar position.

Params:

NameTypeDescription
positionnumberPosition value to set.

Returns:

anychart.standalones.ResourceList - Self instance 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.standalones.ResourceList - Returns self 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.standalones.ResourceList - Self instance for method chaining.