AnyChart
API Reference
Still have questions?
Contact support
Top
You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.

class anychart.charts.Resource Improve this Doc

Extends: anychart.core.Chart

Resource chart class.

Methods Overview

Specific settings
activities()Activities settings.
calendar()Calendar settings.
conflicts()Conflicts settings.
defaultMinutesPerDay()Time tracking mode.
globalToLocal()Converts the global coordinates to local coordinates.
grid()Grid settings.
horizontalScrollBar()Horizontal scrollbar settings.
localToGlobal()Converts the local coordinates to global coordinates.
overlay()Overlay element.
timeLine()TimeLine settings.
timeTrackingMode()Time tracking mode.
verticalScrollBar()Vertical scrollbar settings.
Axes and Scales
xScale()X scale settings.
Chart Coloring
animation()Animation settings
background()Background settings.
Chart Controls
contextMenu()Context menu settings.
label()Label settings.
title()Title settings.
Coloring
logo()Logo settings.
selectMarqueeFill()Select marquee fill settings.
selectMarqueeStroke()Stroke settings.
splitterStroke()Stroke settings.
Data
data()Data settings.
getSelectedPoints()Getter for the selected points.
Events
listen()Adds an event listener.
listenOnce()Adds a single time event listener.
removeAllListeners()Removes all listeners.
unlisten()Removes the listener.
unlistenByKey()Removes the listener by the key.
Export
print()Prints all elements.
saveAsCsv()Saves chart data as CSV file.
saveAsJson()Saves chart config as JSON document.
saveAsXlsx()Saves chart data as Excel document.
saveAsXml()Saves chart config as XML document.
toCsv()Returns CSV string with series data.
Interactivity
enabled()Element state (enabled or disabled).
hover()Setter for the hover state on an activity.
hoverPoint()Hovers an activity by its global index.
select()Setter for the select state on an activity.
selectPoint()Selects an activity by its global index.
startSelectMarquee()Starts select marquee drawing.
tooltip()Tooltip settings.
unhover()Removes hover from an activity by index.
unselect()Removes select from an activity by index.
zoomLevel()Zoom level settings.
zoomLevels()Zoom levels settings.
Size and Position
bottom()Bottom bound setting.
bounds()Bounds settings.
cellPadding()Cell padding settings.
getPixelBounds()Returns pixel bounds.
height()Height setting.
left()Left bound setting.
margin()Margin settings.
maxHeight()Maximum height.
maxWidth()Maximum width.
minHeight()Minimum height.
minRowHeight()Minimal row height settings.
minWidth()Minimum width.
padding()Padding settings.
pixPerHour()Hours row height settings.
resourceListWidth()Time line height settings.
right()Right bound setting.
timeLineHeight()Time line height settings.
top()Top bound setting.
width()Width setting.
zIndex()Z-index of the element.
XML/JSON
toJson()Return chart configuration as JSON object or string.
toXml()Return chart configuration as XML string or XMLNode.
Miscellaneous
cancelMarquee()Stops current marquee action if any.
container()Getter for the element's container.
draw()Drawing of the chart.
inMarquee()Gets marquee process running value.
saveAsJpg()Saves the current chart as JPEG image.
saveAsPdf()Saves the current chart as PDF image.
saveAsPng()Saves the current chart as PNG image.
saveAsSvg()Saves the current chart as SVG image.
toSvg()Returns SVG string.

Methods Description

activities

Getter for the activities settings.

Returns:

anychart.core.resource.Activities - Activities settings.
Setter for the activities settings.

Params:

NameTypeDescription
valueObjectValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

animation

Getter for the current animation setting.

Returns:

anychart.core.utils.Animation - Returns true if the animation is enabled.
Setter for the animation setting by one value.

Params:

NameTypeDefaultDescription
valueboolean | Object
false
Whether to enable animation.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Setter for the animation settings using several parameters.

Params:

NameTypeDefaultDescription
enabledboolean
false
Whether to enable animation.
durationnumber
1000
Duration in milliseconds.

Returns:

anychart.charts.Resource - Self instance for method chaining.

background

Getter for the current chart background.

Returns:

anychart.core.ui.Background - The current chart background.
Setter for the chart background.

Params:

NameTypeDefaultDescription
valueObject
{enabled: true, fill: "#fff", stroke: 'none', zIndex: 1}
Background object to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

