Skip to main content

stacked-bar

Stacked-bar

Stacked Area Chart reusable API module that allows us rendering a multi area and configurable chart.

Requires: module:d3-array,
Example

let stackedBar = stackedBar();

stackedBar
.width(containerWidth);

d3Selection.select('.css-selector')
.datum(dataset.data)
.call(stackedBar);

exports(_selection, _data) ⏏

This function creates the graph using the selection and data provided

Kind: Exported function

ParamTypeDescription
_selectionD3SelectionA d3 selection that represents the container(s) where the chart(s) will be rendered
_dataStackedBarDataThe data to attach and generate the chart

exports.animationDuration(_x) ⇒ duration | module

Gets or Sets the duration of the animation

Kind: static method of exports
Returns: duration | module - Current animation duration or Chart module to chain calls
Access: public

ParamTypeDefaultDescription
_xNumber1200Desired animation duration for the graph

exports.betweenBarsPadding(_x) ⇒ Number | module

Gets or Sets the padding of the stacked bar chart

Kind: static method of exports
Returns: Number | module - Current padding or Chart module to chain calls
Access: public

ParamTypeDescription
_xNumber= 0.1 Padding value to get/set

exports.colorMap([_x]) ⇒ object | module

Gets or Sets the colorMap of the chart

Kind: static method of exports
Returns: object | module - Current colorMap or Chart module to chain calls
Access: public

ParamTypeDefaultDescription
[_x]objectColor map

Example

stackedBar.colorMap({groupName: 'colorHex', groupName2: 'colorString'})

exports.colorSchema(_x) ⇒ Array.<String> | module

Gets or Sets the colorSchema of the chart

Kind: static method of exports
Returns: Array.<String> | module - Current colorSchema or Chart module to chain calls
Access: public

ParamTypeDescription
_xArray.<String>= colorSchemas.britecharts Desired colorSchema for the graph

exports.exportChart(filename, title) ⇒ Promise

Chart exported to png and a download action is fired

Kind: static method of exports
Returns: Promise - Promise that resolves if the chart image was loaded and downloaded successfully
Access: public

ParamTypeDescription
filenameStringFile title for the resulting picture
titleStringTitle to add at the top of the exported picture

exports.grid(_x) ⇒ String | module

Gets or Sets the grid mode

Kind: static method of exports
Returns: String | module - Current mode of the grid or Area Chart module to chain calls
Access: public

