Angular Charts: API Reference
This page documents the AG Charts API. You can find more details about getting started with AG Charts in the Getting Started section. You can also explore the API and see in real-time how different options affect charts using the API Explorer.
General Configuration
Configuration common to all charts.
chart: {
data: object[];
container?: HTMLElement;
autoSize?: boolean; // default: true
width?: number;
height?: number;
tooltip?: Tooltip;
padding?: Padding;
background?: Background;
title?: Title;
subtitle?: Subtitle;
legend?: Legend;
navigator?: Navigator;
}data *object[] | The data to render the chart from. If this is not specified, it must be set on individual series instead. | |
container | The element to place the rendered chart into. Important: make sure to read the autoSize config description for information on how the container element affects the chart size (by default). | |
autoSizeboolean | By default, the chart will resize automatically to fill the container element. Set this to false to disable this behaviour. If either the width or height are set, auto-sizing will be disabled unless this is explicitly set to true.Important: if this config is set to true, make sure to give the chart's container element an explicit size, otherwise you will run into a chicken and egg situation where the container expects to size itself according to the content and the chart expects to size itself according to the container.Default: true | |
widthnumber | The width of the chart in pixels. Has no effect if autoSize is set to true. | |
heightnumber | The height of the chart in pixels. Has no effect if autoSize is set to true. | |
tooltip | Global configuration that applies to all tooltips in the chart. See tooltip for more details. | |
padding | Configuration for the padding shown around the chart. See padding for more details. | |
background | Configuration for the background shown behind the chart. See background for more details. | |
title | Configuration for the title shown at the top of the chart. See title for more details. | |
subtitle | Configuration for the subtitle shown beneath the chart title. Note: a subtitle will only be shown if a title is also present. See subtitle for more details. | |
legend | Configuration for the chart legend. See legend for more details. | |
navigator | Configuration for the chart navigator. This config is only supported by cartesian charts. See navigator for more details. |
tooltip
Global configuration that applies to all tooltips in the chart.
chart: {
...
tooltip: {
enabled?: boolean; // default: true
tracking?: boolean; // default: true
class?: string;
delay?: number; // default: 0
}
}enabledboolean | Set to false to disable tooltips for all series in the chart. Default: true | |
trackingboolean | If true, for series with markers the tooltip will be shown to the closest marker. Default: true | |
classstring | A class name to be added to the tooltip element of the chart. | |
delaynumber | The time interval (in milliseconds) after which the tooltip is shown. Default: 0 |
padding
Configuration for the padding shown around the chart.
chart: {
...
padding: {
top?: number; // default: 20
right?: number; // default: 20
bottom?: number; // default: 20
left?: number; // default: 20
}
}topnumber | The number of pixels of padding at the top of the chart area. Default: 20 | |
rightnumber | The number of pixels of padding at the right of the chart area. Default: 20 | |
bottomnumber | The number of pixels of padding at the bottom of the chart area. Default: 20 | |
leftnumber | The number of pixels of padding at the left of the chart area. Default: 20 |
background
Configuration for the background shown behind the chart.
chart: {
...
background: {
fill?: string; // default: '#FFFFFF'
visible?: boolean; // default: true
}
}fillstring | Colour of the chart background. Default: '#FFFFFF' | |
visibleboolean | Whether or not the background should be visible. Default: true |
title
Configuration for the title shown at the top of the chart.
chart: {
...
title: {
enabled?: boolean; // default: true
text?: string; // default: 'Title'
color?: string; // default: '#000000'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 18
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}enabledboolean | Whether or not the title should be shown. Default: true | |
textstring | The text to show in the title. Default: 'Title' | |
colorstring | The colour to use for the title. Default: '#000000' | |
fontStylestring | The font style to use for the title. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the title. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the title. Default: 18 | |
fontFamilystring | The font family to use for the title. Default: 'Verdana, sans-serif' |
subtitle
Configuration for the subtitle shown beneath the chart title. Note: a subtitle will only be shown if a title is also present.
chart: {
...
subtitle: {
enabled?: boolean; // default: true
text?: string; // default: 'Subtitle'
color?: string; // default: '#000000'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 14
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}enabledboolean | Whether or not the subtitle should be shown. Default: true | |
textstring | The text to show in the subtitle. Default: 'Subtitle' | |
colorstring | The colour to use for the subtitle. Default: '#000000' | |
fontStylestring | The font style to use for the subtitle. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the subtitle. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the subtitle. Default: 14 | |
fontFamilystring | The font family to use for the subtitle. Default: 'Verdana, sans-serif' |
legend
Configuration for the chart legend.
chart: {
...
legend: {
enabled?: boolean; // default: true
position?: 'top' | 'right' | 'bottom' | 'left'; // default: 'right'
spacing?: number; // default: 20
item?: Item;
}
}enabledboolean | Whether or not to show the legend. Default: true | |
positionstring | Where the legend should show in relation to the chart. Default: 'right'Options: 'top', 'right', 'bottom', 'left' | |
spacingnumber | The spacing in pixels to use outside the legend. Default: 20 | |
item | Configuration for the legend items that consist of a marker and a label. See item for more details. |
item
Configuration for the legend items that consist of a marker and a label.
chart: {
...
legend: {
...
item: {
paddingX?: number; // default: 16
paddingY?: number; // default: 8
marker?: Marker;
label?: Label;
}
}
}paddingXnumber | The horizontal spacing in pixels to use between legend items. Default: 16 | |
paddingYnumber | The vertical spacing in pixels to use between legend items. Default: 8 | |
marker | Configuration for the legend markers. See marker for more details. | |
label | Configuration for the legend labels. See label for more details. |
marker
Configuration for the legend markers.
chart: {
...
legend: {
...
item: {
...
marker: {
padding?: number; // default: 8
shape?: string;
size?: number; // default: 15
strokeWidth?: number; // default: 1
}
}
}
}paddingnumber | The padding in pixels between a legend marker and the corresponding label. Default: 8 | |
shapestring | If set, overrides the marker shape from the series and the legend will show the specified marker shape instead. If not set, will use a marker shape matching the shape from the series, or fall back to 'square' if there is none.Options: 'circle', 'cross', 'diamond', 'plus', 'square', 'triangle' | |
sizenumber | The size in pixels of the markers in the legend. Default: 15 | |
strokeWidthnumber | The width in pixels of the stroke for markers in the legend. Default: 1 |
label
Configuration for the legend labels.
chart: {
...
legend: {
...
item: {
...
label: {
color?: string; // default: 'black'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
formatter?: Function;
}
}
}
}colorstring | The colour of the text. Default: 'black' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 12 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' | |
formatterFunction | Function used to render legend labels. Where id is a series ID, itemId is component ID within a series, such as a field name or an item index. |
navigator
Configuration for the chart navigator. This config is only supported by cartesian charts.
chart: {
...
navigator: {
enabled?: boolean; // default: false
height?: number; // default: 30
margin?: number; // default: 10
min?: number; // default: 0
max?: number; // default: 1
mask?: Mask;
minHandle?: MinHandle;
maxHandle?: MaxHandle;
}
}enabledboolean | Whether or not to show the navigator. Default: false | |
heightnumber | The height of the navigator. Default: 30 | |
marginnumber | The distance between the navigator and the bottom axis. Default: 10 | |
minnumber | The start of the visible range in the [0, 1] interval.Default: 0 | |
maxnumber | The end of the visible range in the [0, 1] interval.Default: 1 | |
mask | Configuration for the navigator's visible range mask. See mask for more details. | |
minHandle | Configuration for the navigator's left handle. See minHandle for more details. | |
maxHandle | Configuration for the navigator's right handle. See maxHandle for more details. |
mask
Configuration for the navigator's visible range mask.
chart: {
...
navigator: {
...
mask: {
fill?: string; // default: '#999999'
stroke?: string; // default: '#999999'
strokeWidth?: number; // default: 1
fillOpacity?: number; // default: 0.2
}
}
}fillstring | The fill colour used by the mask. Default: '#999999' | |
strokestring | The stroke colour used by the mask. Default: '#999999' | |
strokeWidthnumber | The stroke width used by the mask. Default: 1 | |
fillOpacitynumber | The opacity of the mask's fill in the [0, 1] interval, where 0 is effectively no masking.Default: 0.2 |
minHandle
Configuration for the navigator's left handle.
chart: {
...
navigator: {
...
minHandle: {
fill?: string; // default: '#f2f2f2'
stroke?: string; // default: '#999999'
strokeWidth?: number; // default: 1
width?: number; // default: 8
height?: number; // default: 16
gripLineLength?: number; // default: 8
gripLineGap?: number; // default: 2
}
}
}fillstring | The fill colour used by the handle. Default: '#f2f2f2' | |
strokestring | The stroke colour used by the handle. Default: '#999999' | |
strokeWidthnumber | The stroke width used by the handle. Default: 1 | |
widthnumber | The width of the handle. Default: 8 | |
heightnumber | The height of the handle. Default: 16 | |
gripLineLengthnumber | The length of the handle's grip lines. Default: 8 | |
gripLineGapnumber | The distance between the handle's grip lines. Default: 2 |
maxHandle
Configuration for the navigator's right handle.
chart: {
...
navigator: {
...
maxHandle: {
fill?: string; // default: '#f2f2f2'
stroke?: string; // default: '#999999'
strokeWidth?: number; // default: 1
width?: number; // default: 8
height?: number; // default: 16
gripLineLength?: number; // default: 8
gripLineGap?: number; // default: 2
}
}
}fillstring | The fill colour used by the handle. Default: '#f2f2f2' | |
strokestring | The stroke colour used by the handle. Default: '#999999' | |
strokeWidthnumber | The stroke width used by the handle. Default: 1 | |
widthnumber | The width of the handle. Default: 8 | |
heightnumber | The height of the handle. Default: 16 | |
gripLineLengthnumber | The length of the handle's grip lines. Default: 8 | |
gripLineGapnumber | The distance between the handle's grip lines. Default: 2 |
Axis Configuration
Configuration for axes in cartesian charts.
axis: {
type?: string;
position?: string;
thickness?: number; // default: 0
nice?: boolean; // default: true
base?: number; // default: 10
min?: number;
max?: number;
title?: Title;
line?: Line;
tick?: Tick;
label?: Label;
gridStyle?: GridStyle;
}typestring | The type of the axis. Options: 'category', 'number', 'log', 'time' | |
positionstring | The position on the chart where the axis should be rendered. Options: 'top', 'right', 'bottom', 'left' | |
thicknessnumber | If set to a non-zero value, the axis will have the specified thickness regardless of label size. Default: 0 | |
niceboolean | If 'true', the range will be rounded up to ensure nice equal spacing between the ticks. Applies to continuous axes only ('number', 'time'). Default: true | |
basenumber | The base of the logarithm used by the 'log' axis. Default: 10 | |
minnumber | User override for the automatically determinted min value (based on series data). Only applied to "number" axes. | |
maxnumber | User override for the automatically determinted max value (based on series data). Only applied to "number" axes. | |
title | Configuration for the title shown next to the axis. See title for more details. | |
line | Configuration for the axis line. See line for more details. | |
tick | Configuration for the axis ticks. See tick for more details. | |
label | Configuration for the axis labels, shown next to the ticks. See label for more details. | |
gridStyle | Configuration of the lines used to form the grid in the chart area. See gridStyle for more details. |
title
Configuration for the title shown next to the axis.
axis: {
...
title: {
enabled?: boolean; // default: true
text?: string; // default: 'Axis Title'
color?: string; // default: '#000000'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 14
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}enabledboolean | Whether or not the axis title should be shown. Default: true | |
textstring | The text to show in the axis title. Default: 'Axis Title' | |
colorstring | The colour to use for the axis title. Default: '#000000' | |
fontStylestring | The font style to use for the axis title. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the axis title. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the axis title. Default: 14 | |
fontFamilystring | The font family to use for the axis title. Default: 'Verdana, sans-serif' |
line
Configuration for the axis line.
axis: {
...
line: {
width?: number; // default: 1
color?: string; // default: 'rgba(195, 195, 195, 1)'
}
}widthnumber | The width in pixels of the axis line. Default: 1 | |
colorstring | The colour of the axis line. Default: 'rgba(195, 195, 195, 1)' |
tick
Configuration for the axis ticks.
axis: {
...
tick: {
width?: number; // default: 1
size?: number; // default: 6
color?: string; // default: 'rgba(195, 195, 195, 1)'
count?: number; // default: 10
}
}widthnumber | The width in pixels of the axis ticks (and corresponding grid line). Default: 1 | |
sizenumber | The length in pixels of the axis ticks. Default: 6 | |
colorstring | The colour of the axis ticks. Default: 'rgba(195, 195, 195, 1)' | |
countnumber | A hint of how many ticks to use across an axis. The axis is not guaranteed to use exactly this number of ticks, but will try to use a number of ticks that is close to the number given. If the axis is a time axis, the following intervals from the agCharts.time namespace can be used: millisecond, second, minute, hour, day, sunday, monday, tuesday, wednesday, thursday, friday, saturday, month, year, utcMinute, utcHour, utcDay, utcMonth, utcYear. And derived intervals can be created by using the every method on the default ones. For example, agCharts.time.month.every(2) will return a derived interval that will make the axis place ticks for every other month.Default: 10 |
label
Configuration for the axis labels, shown next to the ticks.
axis: {
...
label: {
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
color?: string; // default: '#000000'
padding?: number; // default: 5
rotation?: number; // default: 0
format?: string;
formatter?: Function;
}
}fontStylestring | The font style to use for the labels. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the labels. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the labels. Default: 12 | |
fontFamilystring | The font family to use for the labels. Default: 'Verdana, sans-serif' | |
colorstring | The colour to use for the labels. Default: '#000000' | |
paddingnumber | Padding in pixels between the axis label and the tick. Default: 5 | |
rotationnumber | The rotation of the axis labels in degrees. Note: for integrated charts the default is 335 degrees, unless the axis shows grouped or default categories (indexes). The first row of labels in a grouped category axis is rotated perpendicular to the axis line. Default: 0 | |
formatstring | Format string used when rendering labels for time axes. For more information on the structure of the string, click here. | |
formatterFunction | Function used to render axis labels. If value is a number, fractionDigits will also be provided, which indicates the number of fractional digits used in the step between ticks; for example, a tick step of 0.0005 would have fractionDigits set to 4. |
gridStyle
Configuration of the lines used to form the grid in the chart area.
axis: {
...
gridStyle: {
stroke?: string; // default: 'rgba(195, 195, 195, 1)'
lineDash?: number[]; // default: [4, 2]
}
}strokestring | The colour of the grid line. Default: 'rgba(195, 195, 195, 1)' | |
lineDashnumber[] | Defines how the gridlines are rendered. Every number in the array specifies the length in pixels of alternating dashes and gaps. For example, [6, 3] means dashes with a length of 6 pixels with gaps between of 3 pixels.Default: [4, 2] |
Bar/Column Series Configuration
Configuration for bar/column series.
bar: {
xKey: string;
xName?: string;
yKeys: string[];
yNames?: string[];
data: object[];
visible?: boolean; // default: true
showInLegend?: boolean; // default: true
cursor?: string; // default: 'default'
tooltip?: Tooltip;
grouped?: boolean; // default: false
normalizedTo?: number;
fills?: string[]; // default: ['#f3622d', '#fba71b', '#57b757', '#41a9c9', '#4258c9', '#9a42c8', '#c84164', '#888888']
fillOpacity?: number; // default: 1
strokes?: string[]; // default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f']
strokeOpacity?: number; // default: 1
strokeWidth?: number; // default: 1
highlightStyle?: HighlightStyle;
shadow?: Shadow;
lineDash?: number[]; // default: []
lineDashOffset?: number; // default: 0
label?: Label;
formatter?: Function;
listeners?: Listeners;
}xKey *string | The key to use to retrieve x-values from the data. | |
xNamestring | A human-readable description of the x-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
yKeys *string[] | The keys to use to retrieve y-values from the data. | |
yNamesstring[] | Human-readable descriptions of the y-values. If supplied, a corresponding yName will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
data *object[] | The data to use when rendering the series. If this is not supplied, data must be set on the chart instead. | |
visibleboolean | Whether or not to display the series. Default: true | |
showInLegendboolean | Whether or not to include the series in the legend. Default: true | |
cursorstring | The cursor to use for hovered bars/columns. This config is identical to the CSS cursor property.Default: 'default' | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
groupedboolean | Whether to show different y-values as separate bars (grouped) or not (stacked). Default: false | |
normalizedTonumber | The number to normalise the bar stacks to. Has no effect when grouped is true. For example, if normalizedTo is set to 100, the bar stacks will all be scaled proportionally so that each of their totals is 100. | |
fillsstring[] | The colours to cycle through for the fills of the bars. Default: ['#f3622d', '#fba71b', '#57b757', '#41a9c9', '#4258c9', '#9a42c8', '#c84164', '#888888'] | |
fillOpacitynumber | The opacity of the fill for the bars. Default: 1 | |
strokesstring[] | The colours to cycle through for the strokes of the bars. Default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f'] | |
strokeOpacitynumber | The opacity of the stroke for the bars. Default: 1 | |
strokeWidthnumber | The width in pixels of the stroke for the bars. Default: 1 | |
highlightStyle | Configuration for the highlighting used when the bars are hovered over. See highlightStyle for more details. | |
shadow | Configuration for the shadow used behind the chart series. See shadow for more details. | |
lineDashnumber[] | Defines how the bar/column strokes are rendered. Every number in the array specifies the length in pixels of alternating dashes and gaps. For example, [6, 3] means dashes with a length of 6 pixels with gaps between of 3 pixels.Default: [] | |
lineDashOffsetnumber | The initial offset of the dashed line in pixels. Default: 0 | |
label | Configuration for the labels shown on bars. See label for more details. | |
formatterFunction | Function used to return formatting for individual bars/columns, based on the given parameters. If the current bar/column is highlighted, the highlighted property will be set to true; make sure to check this if you want to differentiate between the highlighted and un-highlighted states. | |
listeners | A map of event names to event listeners. See listeners for more details. |
tooltip
Series-specific tooltip configuration.
bar: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
highlightStyle
Configuration for the highlighting used when the bars are hovered over.
bar: {
...
highlightStyle: {
fill?: string; // default: 'yellow'
stroke?: string;
}
}fillstring | The fill colour of the bars when hovered over. Use undefined for no highlight.Default: 'yellow' | |
strokestring | The colour of the stroke around the bars when hovered over. Use undefined for no highlight. |
shadow
Configuration for the shadow used behind the chart series.
bar: {
...
shadow: {
enabled?: boolean; // default: true
color?: string; // default: 'rgba(0, 0, 0, 0.5)'
xOffset?: number; // default: 0
yOffset?: number; // default: 0
blur?: number; // default: 5
}
}enabledboolean | Whether or not the shadow is visible. Default: true | |
colorstring | The colour of the shadow. Default: 'rgba(0, 0, 0, 0.5)' | |
xOffsetnumber | The horizontal offset in pixels for the shadow. Default: 0 | |
yOffsetnumber | The vertical offset in pixels for the shadow. Default: 0 | |
blurnumber | The radius of the shadow's blur, given in pixels. Default: 5 |
label
Configuration for the labels shown on bars.
bar: {
...
label: {
enabled?: boolean; // default: true
placement?: 'inside' | 'outside'; // default: 'inside'
color?: string; // default: 'rgba(70, 70, 70, 1)'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
formatter?: Function;
}
}enabledboolean | Whether or not the labels should be shown. Default: true | |
placementstring | Where to render series labels relative to the segments. Default: 'inside'Options: 'inside', 'outside' | |
colorstring | The colour to use for the labels. Default: 'rgba(70, 70, 70, 1)' | |
fontStylestring | The font style to use for the labels. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the labels. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the labels. Default: 12 | |
fontFamilystring | The font family to use for the labels. Default: 'Verdana, sans-serif' | |
formatterFunction | Function used to turn 'yKey' values into text to be displayed by a label. Be default the values are simply stringified. |
listeners
A map of event names to event listeners.
bar: {
...
listeners: {
nodeClick?: Function;
}
}nodeClickFunction | The listener to call when a bar/column node is clicked. |
Line Series Configuration
Configuration for line series.
line: {
xKey: string;
xName?: string;
yKey: string;
yName?: string;
data: object[];
visible?: boolean; // default: true
showInLegend?: boolean; // default: true
cursor?: string; // default: 'default'
tooltip?: Tooltip;
title?: string;
stroke?: string; // default: '#aa4520'
strokeOpacity?: number; // default: 1
strokeWidth?: number; // default: 1
marker?: Marker;
label?: Label;
highlightStyle?: HighlightStyle;
lineDash?: number[]; // default: []
lineDashOffset?: number; // default: 0
listeners?: Listeners;
}xKey *string | The key to use to retrieve x-values from the data. | |
xNamestring | A human-readable description of the x-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
yKey *string | The key to use to retrieve y-values from the data. | |
yNamestring | A human-readable description of the y-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
data *object[] | The data to use when rendering the series. If this is not supplied, data must be set on the chart instead. | |
visibleboolean | Whether or not to display the series. Default: true | |
showInLegendboolean | Whether or not to include the series in the legend. Default: true | |
cursorstring | The cursor to use for hovered line markers. This config is identical to the CSS cursor property.Default: 'default' | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
titlestring | The title to use for the series. Defaults to yName if it exists, or yKey if not. | |
strokestring | The colour of the stroke for the lines. Default: '#aa4520' | |
strokeOpacitynumber | The opacity of the stroke for the lines. Default: 1 | |
strokeWidthnumber | The width in pixels of the stroke for the lines. Default: 1 | |
marker | Configuration for the markers used in the series. See marker for more details. | |
label | Configuration for the labels shown on top of data points. See label for more details. | |
highlightStyle | Configuration for the highlighting used when the markers are hovered over. See highlightStyle for more details. | |
lineDashnumber[] | Defines how the line stroke is rendered. Every number in the array specifies the length in pixels of alternating dashes and gaps. For example, [6, 3] means dashes with a length of 6 pixels with gaps between of 3 pixels.Default: [] | |
lineDashOffsetnumber | The initial offset of the dashed line in pixels. Default: 0 | |
listeners | A map of event names to event listeners. See listeners for more details. |
tooltip
Series-specific tooltip configuration.
line: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
marker
Configuration for the markers used in the series.
line: {
...
marker: {
enabled?: boolean; // default: true
shape?: string | Marker; // default: 'circle'
size?: number; // default: 8
maxSize?: number; // default: 30
fill?: string;
stroke?: string;
strokeWidth?: number;
formatter?: Function;
}
}enabledboolean | Whether or not to show markers. Default: true | |
shapestring | Marker | The shape to use for the markers. You can also supply a custom marker by providing a Marker subclass.Default: 'circle'Options: 'circle', 'cross', 'diamond', 'plus', 'square', 'triangle' | |
sizenumber | The size in pixels of the markers. Default: 8 | |
maxSizenumber | For series where the size of the marker is determined by the data, this determines the largest size a marker can be in pixels. Default: 30 | |
fillstring | The colour to use for marker fills. If this is not specified, the markers will take their fill from the series. | |
strokestring | The colour to use for marker strokes. If this is not specified, the markers will take their stroke from the series. | |
strokeWidthnumber | The width in pixels of the marker stroke. If this is not specified, the markers will take their stroke width from the series. | |
formatterFunction | Function used to return formatting for individual markers, based on the supplied information. If the current marker is highlighted, the highlighted property will be set to true; make sure to check this if you want to differentiate between the highlighted and un-highlighted states. |
label
Configuration for the labels shown on top of data points.
line: {
...
label: {
enabled?: boolean; // default: true
color?: string; // default: 'rgba(70, 70, 70, 1)'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
formatter?: Function;
}
}enabledboolean | Whether or not the labels should be shown. Default: true | |
colorstring | The colour to use for the labels. Default: 'rgba(70, 70, 70, 1)' | |
fontStylestring | The font style to use for the labels. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the labels. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the labels. Default: 12 | |
fontFamilystring | The font family to use for the labels. Default: 'Verdana, sans-serif' | |
formatterFunction | Function used to turn 'yKey' values into text to be displayed by a label. Be default the values are simply stringified. |
highlightStyle
Configuration for the highlighting used when the markers are hovered over.
line: {
...
highlightStyle: {
fill?: string; // default: 'yellow'
stroke?: string;
}
}fillstring | The fill colour of the markers when hovered over. Use undefined for no highlight.Default: 'yellow' | |
strokestring | The colour of the stroke around the markers when hovered over. Use undefined for no highlight. |
listeners
A map of event names to event listeners.
line: {
...
listeners: {
nodeClick?: Function;
}
}nodeClickFunction | The listener to call when a line series node (marker) is clicked. |
Area Series Configuration
Configuration for area series.
area: {
xKey: string;
xName?: string;
yKeys: string[];
yNames?: string[];
data: object[];
visible?: boolean; // default: true
showInLegend?: boolean; // default: true
cursor?: string; // default: 'default'
tooltip?: Tooltip;
normalizedTo?: number;
fills?: string[]; // default: ['#f3622d', '#fba71b', '#57b757', '#41a9c9', '#4258c9', '#9a42c8', '#c84164', '#888888']
fillOpacity?: number; // default: 1
strokes?: string[]; // default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f']
strokeOpacity?: number; // default: 1
strokeWidth?: number; // default: 1
marker?: Marker;
label?: Label;
highlightStyle?: HighlightStyle;
lineDash?: number[]; // default: []
lineDashOffset?: number; // default: 0
shadow?: Shadow;
}xKey *string | The key to use to retrieve x-values from the data. | |
xNamestring | A human-readable description of the x-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
yKeys *string[] | The keys to use to retrieve y-values from the data. | |
yNamesstring[] | Human-readable descriptions of the y-values. If supplied, a corresponding yName will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
data *object[] | The data to use when rendering the series. If this is not supplied, data must be set on the chart instead. | |
visibleboolean | Whether or not to display the series. Default: true | |
showInLegendboolean | Whether or not to include the series in the legend. Default: true | |
cursorstring | The cursor to use for hovered area markers. This config is identical to the CSS cursor property.Default: 'default' | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
normalizedTonumber | The number to normalise the area stacks to. For example, if normalizedTo is set to 100, the stacks will all be scaled proportionally so that their total height is always 100. | |
fillsstring[] | The colours to cycle through for the fills of the areas. Default: ['#f3622d', '#fba71b', '#57b757', '#41a9c9', '#4258c9', '#9a42c8', '#c84164', '#888888'] | |
fillOpacitynumber | The opacity of the fill for the areas. Default: 1 | |
strokesstring[] | The colours to cycle through for the strokes of the areas. Default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f'] | |
strokeOpacitynumber | The opacity of the stroke for the areas. Default: 1 | |
strokeWidthnumber | The width in pixels of the stroke for the areas. Default: 1 | |
marker | Configuration for the markers used in the series. See marker for more details. | |
label | Configuration for the labels shown on top of data points. See label for more details. | |
highlightStyle | Configuration for the highlighting used when the markers are hovered over. See highlightStyle for more details. | |
lineDashnumber[] | Defines how the area strokes are rendered. Every number in the array specifies the length in pixels of alternating dashes and gaps. For example, [6, 3] means dashes with a length of 6 pixels with gaps between of 3 pixels.Default: [] | |
lineDashOffsetnumber | The initial offset of the dashed line in pixels. Default: 0 | |
shadow | Configuration for the shadow used behind the chart series. See shadow for more details. |
tooltip
Series-specific tooltip configuration.
area: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
marker
Configuration for the markers used in the series.
area: {
...
marker: {
enabled?: boolean; // default: false
shape?: string | Marker; // default: 'circle'
size?: number; // default: 8
maxSize?: number; // default: 30
fill?: string;
stroke?: string;
strokeWidth?: number;
formatter?: Function;
}
}enabledboolean | Whether or not to show markers. Default: false | |
shapestring | Marker | The shape to use for the markers. You can also supply a custom marker by providing a Marker subclass.Default: 'circle'Options: 'circle', 'cross', 'diamond', 'plus', 'square', 'triangle' | |
sizenumber | The size in pixels of the markers. Default: 8 | |
maxSizenumber | For series where the size of the marker is determined by the data, this determines the largest size a marker can be in pixels. Default: 30 | |
fillstring | The colour to use for marker fills. If this is not specified, the markers will take their fill from the series. | |
strokestring | The colour to use for marker strokes. If this is not specified, the markers will take their stroke from the series. | |
strokeWidthnumber | The width in pixels of the marker stroke. If this is not specified, the markers will take their stroke width from the series. | |
formatterFunction | Function used to return formatting for individual markers, based on the supplied information. If the current marker is highlighted, the highlighted property will be set to true; make sure to check this if you want to differentiate between the highlighted and un-highlighted states. |
label
Configuration for the labels shown on top of data points.
area: {
...
label: {
enabled?: boolean; // default: true
color?: string; // default: 'rgba(70, 70, 70, 1)'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
formatter?: Function;
}
}enabledboolean | Whether or not the labels should be shown. Default: true | |
colorstring | The colour to use for the labels. Default: 'rgba(70, 70, 70, 1)' | |
fontStylestring | The font style to use for the labels. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the labels. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the labels. Default: 12 | |
fontFamilystring | The font family to use for the labels. Default: 'Verdana, sans-serif' | |
formatterFunction | Function used to turn 'yKey' values into text to be displayed by a label. Be default the values are simply stringified. |
highlightStyle
Configuration for the highlighting used when the markers are hovered over.
area: {
...
highlightStyle: {
fill?: string; // default: 'yellow'
stroke?: string;
}
}fillstring | The fill colour of the markers when hovered over. Use undefined for no highlight.Default: 'yellow' | |
strokestring | The colour of the stroke around the markers when hovered over. Use undefined for no highlight. |
shadow
Configuration for the shadow used behind the chart series.
area: {
...
shadow: {
enabled?: boolean; // default: true
color?: string; // default: 'rgba(0, 0, 0, 0.5)'
xOffset?: number; // default: 0
yOffset?: number; // default: 0
blur?: number; // default: 5
}
}enabledboolean | Whether or not the shadow is visible. Default: true | |
colorstring | The colour of the shadow. Default: 'rgba(0, 0, 0, 0.5)' | |
xOffsetnumber | The horizontal offset in pixels for the shadow. Default: 0 | |
yOffsetnumber | The vertical offset in pixels for the shadow. Default: 0 | |
blurnumber | The radius of the shadow's blur, given in pixels. Default: 5 |
Scatter/Bubble Series Configuration
Configuration for scatter/bubble series.
scatter: {
xKey: string;
xName?: string;
yKey: string;
yName?: string;
sizeKey?: string;
sizeName?: string;
labelKey?: string;
labelName?: string;
data: object[];
visible?: boolean; // default: true
showInLegend?: boolean; // default: true
cursor?: string; // default: 'default'
tooltip?: Tooltip;
title?: string;
fill?: string; // default: '#f3622d'
fillOpacity?: number; // default: 1
stroke?: string; // default: '#aa4520'
strokeOpacity?: number; // default: 1
strokeWidth?: number; // default: 1
marker?: Marker;
label?: Label;
highlightStyle?: HighlightStyle;
listeners?: Listeners;
}xKey *string | The key to use to retrieve x-values from the data. | |
xNamestring | A human-readable description of the x-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
yKey *string | The key to use to retrieve y-values from the data. | |
yNamestring | A human-readable description of the y-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
sizeKeystring | The key to use to retrieve size values from the data, used to control the size of the markers in bubble charts. | |
sizeNamestring | A human-readable description of the size values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
labelKeystring | The key to use to retrieve values from the data to use as labels for the markers. | |
labelNamestring | A human-readable description of the label values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
data *object[] | The data to use when rendering the series. If this is not supplied, data must be set on the chart instead. | |
visibleboolean | Whether or not to display the series. Default: true | |
showInLegendboolean | Whether or not to include the series in the legend. Default: true | |
cursorstring | The cursor to use for hovered scatter markers. This config is identical to the CSS cursor property.Default: 'default' | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
titlestring | The title to use for the series. Defaults to yName if it exists, or yKey if not. | |
fillstring | The colour of the fill for the markers. Default: '#f3622d' | |
fillOpacitynumber | The opacity of the fill for the markers. Default: 1 | |
strokestring | The colour of the stroke for the markers. Default: '#aa4520' | |
strokeOpacitynumber | The opacity of the stroke for the markers. Default: 1 | |
strokeWidthnumber | The width in pixels of the stroke for the markers. Default: 1 | |
marker | Configuration for the markers used in the series. See marker for more details. | |
label | Configuration for the labels shown on top of data points. See label for more details. | |
highlightStyle | Configuration for the highlighting used when the markers are hovered over. See highlightStyle for more details. | |
listeners | A map of event names to event listeners. See listeners for more details. |
tooltip
Series-specific tooltip configuration.
scatter: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
marker
Configuration for the markers used in the series.
scatter: {
...
marker: {
enabled?: boolean; // default: true
shape?: string | Marker; // default: 'circle'
size?: number; // default: 8
maxSize?: number; // default: 30
fill?: string;
stroke?: string;
strokeWidth?: number;
formatter?: Function;
}
}enabledboolean | Whether or not to show markers. Default: true | |
shapestring | Marker | The shape to use for the markers. You can also supply a custom marker by providing a Marker subclass.Default: 'circle'Options: 'circle', 'cross', 'diamond', 'plus', 'square', 'triangle' | |
sizenumber | The size in pixels of the markers. Default: 8 | |
maxSizenumber | For series where the size of the marker is determined by the data, this determines the largest size a marker can be in pixels. Default: 30 | |
fillstring | The colour to use for marker fills. If this is not specified, the markers will take their fill from the series. | |
strokestring | The colour to use for marker strokes. If this is not specified, the markers will take their stroke from the series. | |
strokeWidthnumber | The width in pixels of the marker stroke. If this is not specified, the markers will take their stroke width from the series. | |
formatterFunction | Function used to return formatting for individual markers, based on the supplied information. If the current marker is highlighted, the highlighted property will be set to true; make sure to check this if you want to differentiate between the highlighted and un-highlighted states. |
label
Configuration for the labels shown on top of data points.
scatter: {
...
label: {
enabled?: boolean; // default: true
color?: string; // default: 'rgba(70, 70, 70, 1)'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}enabledboolean | Whether or not the labels should be shown. Note: unlike other series where a label is shown for every data point, a scatter series label is only shown if it satisfies the following constraints: it doesn't overlap any markers, it doesn't overlap other labels. Default: true | |
colorstring | The colour to use for the labels. Default: 'rgba(70, 70, 70, 1)' | |
fontStylestring | The font style to use for the labels. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the labels. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the labels. Default: 12 | |
fontFamilystring | The font family to use for the labels. Default: 'Verdana, sans-serif' |
highlightStyle
Configuration for the highlighting used when the markers are hovered over.
scatter: {
...
highlightStyle: {
fill?: string; // default: 'yellow'
stroke?: string;
}
}fillstring | The fill colour of the markers when hovered over. Use undefined for no highlight.Default: 'yellow' | |
strokestring | The colour of the stroke around the markers when hovered over. Use undefined for no highlight. |
listeners
A map of event names to event listeners.
scatter: {
...
listeners: {
nodeClick?: Function;
}
}nodeClickFunction | The listener to call when a scatter series node (marker) is clicked. |
Pie/Doughnut Series Configuration
Configuration for pie/doughnut series.
pie: {
angleKey: string;
angleName?: string;
labelKey: string;
labelName?: string;
radiusKey?: string;
radiusName?: string;
data: object[];
visible?: boolean; // default: true
showInLegend?: boolean; // default: true
cursor?: string; // default: 'default'
tooltip?: Tooltip;
lineDash?: number[]; // default: []
lineDashOffset?: number; // default: 0
rotation?: number; // default: 0
innerRadiusOffset?: number; // default: 0
outerRadiusOffset?: number; // default: 0
title?: Title;
fills?: string[]; // default: ['#f3622d', '#fba71b', '#57b757', '#41a9c9', '#4258c9', '#9a42c8', '#c84164', '#888888']
fillOpacity?: number; // default: 1
strokes?: string[]; // default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f']
strokeOpacity?: number; // default: 1
strokeWidth?: number; // default: 1
highlightStyle?: HighlightStyle;
label?: Label;
callout?: Callout;
shadow?: Shadow;
listeners?: Listeners;
}angleKey *string | The key to use to retrieve angle values from the data. | |
angleNamestring | A human-readable description of the angle values. If supplied, this will be passed to the tooltip renderer as one of the parameters. | |
labelKey *string | The key to use to retrieve label values from the data. | |
labelNamestring | A human-readable description of the label values. If supplied, this will be passed to the tooltip renderer as one of the parameters. | |
radiusKeystring | The key to use to retrieve radius values from the data. | |
radiusNamestring | A human-readable description of the radius values. If supplied, this will be passed to the tooltip renderer as one of the parameters. | |
data *object[] | The data to use when rendering the series. If this is not supplied, data must be set on the chart instead. | |
visibleboolean | Whether or not to display the series. Default: true | |
showInLegendboolean | Whether or not to include the series in the legend. Default: true | |
cursorstring | The cursor to use for hovered pie slices. This config is identical to the CSS cursor property.Default: 'default' | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
lineDashnumber[] | Defines how the pie sector strokes are rendered. Every number in the array specifies the length in pixels of alternating dashes and gaps. For example, [6, 3] means dashes with a length of 6 pixels with gaps between of 3 pixels.Default: [] | |
lineDashOffsetnumber | The initial offset of the dashed line in pixels. Default: 0 | |
rotationnumber | The rotation of the pie series in degrees. Default: 0 | |
innerRadiusOffsetnumber | The offset in pixels of the inner radius of the series. Used to construct doughnut charts. If this is not given, or a value of zero is given, a pie chart will be rendered. Default: 0 | |
outerRadiusOffsetnumber | The offset in pixels of the outer radius of the series. Used to construct doughnut charts. Default: 0 | |
title | Configuration for the series title. See title for more details. | |
fillsstring[] | The colours to cycle through for the fills of the segments. Default: ['#f3622d', '#fba71b', '#57b757', '#41a9c9', '#4258c9', '#9a42c8', '#c84164', '#888888'] | |
fillOpacitynumber | The opacity of the fill for the segments. Default: 1 | |
strokesstring[] | The colours to cycle through for the strokes of the segments. Default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f'] | |
strokeOpacitynumber | The opacity of the stroke for the segments. Default: 1 | |
strokeWidthnumber | The width in pixels of the stroke for the segments. Default: 1 | |
highlightStyle | Configuration for the highlighting used when the segments are hovered over. See highlightStyle for more details. | |
label | Configuration for the labels used for the segments. See label for more details. | |
callout | Configuration for the callouts used with the labels for the segments. See callout for more details. | |
shadow | Configuration for the shadow used behind the chart series. See shadow for more details. | |
listeners | A map of event names to event listeners. See listeners for more details. |
tooltip
Series-specific tooltip configuration.
pie: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
title
Configuration for the series title.
pie: {
...
title: {
enabled?: boolean; // default: true
text?: string;
color?: string; // default: '#000000'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 10
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}enabledboolean | Whether or not the title should be shown. Default: true | |
textstring | The text to show in the title. | |
colorstring | The colour to use for the title. Default: '#000000' | |
fontStylestring | The font style to use for the title. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the title. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the title. Default: 10 | |
fontFamilystring | The font family to use for the title. Default: 'Verdana, sans-serif' |
highlightStyle
Configuration for the highlighting used when the segments are hovered over.
pie: {
...
highlightStyle: {
fill?: string; // default: 'yellow'
stroke?: string;
}
}fillstring | The fill colour of the segments when hovered over. Use undefined for no highlight.Default: 'yellow' | |
strokestring | The colour of the stroke around the segments when hovered over. Use undefined for no highlight. |
label
Configuration for the labels used for the segments.
pie: {
...
label: {
enabled?: boolean; // default: true
color?: string; // default: '#000000'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'normal'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
offset?: number; // default: 3
minAngle?: number; // default: 20
formatter?: Function;
}
}enabledboolean | Whether or not the labels should be shown. Default: true | |
colorstring | The colour to use for the labels. Default: '#000000' | |
fontStylestring | The font style to use for the labels. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the labels. Default: 'normal'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the labels. Default: 12 | |
fontFamilystring | The font family to use for the labels. Default: 'Verdana, sans-serif' | |
offsetnumber | Distance in pixels between the callout line and the label text. Default: 3 | |
minAnglenumber | Minimum angle in degrees required for a segment to show a label. Default: 20 | |
formatterFunction | Function used to turn 'labelKey' values into text to be displayed next to each pie sector. Be default the values are simply stringified. |
callout
Configuration for the callouts used with the labels for the segments.
pie: {
...
callout: {
colors?: string[]; // default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f']
strokeWidth?: number; // default: 1
length?: number; // default: 10
}
}colorsstring[] | The colours to cycle through for the strokes of the callouts. Default: ['#aa4520', '#b07513', '#3d803d', '#2d768d', '#2e3e8d', '#6c2e8c', '#8c2d46', '#5f5f5f'] | |
strokeWidthnumber | The width in pixels of the stroke for callout lines. Default: 1 | |
lengthnumber | The length in pixels of the callout lines. Default: 10 |
shadow
Configuration for the shadow used behind the chart series.
pie: {
...
shadow: {
enabled?: boolean; // default: true
color?: string; // default: 'rgba(0, 0, 0, 0.5)'
xOffset?: number; // default: 0
yOffset?: number; // default: 0
blur?: number; // default: 5
}
}enabledboolean | Whether or not the shadow is visible. Default: true | |
colorstring | The colour of the shadow. Default: 'rgba(0, 0, 0, 0.5)' | |
xOffsetnumber | The horizontal offset in pixels for the shadow. Default: 0 | |
yOffsetnumber | The vertical offset in pixels for the shadow. Default: 0 | |
blurnumber | The radius of the shadow's blur, given in pixels. Default: 5 |
listeners
A map of event names to event listeners.
pie: {
...
listeners: {
nodeClick?: Function;
}
}nodeClickFunction | The listener to call when a pie slice is clicked. |
Treemap Series Configuration
Configuration for the treemap series.
treemap: {
title?: Title;
subtitle?: Subtitle;
labels?: Labels;
labelKey?: string; // default: 'label'
sizeKey?: string; // default: 'size'
colorKey?: string; // default: 'color'
colorDomain?: number[]; // default: '[-5, 5]'
colorRange?: string[]; // default: '['#cb4b3f', '#6acb64']'
colorParents?: boolean; // default: false
tooltip?: Tooltip;
nodePadding?: number; // default: 2
gradient?: boolean; // default: true
cursor?: string; // default: 'default'
}title | The label configuration for the top-level parent tiles. See title for more details. | |
subtitle | The label configuration for the children of the top-level parent tiles. See subtitle for more details. | |
labels | Configuration for the tile labels. See labels for more details. | |
labelKeystring | The name of the node key containing the label. Default: 'label' | |
sizeKeystring | The name of the node key containing the size value. Default: 'size' | |
colorKeystring | The name of the node key containing the color value. This value (along with colorDomain and colorRange configs) will be used to determine the tile color.Default: 'color' | |
colorDomainnumber[] | The domain the 'colorKey' values belong to. The domain can contain more than two stops, for example [-5, 0, -5]. In that case the 'colorRange' should also use a matching number of colors.Default: '[-5, 5]' | |
colorRangestring[] | The color range to interpolate the numeric colorDomain into. For example, if the colorDomain is [-5, 5] and colorRange is ['red', 'green'], a colorKey value of -5 will be assigned the 'red' color, 5 - 'green' color and 0 a blend of 'red' and 'green'.Default: '['#cb4b3f', '#6acb64']' | |
colorParentsboolean | Whether or not to assign colors to non-leaf nodes based on 'colorKey'. Default: false | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
nodePaddingnumber | The amount Default: 2 | |
gradientboolean | Whether or not to use gradients for treemap tiles. Default: true | |
cursorstring | The cursor to use for hovered treemap tiles. This config is identical to the CSS cursor property.Default: 'default' |
title
The label configuration for the top-level parent tiles.
treemap: {
...
title: {
color?: string; // default: 'white'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
padding?: number; // default: 15
}
}colorstring | The colour of the text. Default: 'white' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 12 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' | |
paddingnumber | The amount of the tile's vertical space to reserve for the label. Default: 15 |
subtitle
The label configuration for the children of the top-level parent tiles.
treemap: {
...
subtitle: {
color?: string; // default: 'white'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 9
fontFamily?: string; // default: 'Verdana, sans-serif'
padding?: number; // default: 13
}
}colorstring | The colour of the text. Default: 'white' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 9 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' | |
paddingnumber | The amount of the tile's vertical space to reserve for the label. Default: 13 |
labels
Configuration for the tile labels.
treemap: {
...
labels: {
large?: Large;
medium?: Medium;
small?: Small;
color?: Color;
}
}large | The label configuration for the large leaf tiles. See large for more details. | |
medium | The label configuration for the medium-sized leaf tiles. See medium for more details. | |
small | The label configuration for the small leaf tiles. See small for more details. | |
color | The configuration for the labels showing the value of the 'colorKey'. See color for more details. |
large
The label configuration for the large leaf tiles.
treemap: {
...
labels: {
...
large: {
color?: string; // default: 'white'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 18
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}
}colorstring | The colour of the text. Default: 'white' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 18 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' |
medium
The label configuration for the medium-sized leaf tiles.
treemap: {
...
labels: {
...
medium: {
color?: string; // default: 'white'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 14
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}
}colorstring | The colour of the text. Default: 'white' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 14 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' |
small
The label configuration for the small leaf tiles.
treemap: {
...
labels: {
...
small: {
color?: string; // default: 'white'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 10
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}
}colorstring | The colour of the text. Default: 'white' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 10 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' |
color
The configuration for the labels showing the value of the 'colorKey'.
treemap: {
...
labels: {
...
color: {
color?: string; // default: 'white'
fontStyle?: 'normal' | 'italic' | 'oblique'; // default: 'normal'
fontWeight?: 'normal' | 'bold' | 'bolder' | 'lighter' | '100' | '200' | '300' | '400' | '500' | '600' | '700' | '800' | '900'; // default: 'bold'
fontSize?: number; // default: 12
fontFamily?: string; // default: 'Verdana, sans-serif'
}
}
}colorstring | The colour of the text. Default: 'white' | |
fontStylestring | The font style to use for the legend. Default: 'normal'Options: 'normal', 'italic', 'oblique' | |
fontWeightstring | The font weight to use for the legend. Default: 'bold'Options: 'normal', 'bold', 'bolder', 'lighter', '100', '200', '300', '400', '500', '600', '700', '800', '900' | |
fontSizenumber | The font size in pixels to use for the legend. Default: 12 | |
fontFamilystring | The font family to use for the legend. Default: 'Verdana, sans-serif' |
tooltip
Series-specific tooltip configuration.
treemap: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
Histogram Series Configuration
Configuration for histogram series.
histogram: {
data: object[];
visible?: boolean; // default: true
showInLegend?: boolean; // default: true
cursor?: string; // default: 'default'
tooltip?: Tooltip;
xKey: string;
xName?: string;
yKey?: string;
yName?: string;
binCount?: number; // default: 10
bins?: number[][];
aggregation?: string; // default: 'sum'
areaPlot?: boolean; // default: 'false'
lineDash?: number[]; // default: []
lineDashOffset?: number; // default: 0
highlightStyle?: HighlightStyle;
fill?: string; // default: '#f3622d'
fillOpacity?: number; // default: 1
stroke?: string; // default: '#aa4520'
strokeOpacity?: number; // default: 1
strokeWidth?: number; // default: 1
listeners?: Listeners;
}data *object[] | The data to use when rendering the series. If this is not supplied, data must be set on the chart instead. | |
visibleboolean | Whether or not to display the series. Default: true | |
showInLegendboolean | Whether or not to include the series in the legend. Default: true | |
cursorstring | The cursor to use for hovered histogram bars. This config is identical to the CSS cursor property.Default: 'default' | |
tooltip | Series-specific tooltip configuration. See tooltip for more details. | |
xKey *string | The key to use to retrieve x-values from the data. | |
xNamestring | A human-readable description of the x-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
yKeystring | The key to use to retrieve y-values from the data. | |
yNamestring | A human-readable description of the y-values. If supplied, this will be shown in the default tooltip and passed to the tooltip renderer as one of the parameters. | |
binCountnumber | The number of bins to try to split the x axis into. Clashes with the bins setting.Default: 10 | |
binsnumber[][] | Set the bins explicitly. The bins need not be of equal width. Clashes with the binCount setting. | |
aggregationstring | Dictates how the bins are aggregated. If set to 'sum', the value shown for the bins will be the total of the yKey values. If set to 'mean', it will display the average yKey value of the bin Default: 'sum'Options: 'sum', 'mean' | |
areaPlotboolean | For variable width bins, if true the histogram will represent the aggregated yKey values using the area of the bar. Otherwise, the height of the var represents the value as per a normal bar chart. This is useful for keeping an undistorted curve displayed when using variable-width binsDefault: 'false' | |
lineDashnumber[] | Defines how the column strokes are rendered. Every number in the array specifies the length in pixels of alternating dashes and gaps. For example, [6, 3] means dashes with a length of 6 pixels with gaps between of 3 pixels.Default: [] | |
lineDashOffsetnumber | The initial offset of the dashed line in pixels. Default: 0 | |
highlightStyle | Configuration for the highlighting used when the bars are hovered over. See highlightStyle for more details. | |
fillstring | The colour of the fill for the histogram bars. Default: '#f3622d' | |
fillOpacitynumber | The opacity of the fill for the histogram bars. Default: 1 | |
strokestring | The colour of the stroke for the histogram bars. Default: '#aa4520' | |
strokeOpacitynumber | The opacity of the stroke for the histogram bars. Default: 1 | |
strokeWidthnumber | The width in pixels of the stroke for the histogram bars. Default: 1 | |
listeners | A map of event names to event listeners. See listeners for more details. |
tooltip
Series-specific tooltip configuration.
histogram: {
...
tooltip: {
enabled?: boolean; // default: true
renderer?: Function;
}
}enabledboolean | Whether or not to show tooltips when the series are hovered over. Default: true | |
rendererFunction | Function used to create the content for tooltips. |
highlightStyle
Configuration for the highlighting used when the bars are hovered over.
histogram: {
...
highlightStyle: {
fill?: string; // default: 'yellow'
stroke?: string;
}
}fillstring | The fill colour of the bars when hovered over. Use undefined for no highlight.Default: 'yellow' | |
strokestring | The colour of the stroke around the bars when hovered over. Use undefined for no highlight. |
listeners
A map of event names to event listeners.
histogram: {
...
listeners: {
nodeClick?: Function;
}
}nodeClickFunction | The listener to call when a histogram bar is clicked. |