bottom

Getter for element bottom bound setting.

Returns:

number | string | undefined - Current element's bottom bound setting.
Sets element bottom bound setting.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Bottom bound setting for the element.

Returns:

anychart.charts.Resource - Returns self for method chaining.

bounds

Getter for the element bounds settings.

Returns:

anychart.core.utils.Bounds - Current bounds of the element.
Sets bounds of the element using one parameter.

Params:

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

Returns:

anychart.charts.Resource - Self instance for method chaining.
Setter for the 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.charts.Resource - Self instance for method chaining.

calendar

Getter for the calendar.

Returns:

anychart.scales.Calendar - Calendar.
Setter for calendar.

Params:

NameTypeDescription
valueObjectValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

cancelMarquee

Stops current marquee action if any.

Returns:

anychart.charts.Resource - Self instance for method chaining.

cellPadding

Getter for the cell padding.

Returns:

anychart.core.utils.Padding - Cell padding.
Setter for cell paddings in pixels using a single value.

Params:

NameTypeDescription
valuenull | Array.<(number|string)> | ObjectValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Examples for paddings
// all paddings 15px
chart.padding(15);
// all paddings 15px
chart.padding('15px');
// top and bottom 5px ,right and left 15px
chart.padding(anychart.utils.padding(5,15));
Setter for cell paddings in pixels using several numbers.

Params:

NameTypeDescription
value1string | numberTop or top-bottom space.
value2string | numberRight or right-left space.
value3string | numberBottom space.
value4string | numberLeft space.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Examples for paddings
// 1) top and bottom 10px, left and right 15px
chart.cellPadding(10, '15px');
// 2) top 10px, left and right 15px, bottom 5px
chart.cellPadding(10, '15px', 5);
// 3) top 10px, right 15px, bottom 5px, left 12px
chart.cellPadding(10, '15px', '5px', 12);

conflicts

Getter for the conflicts settings.

Returns:

anychart.core.resource.Conflicts - Conflicts settings
Setter for the conflicts settings.

Params:

NameTypeDescription
valueObjectValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

container

Getter for the element's container.
Setter for the element's container.

Params:

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

Returns:

anychart.charts.Resource - Self instance for method chaining.
Example
// string
 element.container('containerIdentifier');
// DOM-element
 var domElement = document.getElementById('containerIdentifier');
 element.container(domElement);
// Framework-element
 var fwElement = anychart.standalones.title();
 element.container( fwElement.container() );

contextMenu

Getter for the current context menu.

Returns:

anychart.ui.ContextMenu - The current context menu.
Setter for the context menu.

Params:

NameTypeDescription
valueObject | boolean | nullContext menu settings

Returns:

anychart.charts.Resource - Self instance for method chaining.

data

Getter for the chart data.

Returns:

anychart.data.View - Data mapping.
See listing
var currentData = chart.data();
Setter for the chart data. Learn more about mapping at anychart.data.Mapping.

Params:

NameTypeDescription
valueanychart.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.charts.Resource - Self instance for method chaining.

defaultMinutesPerDay

Getter for default minutes per day.

Returns:

number - Minutes per day.
See listing
var time = chart.defaultMinutesPerDay();
Setter for default minutes per day. Note: Use method when number of minutes per day isn't specified in the data.

Params:

NameTypeDefaultDescription
valuenumber
60
Minutes per day.

Returns:

anychart.charts.Resource - Self instance for method chaining.

draw

Starts the rendering of the chart into the container.

Params:

NameTypeDescription
asyncbooleanWhether do draw asynchronously. If set to true, the chart will be drawn asynchronously.

Returns:

anychart.charts.Resource - Self instance for method chaining.

enabled

Getter for the current element state (enabled or disabled).

Returns:

boolean - The current element state.
Setter for the element enabled state.

Params:

NameTypeDefaultDescription
valueboolean
true
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Example.
if (!element.enabled())
   element.enabled(true);

getPixelBounds

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

Returns:

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

getSelectedPoints

Getter for the selected points.

Returns:

Array.<anychart.core.Point> - An array of the selected points.

globalToLocal

Converts the global coordinates to local coordinates. Note: Works only after anychart.core.Chart#draw is called.

Params:

NameTypeDescription
xCoordnumberGlobal X coordinate.
yCoordnumberGlobal Y coordinate.

Returns:

Object.<string, number> - Object with XY coordinates.

grid

Getter for the grid.

Returns:

anychart.core.resource.Grid - Grid instance.
Setter for the grid.

Params:

NameTypeDescription
valueObject | null | booleanValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

height

Getter for element height setting.

Returns:

number | string | undefined - Current element's height setting.
Sets element height setting.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Height setting for the element.

Returns:

anychart.charts.Resource - Returns self for method chaining.

horizontalScrollBar

Getter for the horizontal scrollbar.

Returns:

anychart.core.ui.Scroller - Scrollbar instance.
Setter for the horizontal scrollbar.

Params:

NameTypeDescription
valueObject | null | booleanValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

hover

Setter for the hover state on an activity.
Hovers an activity determined by the resourceIndex and the activityIndex.

Params:

NameTypeDescription
resourceIndexnumberResource index.
activityIndexnumberActivity index.

Returns:

anychart.charts.Resource - Self instance for method chaining.

hoverPoint

Hovers an activity by its global index.

Params:

NameTypeDescription
globalIndexnumberGlobal activity index.

Returns:

anychart.charts.Resource - Self instance for method chaining.

inMarquee

Gets marquee process running value.

Returns:

boolean - Returns true if there is a marquee process running.

label

Getter for chart label.

Params:

NameTypeDefaultDescription
indexstring | number
0
Index of instance.

Returns:

anychart.core.ui.Label - An instance of class.
Setter for chart label.

Params:

NameTypeDefaultDescription
valuenull | boolean | Object | string
false
Chart label instance to add by index 0.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Setter for chart label.

Params:

NameTypeDefaultDescription
indexstring | number
Label index.
valuenull | boolean | Object | string
false
Chart label settings.

Returns:

anychart.charts.Resource - Self instance for method chaining.

left

Getter for element left bound setting.

Returns:

number | string | undefined - Current element's left bound setting.
Sets element left bound setting.

Params:

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

Returns:

anychart.charts.Resource - Returns self for method chaining.

listen

Adds an event listener to an implementing object.

Params:

NameTypeDefaultDescription
typestring
The event type id.
listenerfunction
Callback method. Function that looks like function(event){ // event.actualTarget - actual event target // event.currentTarget - current event target // event.iterator - event iterator // event.originalEvent - original event // event.point - event point // event.pointIndex - event point index }.
useCaptureboolean
false
Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing
listenerScopeObject
Object in whose scope to call the listener.

Returns:

Object - Unique key for the listener.

listenOnce

Adds an event listener to an implementing object.

Params:

NameTypeDefaultDescription
typestring
The event type id.
listenerfunction
Callback method.
useCaptureboolean
false
Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing
listenerScopeObject
Object in whose scope to call the listener.

Returns:

Object - Unique key for the listener.

localToGlobal

Converts the local coordinates to global coordinates. Note: Works only after anychart.core.Chart#draw is called.

Params:

NameTypeDescription
xCoordnumberLocal X coordinate.
yCoordnumberLocal Y coordinate.

Returns:

Object.<string, number> - Object with XY coordinates.

margin

Setter for the chart margin in pixels using a single complex object.

Params:

NameTypeDefaultDescription
valueArray.<(number|string)> | Object
{top: 0, right: 0, bottom: 0, left: 0}
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Example.
// all margins 15px
chart.margin(15);
// all margins 15px
chart.margin("15px");
// top and bottom 5px, right and left 15px
chart.margin(anychart.utils.margin(5, 15));
Setter for the chart margin in pixels using several simple values.

Params:

NameTypeDefaultDescription
value1string | number
0
Top or top-bottom space.
value2string | number
0
Right or right-left space.
value3string | number
0
Bottom space.
value4string | number
0
Left space.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Example.
// 1) all 10px
chart.margin(10);
// 2) top and bottom 10px, left and right 15px
chart.margin(10, "15px");
// 3) top 10px, left and right 15px, bottom 5px
chart.margin(10, "15px", 5);
// 4) top 10px, right 15px, bottom 5px, left 12px
chart.margin(10, "15px", "5px", 12);

maxHeight

Getter for maximum height.

Returns:

number | string | null - Current element's maximum height.
Setter for maximum height.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

maxWidth

Getter for maximum width.

Returns:

number | string | null - Current element's maximum width.
Setter for maximum width.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

minHeight

Getter for minimum height.

Returns:

number | string | null - Current element's minimum height.
Setter for minimum height.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

minRowHeight

Getter for the minimal row height.

Returns:

number - Minimal row height
See listing
var minHeight = chart.minRowHeight();
Setter for the minimal row height.

Params:

NameTypeDefaultDescription
valuenumber
50
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

minWidth

Getter for minimum width.

Returns:

number | string | null - Current element's minimum width.
Setter for minimum width.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

overlay

Getter for the overlay element.

Returns:

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

Params:

NameTypeDescription
valueObject | null | booleanValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

padding

Setter for the chart paddings in pixels using a single value.

Params:

NameTypeDefaultDescription
valueArray.<(number|string)> | Object
{top: 0, right: 0, bottom: 0, left: 0}
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Example.
chart.padding([5, 15]);
or
chart.padding({left: 10, top: 20, bottom: 30, right: "40%"}});
Setter for the chart paddings in pixels using several numbers.

