class anychart.charts.Pareto Improve this Doc
Extends: anychart.core.SeparateChart
Pareto chart class.
Learn more about Pareto Chart
Methods Overview
Specific settings | |
a11y() | Accessibility settings. |
annotations() | Creates annotations. |
getType() | Definition of the chart type. |
globalToLocal() | Converts the global coordinates to local coordinates. |
maxPointWidth() | Maximum point width settings. |
minPointLength() | Minimum point length settings. |
pointWidth() | Point width settings. |
toA11yTable() | Creates and returns the chart represented as an invisible HTML table. |
toHtmlTable() | Creates and returns a chart as HTML table. |
Axes and Scales | |
baseline() | Set the baseline by the Y-Scale value. |
getXAxesCount() | Returns X-axes count. |
getXScales() | Returns chart X scales. |
getYAxesCount() | Returns Y-axes count. |
getYScales() | Returns chart Y scales. |
lineMarker() | Line marker settings. |
rangeMarker() | Range marker settings. |
textMarker() | Text marker settings. |
xAxis() | X-axis settings. |
xGrid() | Grid settings by X-scale. |
xMinorGrid() | Minor grid settings by X-scale. |
xScale() | X-scale settings. |
yAxis() | Y-axis settings. |
yGrid() | Grid settings by Y-scale. |
yMinorGrid() | Minor grid settings by Y-scale. |
yScale() | Y-scale settings. |
Chart Coloring | |
dataArea() | Data area settings. |
hatchFillPalette() | Hatch fill palette settings. |
markerPalette() | Markers palette settings. |
palette() | Palette settings. |
Chart Controls | |
credits() | Credits settings |
label() | Label settings. |
legend() | Legend settings. |
title() | Title settings. |
xScroller() | Scroller settings. |
yScroller() | Y scroller settings. |
Coloring | |
background() | Background settings. |
selectRectangleMarqueeFill() | Select marquee fill settings. |
selectRectangleMarqueeStroke() | Stroke settings. |
Data | |
data() | Data settings. |
getStat() | Getter for a statistical value by the key. |
noData() | NoData settings. |
Events | |
listen() | Adds an event listener. |
listenOnce() | Adds a single time event listener |
unlisten() | Removes the listener |
unlistenByKey() | Removes the listener by the key. |
Export | |
exports() | Exports settings |
getJpgBase64String() | Returns JPG as base64 string. |
getPdfBase64String() | Returns PDF as base64 string. |
getPngBase64String() | Returns PNG as base64 string. |
getSvgBase64String() | Returns SVG as base64 string. |
saveAsCsv() | Saves chart data as a CSV file. |
saveAsJpg() | Saves the chart as JPEG image. |
saveAsJson() | Saves chart config as JSON document. |
saveAsPdf() | Saves the chart as PDF image. |
saveAsPng() | Saves the chart as PNG image. |
saveAsSvg() | Saves the chart as SVG image. |
saveAsXlsx() | Saves chart data as an Excel document. |
saveAsXml() | Saves chart config as XML document. |
shareAsJpg() | Shares a chart as a JPG file and returns a link to the shared image. |
shareAsPdf() | Shares a chart as a PDF file and returns a link to the shared image. |
shareAsPng() | Shares a chart as a PNG file and returns a link to the shared image. |
shareAsSvg() | Shares a chart as a SVG file and returns a link to the shared image. |
shareWithFacebook() | Opens Facebook sharing dialog. |
shareWithLinkedIn() | Opens LinkedIn sharing dialog. |
shareWithPinterest() | Opens Pinterest sharing dialog. |
shareWithTwitter() | Opens Twitter sharing dialog. |
toCsv() | Returns CSV string with the chart data. |
toSvg() | Returns SVG string. |
Interactivity | |
crosshair() | Crosshair settings. |
hovered() | Hovered state settings. |
normal() | Normal state settings. |
selected() | Selected state settings. |
startSelectRectangleMarquee() | Starts select marquee drawing. |
tooltip() | Tooltip settings. |
xZoom() | Zoom settings. |
yZoom() | Y zoom settings. |
Point Elements | |
labels() | Labels settings. |
maxLabels() | Maximum labels settings. |
minLabels() | Minimum labels settings. |
Size and Position | |
bottom() | Bottom bound settings. |
bounds() | Bounds settings. |
getPixelBounds() | Returns pixel bounds of the chart. |
getPlotBounds() | Returns data bounds of the chart. |
height() | Height setting. |
left() | Left bound setting. |
top() | Top bound settings. |
width() | Width setting. |
Specific Series Settings | |
addSeries() | Adds series to the chart. |
barGroupsPadding() | Settings for the space between bar groups. |
barsPadding() | Settings for the space between bars. |
defaultSeriesType() | Default series type. |
getSeries() | Returns series by id. |
getSeriesAt() | Returns series by index. |
getSeriesCount() | Returns series count. |
maxBubbleSize() | The maximum size for all bubbles on the charts. |
minBubbleSize() | The minimum size for all bubbles on the charts. |
removeAllSeries() | Removes all series from chart. |
removeSeries() | Removes one of series from chart by its id. |
removeSeriesAt() | Removes one of series from chart by its index. |
XML/JSON | |
toJson() | Returns chart configuration as JSON object or string. |
toXml() | Returns chart configuration as XML string or XMLNode. |
Miscellaneous | |
autoRedraw() | Redraw chart after changes or not. |
cancelMarquee() | Stops marquee action if any. |
container() | Chart container |
draw() | Chart drawing. |
fullScreen() | Fullscreen mode. |
id() | Chart id. |
inMarquee() | Gets marquee process running value. |
isFullScreenAvailable() | Whether the fullscreen mode available in the browser or not. |
isVertical() | Getter for the layout direction. |
Methods Description
a11y
Returns:
anychart.core.utils.ChartA11y - Accessibility settings object.var stateOfAccsessibility = chart.a11y();
Sets accessibility setting depending on parameter type:
- boolean - disable or enable accessibility.
- object - sets accessibility settings.
Params:
Name | Type | Description |
---|---|---|
settings | boolean | Object | Whether to enable accessibility or object with settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.addSeries
Params:
Name | Type | Description |
---|---|---|
var_args | anychart.data.View | anychart.data.Set | Array | Chart series data. |
Returns:
Array.<anychart.core.cartesian.series.Base> - Array of created series.annotations
Returns:
anychart.core.annotations.PlotController - The plot annotations.Params:
Name | Type | Description |
---|---|---|
annotationsList | Array | Annotations list to set. |
Returns:
anychart.charts.Pareto - Self instance for method chainingautoRedraw
Flag whether to automatically call chart.draw() on any changes or not.
Returns:
boolean - AutoRedraw flag.var autoRedraw = chart.autoRedraw();
Flag whether to automatically call chart.draw() on any changes or not.
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | true | Value to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
background
- null/boolean - disable or enable chart background.
- object - sets chart background settings.
- string - sets chart background color.
Params:
Name | Type | Description |
---|---|---|
settings | string | Object | null | boolean | Background settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.barGroupsPadding
Returns:
number - Bar groups padding.Try it:
See illustration at anychart.charts.Pareto#barsPadding.
Params:
Name | Type | Default | Description |
---|---|---|---|
padding | number | 0.8 | Value to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
barsPadding
Returns:
number - Bars padding.Params:
Name | Type | Default | Description |
---|---|---|---|
padding | number | 0.4 | Value to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.baseline
Returns:
number - The baseline value by the Y-Scale.var chart = anychart.pareto(); var baseline = chart.baseline();
The baseline is the line relative to which the series with the negative or positive value is drawn and painted over.
Params:
Name | Type | Description |
---|---|---|
value | number | Y-Scale value for the baseline. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
bottom
Returns:
number | string | undefined - Chart's bottom bound settings.var bottom = chart.bottom();
Params:
Name | Type | Description |
---|---|---|
bottom | number | string | null | Bottom bound for the chart. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
bounds
Returns:
anychart.core.utils.Bounds - Bounds of the element.var bounds = chart.bounds();
Params:
Name | Type | Description |
---|---|---|
bounds | anychart.utils.RectObj | anychart.math.Rect | anychart.core.utils.Bounds | Bounds of teh chart. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
x | number | string | null | X-coordinate. |
y | number | string | null | Y-coordinate. |
width | number | string | null | Width. |
height | number | string | null | Height. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
cancelMarquee
Returns:
anychart.charts.Pareto - Self instance for method chaining.container
Params:
Name | Type | Description |
---|---|---|
element | anychart.graphics.vector.Layer | anychart.graphics.vector.Stage | string | Element | The value to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
credits
Sets chart credits settings depending on parameter type:
- null/boolean - disable or enable chart credits.
- object - sets chart credits settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | true | Credits settings |
Returns:
anychart.charts.Pareto - Self instance for method chaining.crosshair
Returns:
anychart.core.ui.Crosshair - Crosshair settings.- null/boolean - disable or enable chart crosshair.
- object - sets chart crosshair settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Crosshair settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.data
Params:
Name | Type | Description |
---|---|---|
data | anychart.data.View | anychart.data.Set | anychart.data.DataSettings | Array | string | Value to set. |
csvSettings | anychart.enums.TextParsingMode | string | anychart.data.TextParsingSettings | If CSV string is passed, you can pass CSV parser settings here as a hash map. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
dataArea
The data area is drawn along the data bounds.
- boolean - disable or enable data area.
- object - sets data area settings.
Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | Data area settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.defaultSeriesType
Returns:
anychart.enums.CartesianSeriesType | string - Default series type.Params:
Name | Type | Description |
---|---|---|
type | anychart.enums.CartesianSeriesType | string | Default series type. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.draw
Params:
Name | Type | Description |
---|---|---|
async | boolean | Whether do draw asynchronously. If set to true, the chart will be drawn asynchronously. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
exports
Returns:
anychart.core.utils.Exports - Exports settings.var exports = chart.exports();
Params:
Name | Type | Description |
---|---|---|
settings | Object | Export settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
fullScreen
Returns:
boolean - Full screen state (enabled/disabled).var fullScreen = chart.fullScreen();
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | false | Enable/Disable fullscreen mode. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
getJpgBase64String
Params:
Name | Type | Description |
---|---|---|
onSuccessOrOptions | function(response:string) | Object | Function that is called when sharing is complete or object with options. |
onError | function(response:string) | Function that is called if sharing fails. |
width | number | Image width. |
height | number | Image height. |
quality | number | Image quality in ratio 0-1. |
forceTransparentWhite | boolean | Force transparent to white or not. |
Try it:
getPdfBase64String
Params:
Name | Type | Description |
---|---|---|
onSuccessOrOptions | function(response:string) | Object | Function that is called when sharing is complete or object with options. |
onError | function(response:string) | Function that is called if sharing fails. |
paperSizeOrWidth | number | string | Any paper format like 'a0', 'tabloid', 'b4', etc. |
landscapeOrWidth | number | boolean | Define, is landscape. |
x | number | Offset X. |
y | number | Offset Y. |
Try it:
getPixelBounds
Returns pixel bounds of the chart due to parent bounds and self bounds settings.
Returns:
anychart.math.Rect - Pixel bounds of the chart.Try it:
getPlotBounds
Note: Works only after anychart.charts.Pareto#draw is called.
Returns:
anychart.math.Rect - Data bounds of the chart.getPngBase64String
Params:
Name | Type | Description |
---|---|---|
onSuccessOrOptions | function(response:string) | Object | Function that is called when sharing is complete or object with options. |
onError | function(response:string) | Function that is called if sharing fails. |
width | number | Image width. |
height | number | Image height. |
quality | number | Image quality in ratio 0-1. |
Try it:
getSeries
Params:
Name | Type | Default | Description |
---|---|---|---|
id | number | string | index | Id of the series. |
Returns:
anychart.core.cartesian.series.Base - An instance of the class for method chaining.Try it:
getSeriesAt
Params:
Name | Type | Description |
---|---|---|
index | number | Index of the series. |
Returns:
anychart.core.cartesian.series.Base - An instance of the class for method chaining.Try it:
getSeriesCount
getStat
Params:
Name | Type | Description |
---|---|---|
key | anychart.enums.Statistics | string | Key. |
Returns:
* - Statistics value.Try it:
getSvgBase64String
Params:
Name | Type | Description |
---|---|---|
onSuccessOrOptions | function(response:string) | Object | Function that is called when sharing is complete or object with options. |
onError | function(response:string) | Function that is called if sharing fails. |
paperSizeOrWidth | string | number | Paper Size or width. |
landscapeOrHeight | boolean | string | Landscape or height. |
Try it:
getType
getXAxesCount
Returns:
number - Number of X-axes.getXScales
Returns:
Array - An array of all X scales (including axes, grids, and axis markers scales).getYAxesCount
Returns:
number - Number of Y-axes.getYScales
Returns:
Array - An array of all Y scales (including axes, grids, and axis markers scales).Try it:
globalToLocal
On image below, the red point is a starting coordinate point of the chart bounds. Local coordinates work only in area of the stage (container).
Params:
Name | Type | Description |
---|---|---|
xCoord | number | Global X coordinate. |
yCoord | number | Global Y coordinate. |
Returns:
Object.<string, number> - Object with XY coordinates.Try it:
hatchFillPalette
Returns:
anychart.palettes.HatchFills - Chart hatch fill palette.var hatchFillPalette = chart.hatchFillPalette();
Params:
Name | Type | Description |
---|---|---|
settings | Array.<anychart.graphics.vector.HatchFill.HatchFillType> | Object | anychart.palettes.HatchFills | Chart hatch fill palette settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
height
Returns:
number | string | undefined - Chart's height setting.var height = chart.height();
Params:
Name | Type | Default | Description |
---|---|---|---|
height | number | string | null | null | Height settings for the chart. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
hovered
Returns:
anychart.core.StateSettings - Hovered state settingsTry it:
Params:
Name | Type | Description |
---|---|---|
settings | Object | State settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
id
Params:
Name | Type | Description |
---|---|---|
id | string | Chart id. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
inMarquee
Returns:
boolean - Returns true if there is a marquee process running.isFullScreenAvailable
Returns:
boolean - isFullScreenAvailable state.Try it:
isVertical
Returns:
boolean - The flag of the series layout direction.var flag = chart.isVertical();
Params:
Name | Type | Default | Description |
---|---|---|---|
enabled | boolean | null | false | Whether to change the chart layout direction to vertical. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
label
Params:
Name | Type | Default | Description |
---|---|---|---|
index | string | number | 0 | Index of instance. |
Returns:
anychart.core.ui.Label - Label instance.Try it:
- null/boolean - disable or enable chart label.
- string - sets chart label text value.
- object - sets chart label settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | null | boolean | Object | string | false | Chart label instance to add by index 0. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart label.
- string - sets chart label text value.
- object - sets chart label settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | string | number | 0 | Label index. |
settings | null | boolean | Object | string | false | Chart label settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.labels
- null/boolean - disable or enable chart labels.
- object - sets chart labels settings.
Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Series data labels settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.left
Returns:
number | string | undefined - Chart's left bound setting.var left = chart.left();
Params:
Name | Type | Default | Description |
---|---|---|---|
value | number | string | null | null | Left bound setting for the chart. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
legend
- null/boolean - disable or enable chart legend.
- object - sets chart legend settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Legend settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.lineMarker
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart line marker index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.axisMarkers.Line - Line marker instance by index.Try it:
- null/boolean - disable or enable chart line marker.
- object - sets chart line marker settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart line marker settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart line marker by index.
- object - sets chart line marker settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart line marker index. |
settings | Object | boolean | null | Chart line marker settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.listen
Note: Notice that if the existing listener is one-off (added using listenOnce), it will cease to be such after calling the listen() method.
Params:
Name | Type | Default | Description |
---|---|---|---|
type | string | The event type id. | |
listener | function(e:Object) | 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 } | |
useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
listenerScope | Object | Object in whose scope to call the listener. |
Returns:
Object - Unique key for the listener.Try it:
listenOnce
If the event handler being added already exists, listenOnce will do nothing.
Note: In particular, if the handler is already registered using listen(), listenOnce() will not make it one-off. Similarly, if a one-off listener already exists, listenOnce will not change it (it wil remain one-off).
Params:
Name | Type | Default | Description |
---|---|---|---|
type | string | The event type id. | |
listener | function(e:Object) | Callback method. | |
useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
listenerScope | Object | Object in whose scope to call the listener. |
Returns:
Object - Unique key for the listener.Try it:
markerPalette
Returns:
anychart.palettes.Markers - Chart markers palette.var markerPalette = chart.markerPalette();
Params:
Name | Type | Description |
---|---|---|
settings | anychart.palettes.Markers | Object | Array.<(anychart.enums.MarkerType|string)> | Chart marker palette settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
maxBubbleSize
Returns:
number | string - The maximum size all of the bubbles.Params:
Name | Type | Description |
---|---|---|
size | number | string | Maximum size to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.maxLabels
Returns:
anychart.core.ui.LabelsFactory - Labels instance.Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Maximum labels settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.maxPointWidth
Returns:
string | number - The maximum point width pixel value.var maxPointWidth = chart.maxPointWidth();
Params:
Name | Type | Description |
---|---|---|
width | number | string | Point width pixel value. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
minBubbleSize
Returns:
number | string - The minimum size of the all bubbles.Params:
Name | Type | Description |
---|---|---|
size | number | string | Minimum size to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.minLabels
Returns:
anychart.core.ui.LabelsFactory - Labels instance.Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Minimum labels settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.minPointLength
Returns:
string | number - The minimum point length pixel value.var minPointLength = chart.minPointLength();
Params:
Name | Type | Description |
---|---|---|
length | number | string | Minimum point length pixel value. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
noData
Learn more about "No data" feature
Params:
Name | Type | Description |
---|---|---|
settings | Object | NoData settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
normal
Returns:
anychart.core.StateSettings - Normal state settings.Try it:
Params:
Name | Type | Description |
---|---|---|
settings | Object | State settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
palette
var palette = chart.palette();
Params:
Name | Type | Description |
---|---|---|
settings | anychart.palettes.RangeColors | anychart.palettes.DistinctColors | Object | Array.<string> | Chart colors palette settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.pointWidth
Returns:
string | number - The point width pixel value.var pointWidth = chart.pointWidth();
Params:
Name | Type | Description |
---|---|---|
width | number | string | Point width pixel value. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
rangeMarker
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart range marker index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.axisMarkers.Range - Range marker instance by index.Try it:
- null/boolean - disable or enable chart range marker.
- object - sets chart range marker settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart range marker settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart range marker by index.
- object - sets chart range marker settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart range marker index. |
settings | Object | boolean | null | Chart range marker settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.removeAllSeries
Returns:
anychart.charts.Pareto - Self instance for method chaining.removeSeries
Params:
Name | Type | Description |
---|---|---|
id | number | string | Series id. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.removeSeriesAt
Params:
Name | Type | Description |
---|---|---|
index | number | Series index. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.saveAsCsv
Params:
Name | Type | Description |
---|---|---|
chartDataExportMode | anychart.enums.ChartDataExportMode | string | Data export mode. |
csvSettings | Object.<string, (string|boolean|undefined|function(name:*, value:*))> | CSV settings object:
Formatters must be represented as one of:
|
filename | string | File name to save. |
Try it:
saveAsJpg
Params:
Name | Type | Description |
---|---|---|
width | number | Image width. |
height | number | Image height. |
quality | number | Image quality in ratio 0-1. |
forceTransparentWhite | boolean | Define, should we force transparent to white background. |
filename | string | File name to save. |
Try it:
saveAsJson
Params:
Name | Type | Description |
---|---|---|
filename | string | File name to save. |
Try it:
saveAsPdf
Params:
Name | Type | Description |
---|---|---|
paperSize | string | Any paper format like 'a0', 'tabloid', 'b4', etc. |
landscape | boolean | Define, is landscape. |
x | number | Offset X. |
y | number | Offset Y. |
filename | string | File name to save. |
Try it:
saveAsPng
Params:
Name | Type | Description |
---|---|---|
width | number | Image width. |
height | number | Image height. |
quality | number | Image quality in ratio 0-1. |
filename | string | File name to save. |
Try it:
saveAsSvg
Params:
Name | Type | Description |
---|---|---|
paperSize | string | Paper Size. |
landscape | boolean | Landscape. |
filename | string | File name to save. |
Try it:
Params:
Name | Type | Description |
---|---|---|
width | number | Image width. |
height | number | Image height. |
Try it:
saveAsXlsx
Params:
Name | Type | Description |
---|---|---|
chartDataExportMode | anychart.enums.ChartDataExportMode | string | Data export mode. |
filename | string | File name to save. |
exportOptions | Object.<string, (function(name:*, value:*))> | Export options:
Formatter must be represented as one of:
|
Try it:
saveAsXml
Params:
Name | Type | Description |
---|---|---|
filename | string | File name to save. |
Try it:
selectRectangleMarqueeFill
Returns:
anychart.graphics.vector.Fill - Select marquee fill.var selectRectangleMarqueeFill = chart.selectRectangleMarqueeFill();
Params:
Name | Type | Description |
---|---|---|
color | anychart.graphics.vector.Fill | Array.<(anychart.graphics.vector.GradientKey|string)> | Color as an object, an array or a string. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Params:
Name | Type | Description |
---|---|---|
color | string | Color as a string. |
opacity | number | Color opacity. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
Params:
Name | Type | Description |
---|---|---|
keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Gradient keys. |
angle | number | Gradient angle. |
mode | boolean | anychart.graphics.vector.Rect | Object | Gradient mode. |
opacity | number | Gradient opacity. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
Params:
Name | Type | Description |
---|---|---|
keys | Array.<(anychart.graphics.vector.GradientKey|string)> | Color-stop gradient keys. |
cx | number | X ratio of center radial gradient. |
cy | number | Y ratio of center radial gradient. |
mode | anychart.graphics.math.Rect | If defined then userSpaceOnUse mode, else objectBoundingBox. |
opacity | number | Opacity of the gradient. |
fx | number | X ratio of focal point. |
fy | number | Y ratio of focal point. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
Params:
Name | Type | Description |
---|---|---|
imageSettings | anychart.graphics.vector.Fill | Object with settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
selectRectangleMarqueeStroke
Returns:
anychart.graphics.vector.Stroke - Select marquee stroke.var selectRectangleMarqueeStroke = chart.selectRectangleMarqueeStroke();
Params:
Name | Type | Default | Description |
---|---|---|---|
color | anychart.graphics.vector.Stroke | anychart.graphics.vector.ColoredFill | string | null | Stroke settings. | |
thickness | number | 1 | Line thickness. |
dashpattern | string | Controls the pattern of dashes and gaps used to stroke paths. | |
lineJoin | string | anychart.graphics.vector.StrokeLineJoin | Line join style. | |
lineCap | string | anychart.graphics.vector.StrokeLineCap | Line cap style. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
selected
Returns:
anychart.core.StateSettings - Selected state settingsTry it:
Params:
Name | Type | Description |
---|---|---|
settings | Object | State settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
shareAsJpg
shareAsPdf
shareAsPng
shareAsSvg
shareWithFacebook
shareWithLinkedIn
shareWithPinterest
shareWithTwitter
startSelectRectangleMarquee
Params:
Name | Type | Description |
---|---|---|
repeat | boolean | Whether to start select marquee drawing. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
textMarker
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart text marker index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.axisMarkers.Text - Text marker instance by index.Try it:
- null/boolean - disable or enable chart text marker.
- object - sets chart text marker settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart text marker settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart text marker by index.
- object - sets chart text marker settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart text marker index. |
settings | Object | boolean | null | Chart text marker settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.title
- null/boolean - disable or enable chart title.
- string - sets chart title text value.
- object - sets chart title settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | null | boolean | Object | string | false | Chart title text or title instance for copy settings from. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.toA11yTable
Params:
Name | Type | Description |
---|---|---|
title | string | Title to set. |
asString | boolean | Defines output: HTML string if True, DOM element if False. |
Returns:
Element | string | null - HTML table instance with a11y style (invisible), HTML string or null if parsing chart to table fails.Try it:
toCsv
Params:
Name | Type | Description |
---|---|---|
chartDataExportMode | anychart.enums.ChartDataExportMode | string | Data export mode. |
csvSettings | Object.<string, (string|boolean|undefined|function(name:*, value:*)|Object)> | CSV settings. CSV settings object: rowsSeparator - string or undefined (default is '\n') columnsSeparator - string or undefined (default is ',') ignoreFirstRow - boolean or undefined (default is 'false') formats - 1) a function with two arguments such as the field name and value, that returns the formatted value or 2) the object with the key as the field name, and the value as a format function. (default is 'undefined'). |
Returns:
string - CSV string.Try it:
toHtmlTable
Params:
Name | Type | Description |
---|---|---|
title | string | Title to set. |
asString | boolean | Defines output: HTML string if True, DOM element if False. |
Returns:
Element | string | null - HTML table instance, HTML string or null if parsing chart to table fails.Try it:
toJson
Params:
Name | Type | Default | Description |
---|---|---|---|
stringify | boolean | false | Returns JSON as string. |
Returns:
Object | string - Chart configuration.toSvg
Params:
Name | Type | Description |
---|---|---|
paperSize | string | Paper Size. |
landscape | boolean | Landscape. |
Returns:
string - SVG content or empty string.Try it:
Params:
Name | Type | Description |
---|---|---|
width | number | Image width. |
height | number | Image height. |
Returns:
string - SVG content or empty string.Try it:
toXml
Params:
Name | Type | Default | Description |
---|---|---|---|
asXmlNode | boolean | false | Return XML as XMLNode. |
Returns:
string | Node - Chart configuration.tooltip
- null/boolean - disable or enable chart data tooltip.
- object - sets chart data tooltip settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | true | Tooltip settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.top
Returns:
number | string | undefined - Chart's top bound settings.var top = chart.top();
Params:
Name | Type | Description |
---|---|---|
top | number | string | null | Top bound for the chart. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
unlisten
Params:
Name | Type | Default | Description |
---|---|---|---|
type | string | The event type id. | |
listener | function(e:Object) | Callback method. | |
useCapture | boolean | false | Whether to fire in capture phase. Learn more about capturing https://javascript.info/bubbling-and-capturing |
listenerScope | Object | Object in whose scope to call the listener. |
Returns:
boolean - Whether any listener was removed.Try it:
unlistenByKey
Params:
Name | Type | Description |
---|---|---|
key | Object | The key returned by listen() or listenOnce(). |
Returns:
boolean - Whether any listener was removed.Try it:
width
Returns:
number | string | undefined - Chart's width setting.var width = chart.width();
Params:
Name | Type | Default | Description |
---|---|---|---|
width | number | string | null | null | Width settings for the chart. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
xAxis
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart axis index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.axes.Linear - Axis instance by index.Try it:
- null/boolean - disable or enable chart X-axis.
- object - sets chart X-axis settings.
Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Chart axis settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart X-axis by index.
- object - sets chart X-axis settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart axis index. |
settings | Object | boolean | null | Chart axis settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.xGrid
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart grid index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.grids.Linear - Grid instance by index.Try it:
- null/boolean - disable or enable chart grid.
- object - sets chart grid settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart grid by index.
- object - sets chart grid settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart grid index. |
settings | Object | boolean | null | false | Chart grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.xMinorGrid
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart minor grid index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.grids.Linear - Minor grid instance by index.- null/boolean - disable or enable chart minor grid.
- object - sets chart minor grid settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart minor grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart minor grid by index.
- object - sets chart minor grid settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart minor grid index. |
settings | Object | boolean | null | false | Chart minor grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.xScale
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | anychart.enums.ScaleTypes | string | anychart.scales.Base | anychart.scales.Ordinal | X-scale to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
xScroller
Returns:
anychart.core.ui.ChartScroller - Scroller settings.- null/boolean - disable or enable chart scroller.
- object - sets chart scroller settings.
Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Chart scroller settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.xZoom
Returns:
anychart.core.utils.OrdinalZoom - Zoom settings.Params:
Name | Type | Description |
---|---|---|
settings | number | boolean | null | Object | Value to set. If you will pass null, true, false or number less than 1, then value will be converted in 1. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.yAxis
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart axis index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.axes.Linear - Axis instance by index.Try it:
Sets chart Y-axis settings depending on parameter type:
- null/boolean - disable or enable chart Y-axis.
- object - sets chart Y-axis settings.
Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Chart axis settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart Y-axis by index.
- object - sets chart Y-axis settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart axis index. |
settings | Object | boolean | null | Chart axis settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.yGrid
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart grid index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.grids.Linear - Grid instance by index.Try it:
- null/boolean - disable or enable chart grid.
- object - sets chart grid settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart grid by index.
- object - sets chart grid settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart grid index. |
settings | Object | boolean | null | false | Chart grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.yMinorGrid
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart minor grid index. If not set - creates a new instance and adds it to the end of the array. |
Returns:
anychart.core.grids.Linear - Minor grid instance by index.Try it:
- null/boolean - disable or enable chart minor grid.
- object - sets chart minor grid settings.
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | boolean | null | false | Chart minor grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.- null/boolean - disable or enable chart minor grid by index.
- object - sets chart minor grid settings by index.
Params:
Name | Type | Default | Description |
---|---|---|---|
index | number | 0 | Chart minor grid index. |
settings | Object | boolean | null | false | Chart minor grid settings to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.yScale
Returns:
anychart.scales.Base - Default chart scale value.Try it:
Params:
Name | Type | Default | Description |
---|---|---|---|
settings | Object | anychart.enums.ScaleTypes | string | anychart.scales.Base | anychart.scales.Linear | Y-scale to set. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.Try it:
yScroller
Returns:
anychart.core.ui.ChartScroller - Scroller settings.- null/boolean - disable or enable Y scroller.
- object - sets Y scroller settings.
Params:
Name | Type | Description |
---|---|---|
settings | Object | boolean | null | Chart Y scroller settings. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.yZoom
Returns:
anychart.core.utils.OrdinalZoom - Zoom settings.Params:
Name | Type | Description |
---|---|---|
settings | number | boolean | null | Object | Zoom settings to set. If you pass null, true, false or a number less than 1, then the value is converted to 1. |
Returns:
anychart.charts.Pareto - Self instance for method chaining.