ParamTypeDescription
_xStringDesired mode for the grid ('vertical'

exports.hasPercentage(_x) ⇒ Boolean | module

Gets or Sets the hasPercentage status

Kind: static method of exports
Returns: Boolean | module - Is percentage used or Chart module to chain calls
Access: public

ParamTypeDescription
_xBooleanShould use percentage as value format

exports.height(_x) ⇒ Number | module

Gets or Sets the height of the chart

Kind: static method of exports
Returns: Number | module - Current height or Area Chart module to chain calls
Access: public

ParamTypeDescription
_xNumberDesired width for the graph

exports.hasReversedStacks(_x) ⇒ Boolean | module

Gets or Sets the hasReversedStacks property of the chart, reversing the order of stacks

Kind: static method of exports
Returns: Boolean | module - Current hasReversedStacks or Chart module to chain calls
Access: public

ParamTypeDescription
_xBoolean= false Desired hasReversedStacks flag

exports.isAnimated(_x) ⇒ Boolean | module

Gets or Sets the isAnimated property of the chart, making it to animate when render. By default this is 'false'

Kind: static method of exports
Returns: Boolean | module - Current isAnimated flag or Chart module
Access: public

ParamTypeDescription
_xBoolean= false Desired animation flag

exports.isHorizontal(_x) ⇒ Boolean | module

Gets or Sets the horizontal direction of the chart

Kind: static method of exports
Returns: Boolean | module - If it is horizontal or Bar Chart module to chain calls
Access: public

ParamTypeDescription
_xBoolean= false Desired horizontal direction for the graph

exports.isLoading(flag) ⇒ boolean | module

Gets or Sets the loading state of the chart

Kind: static method of exports
Returns: boolean | module - Current loading state flag or Chart module to chain calls
Access: public

ParamTypeDescription
flagbooleanDesired value for the loading state

exports.margin(_x) ⇒ Object | module

Gets or Sets the margin of the chart

Kind: static method of exports
Returns: Object | module - Current margin or Area Chart module to chain calls
Access: public

ParamTypeDescription
_xObjectMargin object to get/set

exports.nameLabel(_x) ⇒ Number | module

Deprecated

Gets or Sets the nameLabel of the chart

Kind: static method of exports
Returns: Number | module - Current nameLabel or Chart module to chain calls
Access: public

ParamTypeDescription
_xNumberDesired dateLabel for the graph

exports.numberFormat(_x) ⇒ String | module

Gets or Sets the numberFormat of the chart

Kind: static method of exports
Returns: String | module - Current numberFormat or Chart module to chain calls
Access: public

ParamTypeDescription
_xString= ',f' Desired numberFormat for the graph. See examples here

exports.on() ⇒ module

Exposes an 'on' method that acts as a bridge with the event dispatcher We are going to expose this events: customMouseOver, customMouseMove, customMouseOut, and customClick

Kind: static method of exports
Returns: module - Bar Chart
Access: public

exports.percentageAxisToMaxRatio(_x) ⇒ Number | module

Configurable extension of the x axis If your max point was 50% you might want to show x axis to 60%, pass 1.2

Kind: static method of exports
Returns: Number | module - Current ratio or Bar Chart module to chain calls
Access: public

ParamTypeDescription
_xNumberRatio to max data point to add to the x axis

exports.stackLabel(_x) ⇒ String | module

Deprecated

Gets or Sets the stackLabel of the chart

Kind: static method of exports
Returns: String | module - Current stackLabel or Chart module to chain calls
Access: public

ParamTypeDescription
_xStringDesired stackLabel for the graph

exports.tooltipThreshold([_x]) ⇒ Number | module

Gets or Sets the minimum width of the graph in order to show the tooltip NOTE: This could also depend on the aspect ratio

Kind: static method of exports
Returns: Number | module - Current tooltipThreshold or Area Chart module to chain calls
Access: public

ParamTypeDefaultDescription
[_x]Number480Minimum width of the graph

exports.valueLabel(_x) ⇒ Number | module

Deprecated

Gets or Sets the valueLabel of the chart

Kind: static method of exports
Returns: Number | module - Current valueLabel or Chart module to chain calls
Access: public

ParamTypeDescription
_xNumberDesired valueLabel for the graph

exports.valueLocale([_x]) ⇒ LocaleObject | module

Gets or Sets the locale which our formatting functions use. Check the d3-format docs for the required values.

Kind: static method of exports
Returns: LocaleObject | module - Current locale object or Chart module to chain calls
Access: public

ParamTypeDefaultDescription
[_x]LocaleObject_x Desired locale object format.

Example

stackedBarChart
.valueLocale({thousands: '.', grouping: [3], currency: ["$", ""], decimal: "."})

exports.width(_x) ⇒ Number | module

Gets or Sets the width of the chart

Kind: static method of exports
Returns: Number | module - Current width or Area Chart module to chain calls
Access: public

ParamTypeDescription
_xNumber= 960 Desired width for the graph

exports.xTicks(_x) ⇒ Number | module

Gets or Sets the number of ticks of the x axis on the chart

Kind: static method of exports
Returns: Number | module - Current xTicks or Chart module to chain calls
Access: public

ParamTypeDescription
_xNumber= 5 Desired horizontal ticks

exports.yAxisLabel(_x) ⇒ String | module

Gets or Sets the y-axis label of the chart

Kind: static method of exports
Returns: String | module - Current yAxisLabel or Chart module to chain calls
Access: public

ParamTypeDescription
_xStringDesired label string

Example

stackedBar.yAxisLabel('Ticket Sales')

exports.yAxisLabelOffset(_x) ⇒ Number | module

Gets or Sets the offset of the yAxisLabel of the chart. The method accepts both positive and negative values.

Kind: static method of exports
Returns: Number | module - Current yAxisLabelOffset or Chart module to chain calls
Access: public

ParamTypeDescription
_xNumber= -60 Desired offset for the label

Example

stackedBar.yAxisLabelOffset(-55)

exports.yTicks(_x) ⇒ Number | module

Gets or Sets the number of vertical ticks of the axis on the chart

Kind: static method of exports
Returns: Number | module - Current yTicks or Chart module to chain calls
Access: public

ParamTypeDescription
_xNumber= 5 Desired vertical ticks

exports~StackedBarData : Array.<Object>

Kind: inner typedef of exports
Properties

NameTypeDescription
nameStringName of the entry
stackStringStack of the entry
valueNumberValue of the entry

Example

[
{
name: "2011-01",
stack: "Direct",
value: 0
}
]