Params:

NameTypeDefaultDescription
value1string | number
0
Top or top-bottom space.
value2string | number
0
Right or right-left space.
value3string | number
0
Bottom space.
value4string | number
0
Left space.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Example.
// 1) all 10px
chart.padding(10);
// 2) top and bottom 10px, left and right 15px
chart.padding(10, "15px");
// 3) top 10px, left and right 15px, bottom 5px
chart.padding(10, "15px", 5);
// 4) top 10px, right 15%, bottom 5px, left 12px
chart.padding(10, "15%", "5px", 12);

pixPerHour

Getter for hours row height in pixels.

Returns:

number - The hour height in pixel
See listing
var height = chart.pixPerHour();
Setter for hours row height in pixels.

Params:

NameTypeDefaultDescription
valuenumber
25
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

print

Prints all elements on related stage.

Params:

NameTypeDefaultDescription
paperSizeOrOptionsanychart.graphics.vector.PaperSize | Object
Paper size or object with options.
landscapeboolean
false
Flag of landscape.

removeAllListeners

Removes all listeners from an object. You can also optionally remove listeners of some particular type.

Params:

NameTypeDescription
typestringType of event to remove, default is to remove all types.

Returns:

number - Number of listeners removed.

resourceListWidth

Getter for the resource list width.

Returns:

number | string - Time line height.
See listing
var width = chart.resourceListWidth();
Setter for the resource list width.

Params:

NameTypeDefaultDescription
valuenumber | string
260
Value to set

Returns:

anychart.charts.Resource - Self instance for method chaining.
Getter for element right bound setting.

Returns:

number | string | undefined - Current element's right bound setting.
Sets element right bound setting.

Params:

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

Returns:

anychart.charts.Resource - Returns self for method chaining.

saveAsCsv

Saves chart data as CSV file.

Params:

NameTypeDescription
chartDataExportModestring | anychart.enums.ChartDataExportModeData export mode.
csvSettingsObject.<string, (string|boolean|undefined)>CSV settings.
filenamestringFile name to save.

saveAsJpg

Saves the current chart as JPEG image.

Params:

NameTypeDescription
widthnumber | ObjectImage width or object with options.
heightnumberImage height.
qualitynumberImage quality in ratio 0-1.
forceTransparentWhitebooleanForce transparent to white or not.
filenamestringFile name to save.

saveAsJson

Saves chart config as JSON document.

Params:

NameTypeDescription
includeThemebooleanIf the current theme properties should be included into the result.
filenamestringFile name to save.

saveAsPdf

Saves the current chart as PDF image.

Params:

NameTypeDescription
paperSizeOrWidthOrOptionsnumber | string | ObjectAny paper format like 'a0', 'tabloid', 'b4', etc or width, or object with options.
landscapebooleanDefine, is landscape.
xnumberOffset X.
ynumberOffset Y.
filenamestringFile name to save.

saveAsPng

Saves the current chart as PNG image.

Params:

NameTypeDescription
widthnumber | ObjectImage width or object with options.
heightnumberImage height.
qualitynumberImage quality in ratio 0-1.
filenamestringFile name to save.

saveAsSvg

Saves the current chart as SVG image.

Params:

NameTypeDescription
paperSizestring | ObjectPaper Size or object with options.
landscapebooleanLandscape.
filenamestringFile name to save.
Saves the stage as SVG image using width and height.

Params:

NameTypeDescription
widthnumberImage width.
heightnumberImage height.

saveAsXlsx

Saves chart data as Excel document.

Params:

NameTypeDescription
chartDataExportModestring | anychart.enums.ChartDataExportModeData export mode.
filenamestringFile name to save.

saveAsXml

Saves chart config as XML document.

Params:

NameTypeDescription
includeThemebooleanIf the current theme properties should be included into the result.
filenamestringFile name to save.

select

Setter for the select state on an activity.
Selects an activity determined by the resourceIndex and the activityIndex.

Params:

NameTypeDescription
resourceIndexnumberResource index.
activityIndexnumberActivity index.

Returns:

anychart.charts.Resource - Self instance for method chaining.

selectMarqueeFill

Getter for the select marquee fill.

Returns:

anychart.graphics.vector.Fill - Select marquee fill.
See listing
var selectMarqueeFill = chart.selectMarqueeFill();
Setter for fill settings using an array or a string. Learn more about coloring.

Params:

NameTypeDescription
valueanychart.graphics.vector.FillColor as an object or a string.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Fill color with opacity. Fill as a string or an object.

Params:

NameTypeDescription
colorstringColor as a string.
opacitynumberColor opacity.

Returns:

anychart.charts.Resource - Self instance for method chaining.
Linear gradient 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.charts.Resource - Self instance for method chaining.
Radial gradient 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.charts.Resource - Self instance for method chaining.

Params:

NameTypeDescription
imageSettingsanychart.graphics.vector.FillObject with settings.

Returns:

anychart.charts.Resource - Self instance for method chaining.

selectMarqueeStroke

Getter for the select marquee stroke.

Returns:

anychart.graphics.vector.Stroke - Select marquee stroke.
See listing.
var selectMarqueeStroke = chart.selectMarqueeStroke();
Setter for the select marquee 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.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line join style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.charts.Resource - Self instance for method chaining.

selectPoint

Selects an activity by its global index.

Params:

NameTypeDescription
globalIndexnumberGlobal activity index.
eventanychart.core.MouseEventMouse event.

Returns:

anychart.charts.Resource - Self instance for method chaining.

splitterStroke

Getter for the splitter stroke.

Returns:

anychart.graphics.vector.Stroke - Splitter stroke settings.
See listing
var stroke = chart.splitterStroke();
Setter for the splitter stroke.

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.
lineJoinanychart.graphics.vector.StrokeLineJoin
Line joint style.
lineCapanychart.graphics.vector.StrokeLineCap
Line cap style.

Returns:

anychart.charts.Resource - Self instance for method chaining.

startSelectMarquee

Starts select marquee drawing. Note: Works only after anychart.core.Chart#draw is called.

Params:

NameTypeDescription
repeatbooleanWhether to start select marquee drawing.

Returns:

anychart.charts.Resource - Self instance for method chaining.

timeLine

Getter for the time line.

Returns:

anychart.core.resource.TimeLine - Time line.
Setter for the time line.

Params:

NameTypeDescription
valueObject | null | booleanValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

timeLineHeight

Getter for the time line height.

Returns:

number | string - The time line height
See listing
var height = chart.timeLineHeight();
Setter for the time line height.

Params:

NameTypeDefaultDescription
valuenumber | string
52
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

timeTrackingMode

Getter for the time tracking mode.

Returns:

anychart.enums.TimeTrackingMode - The time tracking mode.
See listing
var mode = chart.timeTrackingMode();
Setter for the time tracking mode.

Params:

NameTypeDefaultDescription
valueanychart.enums.TimeTrackingMode | string
"activityPerResource"
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

title

Getter for chart title.

Returns:

anychart.core.ui.Title - The current chart title.
Setter for the chart title.

Params:

NameTypeDefaultDescription
valuenull | boolean | Object | string
false
Chart title text or title instance for copy settings from.

Returns:

anychart.charts.Resource - Self instance for method chaining.

toCsv

Returns CSV string with series data.

Params:

NameTypeDescription
chartDataExportModestring | anychart.enums.ChartDataExportModeData export mode.
csvSettingsObject.<string, (string|boolean|undefined)>CSV settings.

Returns:

string - CSV string.

toJson

Return chart configuration as JSON object or string.

Params:

NameTypeDefaultDescription
stringifyboolean
false
Returns JSON as string.
includeThemeboolean
false
If the current theme properties should be included into the result.

Returns:

Object | string - Chart configuration.

toSvg

Returns SVG string with paper size and landscape.

Params:

NameTypeDescription
paperSizestring | ObjectPaper Size or object of options.
landscapebooleanLandscape.

Returns:

string - SVG content or empty string.
Returns SVG string with with determined the width and height.

Params:

NameTypeDescription
widthnumberImage width.
heightnumberImage height.

Returns:

string - SVG content or empty string.

toXml

Return chart configuration as XML string or XMLNode.

Params:

NameTypeDefaultDescription
asXmlNodeboolean
false
Return XML as XMLNode.
includeThemeboolean
false
If the current theme properties should be included into the result.

Returns:

string | Node - Chart configuration.

tooltip

Getter for current chart tooltip.

Returns:

anychart.core.ui.Tooltip - An instance of the class for method chaining.
Example
var tooltipSettings = chart.tooltip();
Setter for chart tooltip.

Params:

NameTypeDescription
valueObject | boolean | null

Returns:

anychart.charts.Resource - Self instance for method chaining.

top

Getter for element top bound setting.

Returns:

number | string | undefined - Current element's top bound setting.
Sets element top bound setting.

Params:

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

Returns:

anychart.charts.Resource - Returns self for method chaining.

unhover

Removes hover from an activity by index.

Params:

NameTypeDescription
resourceIndexnumber | Array.<number>Resource index or array of indexes.
activityIndexnumberActivity index.

Returns:

anychart.charts.Resource - Self instance for method chaining.

unlisten

Removes a listener added using listen() or listenOnce() methods.

Params:

NameTypeDefaultDescription
typestring
The event type id.
listenerfunction
Callback method.
useCaptureboolean
false
Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing
listenerScopeObject
Object in whose scope to call the listener.

Returns:

boolean - Whether any listener was removed.

unlistenByKey

Removes an event listener which was added with listen() by the key returned by listen() or listenOnce().

Params:

NameTypeDescription
keyObjectThe key returned by listen() or listenOnce().

Returns:

boolean - Whether any listener was removed.

unselect

Removes select from an activity by index.

Params:

NameTypeDescription
resourceIndexnumber | Array.<number>Resource index or array of indexes.
activityIndexnumberSelf instance for method chaining.

verticalScrollBar

Getter for the vertical scrollbar.

Returns:

anychart.core.ui.Scroller - Scrollbar instance.
Setter for the vertical scrollbar.

Params:

NameTypeDescription
valueObject | null | booleanValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

width

Getter for element width setting.

Returns:

number | string | undefined - Current element's width setting.
Sets element width setting.

Params:

NameTypeDefaultDescription
valuenumber | string | null
null
Width setting for the element.

Returns:

anychart.charts.Resource - Returns self for method chaining.

xScale

Getter for the X scale.

Returns:

anychart.scales.DateTimeWithCalendar - Default chart scale.
Setter for the X scale.

Params:

NameTypeDescription
valueObjectValue to set

Returns:

anychart.charts.Resource - Self instance for method chaining.

zIndex

Getter for the current Z-index of the element.

Returns:

number - The current zIndex.
Setter for the Z-index of the element.

Params:

NameTypeDefaultDescription
valuenumber
0
Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

zoomLevel

Getter for the zoom level. Returns current zoom level identifier or index, if no identifier specified at current zoom level.

Returns:

number | string - The zoom level.
See listing
var level = chart.zoomLevel();
Setter for the zoom level. Zooms chart to the level denoted by the passed index or identifier.

Params:

NameTypeDescription
indexOrIdnumber | stringValue to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.

zoomLevels

Getter for zoom levels set.

Returns:

Array.<anychart.charts.Resource.ZoomLevel> - The zoom levels set.
See listing
var levels = chart.zoomLevels();
Setter for zoom levels set.

Params:

NameTypeDescription
valueArray.<anychart.charts.Resource.ZoomLevel>Value to set.

Returns:

anychart.charts.Resource - Self instance for method chaining.