diff --git a/src/components/AxisLinear.tsx b/src/components/AxisLinear.tsx index 75e62d9c..3175cad2 100644 --- a/src/components/AxisLinear.tsx +++ b/src/components/AxisLinear.tsx @@ -47,8 +47,8 @@ export default function AxisLinearComp(axis: Axis) { return anyAxis.outerScale.domain() } - const resolvedHeight = isOuter ? height : gridDimensions.gridHeight - const resolvedWidth = isOuter ? width : gridDimensions.gridWidth + const resolvedHeight = isOuter ? height : gridDimensions.height + const resolvedWidth = isOuter ? width : gridDimensions.width const [lineFrom, lineTo] = axis.position === 'left' @@ -71,6 +71,42 @@ export default function AxisLinearComp(axis: Axis) { { x: rangeEnd, y: resolvedHeight }, ] + const ticks = getTicks().map(tick => { + const px = getTickPx(scale, tick) + + const [from, to, gridTo] = + axis.position === 'left' + ? [ + { x: 0, y: px }, + { x: -8, y: px }, + { x: resolvedWidth, y: px }, + ] + : axis.position === 'right' + ? [ + { x: resolvedWidth, y: px }, + { x: resolvedWidth + 8, y: px }, + { x: 0, y: px }, + ] + : axis.position === 'top' + ? [ + { x: px, y: 0 }, + { x: px, y: -8 }, + { x: px, y: resolvedHeight }, + ] + : [ + { x: px, y: resolvedHeight }, + { x: px, y: resolvedHeight + 8 }, + { x: px, y: 0 }, + ] + + return { + value: tick, + from, + to, + gridTo, + } + }) + return ( (axis: Axis) { style={{ transform: isOuter ? undefined - : translate(gridDimensions.gridX, gridDimensions.gridY), + : translate(gridDimensions.left, gridDimensions.top), }} > (axis: Axis) { }), }} > - - {getTicks().map((tick, i) => { - const px = getTickPx(scale, tick) - - const [tickFrom, tickTo, gridTo] = - axis.position === 'left' - ? [ - { x: 0, y: px }, - { x: -8, y: px }, - { x: resolvedWidth, y: px }, - ] - : axis.position === 'right' - ? [ - { x: resolvedWidth, y: px }, - { x: resolvedWidth + 8, y: px }, - { x: 0, y: px }, - ] - : axis.position === 'top' - ? [ - { x: px, y: 0 }, - { x: px, y: -8 }, - { x: px, y: resolvedHeight }, - ] - : [ - { x: px, y: resolvedHeight }, - { x: px, y: resolvedHeight + 8 }, - { x: px, y: 0 }, - ] - - let { x: tickLabelX, y: tickLabelY } = tickTo - - if (axis.position === 'top') { - tickLabelY -= 5 - } else if (axis.position === 'bottom') { - tickLabelY += 5 - } else if (axis.position === 'left') { - tickLabelX -= 5 - } else if (axis.position === 'right') { - tickLabelX += 5 - } - - return ( - - {(axis.showGrid ?? true) && !isOuter ? ( - - ) : null} - {!isOuter ? ( - - ) : null} - - {(axis as AxisLinear).formatters.scale(tick as number)} - - - ) - })} + + + {ticks.map((tick, i) => { + let { x: tickLabelX, y: tickLabelY } = tick.to + + if (axis.position === 'top') { + tickLabelY -= 5 + } else if (axis.position === 'bottom') { + tickLabelY += 5 + } else if (axis.position === 'left') { + tickLabelX -= 5 + } else if (axis.position === 'right') { + tickLabelX += 5 + } + + return ( + + {!isOuter ? ( + + ) : null} + + {(axis as AxisLinear).formatters.scale( + tick.value as number + )} + + + ) + })} + + + {ticks.map((tick, i) => { + return ( + + {(axis.showGrid ?? true) && !isOuter ? ( + + ) : null} + + ) + })} + ) diff --git a/src/components/AxisLinear.useMeasure.ts b/src/components/AxisLinear.useMeasure.ts index 8d46f616..23426195 100644 --- a/src/components/AxisLinear.useMeasure.ts +++ b/src/components/AxisLinear.useMeasure.ts @@ -1,7 +1,7 @@ import React, { MutableRefObject } from 'react' import useIsomorphicLayoutEffect from '../hooks/useIsomorphicLayoutEffect' -import { Axis, GridDimensions, Position } from '../types' +import { Axis, AxisDimension, GridDimensions, Position } from '../types' import useChartContext from '../utils/chartContext' const getElBox = (el: Element) => { @@ -46,8 +46,8 @@ export default function useMeasure({ } let gridSize = !axis.isVertical - ? gridDimensions.gridWidth - : gridDimensions.gridHeight + ? gridDimensions.width + : gridDimensions.height const staticLabelDims = Array.from( elRef.current.querySelectorAll('.Axis-Group.outer .tickLabel') @@ -92,8 +92,8 @@ export default function useMeasure({ elRef, axis.isVertical, axis.minTickPaddingForRotation, - gridDimensions.gridWidth, - gridDimensions.gridHeight, + gridDimensions.width, + gridDimensions.height, setShowRotated, ]) @@ -115,103 +115,52 @@ export default function useMeasure({ return } - const newDimensions = { + const newDimensions: AxisDimension = { width: 0, height: 0, - top: 0, - bottom: 0, - left: 0, - right: 0, + paddingTop: 0, + paddingBottom: 0, + paddingLeft: 0, + paddingRight: 0, } const currentEl = elRef.current - const [innerDims] = ['inner'].map(inOrOut => { - const domainEl = currentEl.querySelector(`.Axis-Group.${inOrOut} .domain`) + const axisEl = currentEl.querySelector(`.Axis-Group.inner .domainAndTicks`) + const domainEl = currentEl.querySelector(`.Axis-Group.inner .domain`) - if (!domainEl) { - return - } - - const domainDims = getElBox(domainEl) - - const measureDims = Array.from( - currentEl.querySelectorAll(`.Axis-Group.${inOrOut} .tickLabel`) - ).map(el => getElBox(el)) - - if (!measureDims.length) { - return - } - - // Determine the largest labels on the axis - let widestLabel = measureDims[0] - let tallestLabel = measureDims[0] - - measureDims.forEach(d => { - if (d.width > 0 && d.width > widestLabel.width) { - widestLabel = d - } - - if (d.height > 0 && d.height > tallestLabel.height) { - tallestLabel = d - } - }) + if (!axisEl || !domainEl) { + return + } - return { domainDims, measureDims, widestLabel, tallestLabel } - }) + const axisDims = getElBox(axisEl) + const domainDims = getElBox(domainEl) - if (!innerDims) { + if (!axisDims || !domainDims) { return } // Axis overflow measurements if (!axis.isVertical) { - if (innerDims.measureDims.length) { - const leftMostLabelDim = innerDims.measureDims.reduce((d, labelDim) => - labelDim.left < d.left ? labelDim : d - ) - const rightMostLabelDim = innerDims.measureDims.reduce((d, labelDim) => - labelDim.right > d.right ? labelDim : d - ) - - newDimensions.left = Math.round( - Math.max(0, innerDims.domainDims.left - leftMostLabelDim?.left) - ) - - newDimensions.right = Math.round( - Math.max(0, rightMostLabelDim?.right - innerDims.domainDims.right) - ) - } + newDimensions.paddingLeft = Math.round( + Math.max(0, domainDims.left - axisDims?.left) + ) - newDimensions.height = Math.round( - // Math.max(axis.tickSizeInner, axis.tickSizeOuter) + - 8 + - axis.minTickPaddingForRotation + - (innerDims.tallestLabel?.height ?? 0) + newDimensions.paddingRight = Math.round( + Math.max(0, axisDims?.right - domainDims.right) ) + + newDimensions.height = axisDims?.height } else { - if (innerDims.measureDims.length) { - const topMostLabelDim = innerDims.measureDims.reduce((d, labelDim) => - labelDim.top < d.top ? labelDim : d - ) - - const bottomMostLabelDim = innerDims.measureDims.reduce((d, labelDim) => - labelDim.bottom > d.bottom ? labelDim : d - ) - - newDimensions.top = Math.round( - Math.max(0, innerDims.domainDims.top - topMostLabelDim?.top) - ) - - newDimensions.bottom = Math.round( - Math.max(0, bottomMostLabelDim?.bottom - innerDims.domainDims.bottom) - ) - } + newDimensions.paddingTop = Math.round( + Math.max(0, domainDims.top - axisDims?.top) + ) - newDimensions.width = Math.round( - // Math.max(axis.tickSizeInner, axis.tickSizeOuter) + - 8 + axis.minTickPaddingForRotation + (innerDims.widestLabel?.width ?? 0) + newDimensions.paddingBottom = Math.round( + Math.max(0, axisDims?.bottom - domainDims.bottom) ) + + newDimensions.width = axisDims?.width } // Only update the axisDimensions if something has changed @@ -236,7 +185,6 @@ export default function useMeasure({ axis.id, axis.isVertical, axis.position, - axis.minTickPaddingForRotation, axisDimension, axisDimensions, elRef, @@ -248,13 +196,13 @@ export default function useMeasure({ // setTimeout(() => { window.requestAnimationFrame(() => { measureRotation() - }) - }, [measureRotation]) - - useIsomorphicLayoutEffect(() => { - // setTimeout(() => { - window.requestAnimationFrame(() => { measureDimensions() }) }, [measureRotation]) + + // useIsomorphicLayoutEffect(() => { + // // setTimeout(() => { + // window.requestAnimationFrame(() => { + // }) + // }, [measureRotation]) } diff --git a/src/components/Chart.tsx b/src/components/Chart.tsx index dc9e769c..13de34f9 100644 --- a/src/components/Chart.tsx +++ b/src/components/Chart.tsx @@ -1,4 +1,4 @@ -import { groups, sort } from 'd3-array' +import { groups, sort, sum } from 'd3-array' import { stack, stackOffsetNone } from 'd3-shape' import React, { ComponentPropsWithoutRef } from 'react' @@ -9,7 +9,6 @@ import Bar from '../seriesTypes/Bar' import Line from '../seriesTypes/Line' // import { - AxisDimension, AxisDimensions, AxisOptions, AxisOptionsWithScaleType, @@ -18,7 +17,6 @@ import { ChartOptions, Datum, GridDimensions, - Measurement, RequiredChartOptions, Series, StackDatum, @@ -60,6 +58,8 @@ const defaultColorScheme = [ '#d44d99', ] +const defaultPadding = 5 + function defaultChartOptions( options: ChartOptions ): RequiredChartOptions { @@ -78,6 +78,7 @@ function defaultChartOptions( tooltip: options.tooltip ?? true, primaryCursor: options.primaryCursor ?? true, secondaryCursor: options.secondaryCursor ?? true, + padding: options.padding ?? defaultPadding, } } @@ -141,11 +142,18 @@ export function Chart({ const observer = new ResizeObserver(() => { const rect = containerEl?.getBoundingClientRect() + const styles = window.getComputedStyle(containerEl) if (rect) { setDims({ - width: rect.width, - height: rect.height, + width: + rect.width - + parseInt(styles.borderLeftWidth) - + parseInt(styles.borderRightWidth), + height: + rect.height - + parseInt(styles.borderTopWidth) - + parseInt(styles.borderBottomWidth), }) } }) @@ -285,40 +293,70 @@ function ChartInner({ // useAtom | null>(focusedDatumAtom) const gridDimensions = React.useMemo((): GridDimensions => { - // Left - const [axesLeftWidth, axesLeftTop, axesLeftBottom] = ( - ['width', 'top', 'bottom'] as Measurement[] - ).map(prop => sumAllDimensionProperties(axisDimensions.left, prop)) - - const [axesRightWidth, axesRightTop, axesRightBottom] = ( - ['width', 'top', 'bottom'] as Measurement[] - ).map(prop => sumAllDimensionProperties(axisDimensions.right, prop)) - - const [axesTopHeight, axesTopLeft, axesTopRight] = ( - ['height', 'left', 'right'] as Measurement[] - ).map(prop => sumAllDimensionProperties(axisDimensions.top, prop)) - - const [axesBottomHeight, axesBottomLeft, axesBottomRight] = ( - ['height', 'left', 'right'] as Measurement[] - ).map(prop => sumAllDimensionProperties(axisDimensions.bottom, prop)) - - const gridX = Math.max(axesLeftWidth, axesTopLeft, axesBottomLeft) - const gridY = Math.max(axesTopHeight, axesLeftTop, axesRightTop) - const gridWidth = Math.max( - 0, - width - - Math.max(axesLeftWidth, axesTopLeft, axesBottomLeft) - - Math.max(axesRightWidth, axesTopRight, axesBottomRight) - ) - const gridHeight = Math.max( - 0, - height - - Math.max(axesTopHeight, axesLeftTop, axesRightTop) - - Math.max(axesBottomHeight, axesLeftBottom, axesRightBottom) - ) + const padding = { + left: + typeof options.padding === 'object' + ? options.padding.left ?? defaultPadding + : options.padding, + right: + typeof options.padding === 'object' + ? options.padding.right ?? defaultPadding + : options.padding, + bottom: + typeof options.padding === 'object' + ? options.padding.bottom ?? defaultPadding + : options.padding, + top: + typeof options.padding === 'object' + ? options.padding.top ?? defaultPadding + : options.padding, + } + + const left = + padding.left + + Math.max( + sum(Object.values(axisDimensions.left), d => d.width), + sum(Object.values(axisDimensions.top), d => d.paddingLeft), + sum(Object.values(axisDimensions.bottom), d => d.paddingLeft) + ) + + const top = + padding.top + + Math.max( + sum(Object.values(axisDimensions.top), d => d.height), + sum(Object.values(axisDimensions.left), d => d.paddingTop), + sum(Object.values(axisDimensions.right), d => d.paddingTop) + ) + + const right = + padding.right + + Math.max( + sum(Object.values(axisDimensions.right), d => d.width), + sum(Object.values(axisDimensions.top), d => d.paddingRight), + sum(Object.values(axisDimensions.bottom), d => d.paddingRight) + ) + + const bottom = + padding.bottom + + Math.max( + sum(Object.values(axisDimensions.bottom), d => d.height), + sum(Object.values(axisDimensions.left), d => d.paddingBottom), + sum(Object.values(axisDimensions.right), d => d.paddingBottom) + ) - return { gridX, gridY, gridWidth, gridHeight } - }, [width, height, axisDimensions]) + const gridWidth = Math.max(0, width - left - right) + const gridHeight = Math.max(0, height - top - bottom) + + return { left, top, right, bottom, width: gridWidth, height: gridHeight } + }, [ + options.padding, + axisDimensions.left, + axisDimensions.top, + axisDimensions.bottom, + axisDimensions.right, + width, + height, + ]) const series = React.useMemo(() => { const series: Series[] = [] @@ -632,19 +670,6 @@ function ChartInner({ ) } -function sumAllDimensionProperties( - axisDimensions: Record, - side: Measurement -) { - let sum = 0 - - Object.keys(axisDimensions).forEach(axisId => { - sum += axisDimensions[axisId]?.[side] || 0 - }) - - return sum -} - function getFirstDefinedValue( options: AxisOptions, data: UserSerie[] diff --git a/src/components/Cursors.tsx b/src/components/Cursors.tsx index 7a47f874..a2adda59 100644 --- a/src/components/Cursors.tsx +++ b/src/components/Cursors.tsx @@ -291,8 +291,8 @@ function Cursor(props: { top: 0, left: 0, transform: translate( - svgRect.left + gridDimensions.gridX, - svgRect.top + gridDimensions.gridY + svgRect.left + gridDimensions.left, + svgRect.top + gridDimensions.top ), opacity: show ? 1 : 0, transition: 'opacity .3s ease', diff --git a/src/components/Voronoi.tsx b/src/components/Voronoi.tsx index 9bf86235..bb803c77 100644 --- a/src/components/Voronoi.tsx +++ b/src/components/Voronoi.tsx @@ -215,7 +215,7 @@ function PrimaryVoronoi({ {...{ onMouseLeave: () => handleFocus(null), style: { - transform: translate(gridDimensions.gridX, gridDimensions.gridY), + transform: translate(gridDimensions.left, gridDimensions.top), }, }} > @@ -273,8 +273,8 @@ function PrimaryVoronoi({ ) }, [ getOptions, - gridDimensions.gridX, - gridDimensions.gridY, + gridDimensions.left, + gridDimensions.top, groupedDatums, handleFocus, primaryAxis, diff --git a/src/seriesTypes/Area.tsx b/src/seriesTypes/Area.tsx index 30d41450..ed73fbd5 100644 --- a/src/seriesTypes/Area.tsx +++ b/src/seriesTypes/Area.tsx @@ -38,7 +38,7 @@ export default function AreaComponent({ return ( {allSeries.map((series, i) => { diff --git a/src/seriesTypes/Bar.tsx b/src/seriesTypes/Bar.tsx index c987ff71..2dcea46f 100644 --- a/src/seriesTypes/Bar.tsx +++ b/src/seriesTypes/Bar.tsx @@ -33,7 +33,7 @@ export default function BarComponent({ return ( {allSeries.map((series, i) => { diff --git a/src/seriesTypes/Line.tsx b/src/seriesTypes/Line.tsx index 6aebdfca..f0f5a65b 100644 --- a/src/seriesTypes/Line.tsx +++ b/src/seriesTypes/Line.tsx @@ -34,7 +34,7 @@ export default function Line({ return ( {allSeries.map((series, i) => { diff --git a/src/types.ts b/src/types.ts index 34b0c85c..42fdc149 100644 --- a/src/types.ts +++ b/src/types.ts @@ -9,6 +9,14 @@ export type ChartOptions = { data: UserSerie[] primaryAxis: AxisOptions secondaryAxes: AxisOptions[] + padding?: + | number + | { + left?: number + right?: number + top?: number + bottom?: number + } getSeriesStyle?: ( series: Series, status: SeriesFocusStatus @@ -62,6 +70,7 @@ export type RequiredChartOptions = TSTB.Object.Required< | 'tooltip' | 'primaryCursor' | 'secondaryCursor' + | 'padding' > export type ChartContextValue = { @@ -200,10 +209,10 @@ export type ChartOffset = { } export type AxisDimension = { - left: number - right: number - top: number - bottom: number + paddingLeft: number + paddingRight: number + paddingTop: number + paddingBottom: number width: number height: number } @@ -442,10 +451,12 @@ export type StackDatum = { export type Measurement = Side | 'width' | 'height' export type GridDimensions = { - gridX: number - gridY: number - gridWidth: number - gridHeight: number + left: number + top: number + right: number + bottom: number + width: number + height: number } export type CursorOptions = { diff --git a/src/utils/buildAxis.linear.ts b/src/utils/buildAxis.linear.ts index 8afd686b..f2bdee07 100644 --- a/src/utils/buildAxis.linear.ts +++ b/src/utils/buildAxis.linear.ts @@ -57,8 +57,8 @@ export default function buildAxisLinear( // Now we need to figure out the range const range: [number, number] = isVertical - ? [gridDimensions.gridHeight, 0] - : [0, gridDimensions.gridWidth] + ? [gridDimensions.height, 0] + : [0, gridDimensions.width] const outerRange: [number, number] = isVertical ? [height, 0] : [0, width] @@ -386,9 +386,7 @@ function buildImpliedBandScale( return } - const r = [one, two].sort() - - const diff = Math.abs(r[1] - r[0]) + const diff = Math.abs(Math.max(one, two) - Math.min(one, two)) if (diff < impliedBandWidth) { impliedBandWidth = diff diff --git a/typedocs/assets/js/search.js b/typedocs/assets/js/search.js index 79b30281..542f4d1b 100644 --- a/typedocs/assets/js/search.js +++ b/typedocs/assets/js/search.js @@ -1 +1 @@ -window.searchData = {"kinds":{"64":"Function","1024":"Property","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":64,"name":"Chart","url":"modules.html#chart","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1,"kind":4194304,"name":"ChartOptions","url":"modules.html#chartoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":2,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ChartOptions"},{"id":3,"kind":1024,"name":"data","url":"modules.html#chartoptions.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":4,"kind":1024,"name":"primaryAxis","url":"modules.html#chartoptions.__type.primaryaxis","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":5,"kind":1024,"name":"secondaryAxes","url":"modules.html#chartoptions.__type.secondaryaxes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":6,"kind":1024,"name":"getSeriesStyle","url":"modules.html#chartoptions.__type.getseriesstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":7,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":8,"kind":1024,"name":"getDatumStyle","url":"modules.html#chartoptions.__type.getdatumstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":9,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":10,"kind":1024,"name":"getSeriesOrder","url":"modules.html#chartoptions.__type.getseriesorder","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":11,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":12,"kind":1024,"name":"groupingMode","url":"modules.html#chartoptions.__type.groupingmode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":13,"kind":1024,"name":"showVoronoi","url":"modules.html#chartoptions.__type.showvoronoi","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":14,"kind":1024,"name":"showDebugAxes","url":"modules.html#chartoptions.__type.showdebugaxes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":15,"kind":1024,"name":"defaultColors","url":"modules.html#chartoptions.__type.defaultcolors","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":16,"kind":1024,"name":"initialWidth","url":"modules.html#chartoptions.__type.initialwidth","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":17,"kind":1024,"name":"initialHeight","url":"modules.html#chartoptions.__type.initialheight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":18,"kind":1024,"name":"brush","url":"modules.html#chartoptions.__type.brush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":19,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":20,"kind":1024,"name":"style","url":"modules.html#chartoptions.__type.__type-1.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type.__type"},{"id":21,"kind":1024,"name":"onSelect","url":"modules.html#chartoptions.__type.__type-1.onselect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type.__type"},{"id":22,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type.__type"},{"id":23,"kind":1024,"name":"onFocusDatum","url":"modules.html#chartoptions.__type.onfocusdatum","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":24,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":25,"kind":1024,"name":"onClickDatum","url":"modules.html#chartoptions.__type.onclickdatum","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":26,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":27,"kind":1024,"name":"dark","url":"modules.html#chartoptions.__type.dark","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":28,"kind":1024,"name":"renderSVG","url":"modules.html#chartoptions.__type.rendersvg","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":29,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":30,"kind":1024,"name":"primaryCursor","url":"modules.html#chartoptions.__type.primarycursor","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":31,"kind":1024,"name":"secondaryCursor","url":"modules.html#chartoptions.__type.secondarycursor","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":32,"kind":1024,"name":"tooltip","url":"modules.html#chartoptions.__type.tooltip","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":33,"kind":4194304,"name":"RequiredChartOptions","url":"modules.html#requiredchartoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":34,"kind":4194304,"name":"ChartContextValue","url":"modules.html#chartcontextvalue","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":35,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ChartContextValue"},{"id":36,"kind":1024,"name":"getOptions","url":"modules.html#chartcontextvalue.__type.getoptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":37,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":38,"kind":1024,"name":"gridDimensions","url":"modules.html#chartcontextvalue.__type.griddimensions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":39,"kind":1024,"name":"primaryAxis","url":"modules.html#chartcontextvalue.__type.primaryaxis","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":40,"kind":1024,"name":"secondaryAxes","url":"modules.html#chartcontextvalue.__type.secondaryaxes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":41,"kind":1024,"name":"axesInfo","url":"modules.html#chartcontextvalue.__type.axesinfo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":42,"kind":1024,"name":"series","url":"modules.html#chartcontextvalue.__type.series","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":43,"kind":1024,"name":"orderedSeries","url":"modules.html#chartcontextvalue.__type.orderedseries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":44,"kind":1024,"name":"groupedDatums","url":"modules.html#chartcontextvalue.__type.groupeddatums","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":45,"kind":1024,"name":"width","url":"modules.html#chartcontextvalue.__type.width","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":46,"kind":1024,"name":"height","url":"modules.html#chartcontextvalue.__type.height","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":47,"kind":1024,"name":"svgRect","url":"modules.html#chartcontextvalue.__type.svgrect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":48,"kind":1024,"name":"getSeriesStatusStyle","url":"modules.html#chartcontextvalue.__type.getseriesstatusstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":49,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":50,"kind":1024,"name":"getDatumStatusStyle","url":"modules.html#chartcontextvalue.__type.getdatumstatusstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":51,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":52,"kind":1024,"name":"useAxisDimensionsAtom","url":"modules.html#chartcontextvalue.__type.useaxisdimensionsatom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":53,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":54,"kind":1024,"name":"useFocusedDatumAtom","url":"modules.html#chartcontextvalue.__type.usefocuseddatumatom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":55,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":56,"kind":4194304,"name":"TooltipOptions","url":"modules.html#tooltipoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":57,"kind":65536,"name":"__type","url":"modules.html#tooltipoptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"TooltipOptions"},{"id":58,"kind":1024,"name":"align","url":"modules.html#tooltipoptions.__type.align","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":59,"kind":1024,"name":"alignPriority","url":"modules.html#tooltipoptions.__type.alignpriority","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":60,"kind":1024,"name":"padding","url":"modules.html#tooltipoptions.__type.padding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":61,"kind":1024,"name":"tooltipArrowPadding","url":"modules.html#tooltipoptions.__type.tooltiparrowpadding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":62,"kind":1024,"name":"render","url":"modules.html#tooltipoptions.__type.render","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":63,"kind":65536,"name":"__type","url":"modules.html#tooltipoptions.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":64,"kind":1024,"name":"invert","url":"modules.html#tooltipoptions.__type.invert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":65,"kind":4194304,"name":"ResolvedTooltipOptions","url":"modules.html#resolvedtooltipoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":66,"kind":4194304,"name":"SeriesStyles","url":"modules.html#seriesstyles","classes":"tsd-kind-type-alias"},{"id":67,"kind":4194304,"name":"DatumStyles","url":"modules.html#datumstyles","classes":"tsd-kind-type-alias"},{"id":68,"kind":4194304,"name":"Position","url":"modules.html#position","classes":"tsd-kind-type-alias"},{"id":69,"kind":4194304,"name":"GroupingMode","url":"modules.html#groupingmode","classes":"tsd-kind-type-alias"},{"id":70,"kind":4194304,"name":"AlignMode","url":"modules.html#alignmode","classes":"tsd-kind-type-alias"},{"id":71,"kind":4194304,"name":"AlignPosition","url":"modules.html#alignposition","classes":"tsd-kind-type-alias"},{"id":72,"kind":4194304,"name":"AxisType","url":"modules.html#axistype","classes":"tsd-kind-type-alias"},{"id":73,"kind":4194304,"name":"AnchorMode","url":"modules.html#anchormode","classes":"tsd-kind-type-alias"},{"id":74,"kind":4194304,"name":"Side","url":"modules.html#side","classes":"tsd-kind-type-alias"},{"id":75,"kind":4194304,"name":"PointerUnpressed","url":"modules.html#pointerunpressed","classes":"tsd-kind-type-alias"},{"id":76,"kind":4194304,"name":"PointerPressed","url":"modules.html#pointerpressed","classes":"tsd-kind-type-alias"},{"id":77,"kind":4194304,"name":"Pointer","url":"modules.html#pointer","classes":"tsd-kind-type-alias"},{"id":78,"kind":4194304,"name":"ChartOffset","url":"modules.html#chartoffset","classes":"tsd-kind-type-alias"},{"id":79,"kind":65536,"name":"__type","url":"modules.html#chartoffset.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ChartOffset"},{"id":80,"kind":1024,"name":"left","url":"modules.html#chartoffset.__type.left","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":81,"kind":1024,"name":"top","url":"modules.html#chartoffset.__type.top","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":82,"kind":1024,"name":"width","url":"modules.html#chartoffset.__type.width","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":83,"kind":1024,"name":"height","url":"modules.html#chartoffset.__type.height","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":84,"kind":4194304,"name":"AxisDimension","url":"modules.html#axisdimension","classes":"tsd-kind-type-alias"},{"id":85,"kind":65536,"name":"__type","url":"modules.html#axisdimension.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisDimension"},{"id":86,"kind":1024,"name":"left","url":"modules.html#axisdimension.__type.left","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":87,"kind":1024,"name":"right","url":"modules.html#axisdimension.__type.right","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":88,"kind":1024,"name":"top","url":"modules.html#axisdimension.__type.top","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":89,"kind":1024,"name":"bottom","url":"modules.html#axisdimension.__type.bottom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":90,"kind":1024,"name":"width","url":"modules.html#axisdimension.__type.width","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":91,"kind":1024,"name":"height","url":"modules.html#axisdimension.__type.height","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":92,"kind":4194304,"name":"AxisDimensions","url":"modules.html#axisdimensions","classes":"tsd-kind-type-alias"},{"id":93,"kind":65536,"name":"__type","url":"modules.html#axisdimensions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisDimensions"},{"id":94,"kind":1024,"name":"left","url":"modules.html#axisdimensions.__type.left","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":95,"kind":1024,"name":"right","url":"modules.html#axisdimensions.__type.right","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":96,"kind":1024,"name":"top","url":"modules.html#axisdimensions.__type.top","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":97,"kind":1024,"name":"bottom","url":"modules.html#axisdimensions.__type.bottom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":98,"kind":4194304,"name":"AxisOptionsBase","url":"modules.html#axisoptionsbase","classes":"tsd-kind-type-alias"},{"id":99,"kind":65536,"name":"__type","url":"modules.html#axisoptionsbase.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisOptionsBase"},{"id":100,"kind":1024,"name":"isPrimary","url":"modules.html#axisoptionsbase.__type.isprimary","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":101,"kind":1024,"name":"primaryAxisId","url":"modules.html#axisoptionsbase.__type.primaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":102,"kind":1024,"name":"elementType","url":"modules.html#axisoptionsbase.__type.elementtype","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":103,"kind":1024,"name":"showDatumElements","url":"modules.html#axisoptionsbase.__type.showdatumelements","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":104,"kind":1024,"name":"showOrphanDatumElements","url":"modules.html#axisoptionsbase.__type.showorphandatumelements","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":105,"kind":1024,"name":"curve","url":"modules.html#axisoptionsbase.__type.curve","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":106,"kind":1024,"name":"invert","url":"modules.html#axisoptionsbase.__type.invert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":107,"kind":1024,"name":"position","url":"modules.html#axisoptionsbase.__type.position","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":108,"kind":1024,"name":"minTickPaddingForRotation","url":"modules.html#axisoptionsbase.__type.mintickpaddingforrotation","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":109,"kind":1024,"name":"tickLabelRotationDeg","url":"modules.html#axisoptionsbase.__type.ticklabelrotationdeg","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":110,"kind":1024,"name":"innerBandPadding","url":"modules.html#axisoptionsbase.__type.innerbandpadding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":111,"kind":1024,"name":"outerBandPadding","url":"modules.html#axisoptionsbase.__type.outerbandpadding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":112,"kind":1024,"name":"showGrid","url":"modules.html#axisoptionsbase.__type.showgrid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":113,"kind":1024,"name":"show","url":"modules.html#axisoptionsbase.__type.show","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":114,"kind":1024,"name":"stacked","url":"modules.html#axisoptionsbase.__type.stacked","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":115,"kind":1024,"name":"stackOffset","url":"modules.html#axisoptionsbase.__type.stackoffset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":116,"kind":1024,"name":"id","url":"modules.html#axisoptionsbase.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":117,"kind":1024,"name":"styles","url":"modules.html#axisoptionsbase.__type.styles","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":118,"kind":4194304,"name":"AxisTimeOptions","url":"modules.html#axistimeoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":119,"kind":4194304,"name":"AxisOrdinalOptions","url":"modules.html#axisordinaloptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":120,"kind":4194304,"name":"AxisBandOptions","url":"modules.html#axisbandoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":121,"kind":4194304,"name":"AxisLinearOptions","url":"modules.html#axislinearoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":122,"kind":4194304,"name":"AxisOptions","url":"modules.html#axisoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":123,"kind":4194304,"name":"ResolvedAxisOptions","url":"modules.html#resolvedaxisoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":124,"kind":4194304,"name":"ChartValue","url":"modules.html#chartvalue","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":125,"kind":4194304,"name":"AxisBase","url":"modules.html#axisbase","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":126,"kind":65536,"name":"__type","url":"modules.html#axisbase.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisBase"},{"id":127,"kind":1024,"name":"_","url":"modules.html#axisbase.__type._","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisBase.__type"},{"id":128,"kind":1024,"name":"isVertical","url":"modules.html#axisbase.__type.isvertical","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisBase.__type"},{"id":129,"kind":1024,"name":"range","url":"modules.html#axisbase.__type.range","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisBase.__type"},{"id":130,"kind":4194304,"name":"AxisTime","url":"modules.html#axistime","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":131,"kind":4194304,"name":"AxisLinear","url":"modules.html#axislinear","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":132,"kind":4194304,"name":"AxisBand","url":"modules.html#axisband","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":133,"kind":4194304,"name":"Axis","url":"modules.html#axis","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":134,"kind":4194304,"name":"UserSerie","url":"modules.html#userserie","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":135,"kind":65536,"name":"__type","url":"modules.html#userserie.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"UserSerie"},{"id":136,"kind":1024,"name":"data","url":"modules.html#userserie.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":137,"kind":1024,"name":"id","url":"modules.html#userserie.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":138,"kind":1024,"name":"label","url":"modules.html#userserie.__type.label","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":139,"kind":1024,"name":"color","url":"modules.html#userserie.__type.color","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":140,"kind":1024,"name":"primaryAxisId","url":"modules.html#userserie.__type.primaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":141,"kind":1024,"name":"secondaryAxisId","url":"modules.html#userserie.__type.secondaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":142,"kind":4194304,"name":"Series","url":"modules.html#series","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":143,"kind":65536,"name":"__type","url":"modules.html#series.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Series"},{"id":144,"kind":1024,"name":"originalSeries","url":"modules.html#series.__type.originalseries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":145,"kind":1024,"name":"index","url":"modules.html#series.__type.index","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":146,"kind":1024,"name":"id","url":"modules.html#series.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":147,"kind":1024,"name":"label","url":"modules.html#series.__type.label","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":148,"kind":1024,"name":"secondaryAxisId","url":"modules.html#series.__type.secondaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":149,"kind":1024,"name":"datums","url":"modules.html#series.__type.datums","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":150,"kind":1024,"name":"style","url":"modules.html#series.__type.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":151,"kind":4194304,"name":"Datum","url":"modules.html#datum","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":152,"kind":65536,"name":"__type","url":"modules.html#datum.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Datum"},{"id":153,"kind":1024,"name":"originalSeries","url":"modules.html#datum.__type.originalseries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":154,"kind":1024,"name":"seriesIndex","url":"modules.html#datum.__type.seriesindex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":155,"kind":1024,"name":"seriesId","url":"modules.html#datum.__type.seriesid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":156,"kind":1024,"name":"seriesLabel","url":"modules.html#datum.__type.serieslabel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":157,"kind":1024,"name":"index","url":"modules.html#datum.__type.index","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":158,"kind":1024,"name":"originalDatum","url":"modules.html#datum.__type.originaldatum","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":159,"kind":1024,"name":"secondaryAxisId","url":"modules.html#datum.__type.secondaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":160,"kind":1024,"name":"stackData","url":"modules.html#datum.__type.stackdata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":161,"kind":1024,"name":"group","url":"modules.html#datum.__type.group","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":162,"kind":1024,"name":"style","url":"modules.html#datum.__type.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":163,"kind":1024,"name":"element","url":"modules.html#datum.__type.element","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":164,"kind":4194304,"name":"StackDatum","url":"modules.html#stackdatum","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":165,"kind":65536,"name":"__type","url":"modules.html#stackdatum.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"StackDatum"},{"id":166,"kind":1024,"name":"0","url":"modules.html#stackdatum.__type.0","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"StackDatum.__type"},{"id":167,"kind":1024,"name":"1","url":"modules.html#stackdatum.__type.1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"StackDatum.__type"},{"id":168,"kind":1024,"name":"data","url":"modules.html#stackdatum.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"StackDatum.__type"},{"id":169,"kind":4194304,"name":"Measurement","url":"modules.html#measurement","classes":"tsd-kind-type-alias"},{"id":170,"kind":4194304,"name":"GridDimensions","url":"modules.html#griddimensions","classes":"tsd-kind-type-alias"},{"id":171,"kind":65536,"name":"__type","url":"modules.html#griddimensions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"GridDimensions"},{"id":172,"kind":1024,"name":"gridX","url":"modules.html#griddimensions.__type.gridx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":173,"kind":1024,"name":"gridY","url":"modules.html#griddimensions.__type.gridy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":174,"kind":1024,"name":"gridWidth","url":"modules.html#griddimensions.__type.gridwidth","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":175,"kind":1024,"name":"gridHeight","url":"modules.html#griddimensions.__type.gridheight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":176,"kind":4194304,"name":"AxesInfo","url":"modules.html#axesinfo","classes":"tsd-kind-type-alias"},{"id":177,"kind":65536,"name":"__type","url":"modules.html#axesinfo.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxesInfo"},{"id":178,"kind":1024,"name":"xKey","url":"modules.html#axesinfo.__type.xkey","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxesInfo.__type"},{"id":179,"kind":1024,"name":"yKey","url":"modules.html#axesinfo.__type.ykey","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxesInfo.__type"},{"id":180,"kind":4194304,"name":"CursorOptions","url":"modules.html#cursoroptions","classes":"tsd-kind-type-alias"},{"id":181,"kind":65536,"name":"__type","url":"modules.html#cursoroptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CursorOptions"},{"id":182,"kind":1024,"name":"value","url":"modules.html#cursoroptions.__type.value","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":183,"kind":1024,"name":"show","url":"modules.html#cursoroptions.__type.show","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":184,"kind":1024,"name":"showLine","url":"modules.html#cursoroptions.__type.showline","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":185,"kind":1024,"name":"showLabel","url":"modules.html#cursoroptions.__type.showlabel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":186,"kind":1024,"name":"axisId","url":"modules.html#cursoroptions.__type.axisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":187,"kind":1024,"name":"onChange","url":"modules.html#cursoroptions.__type.onchange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":188,"kind":65536,"name":"__type","url":"modules.html#cursoroptions.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":189,"kind":4194304,"name":"SeriesFocusStatus","url":"modules.html#seriesfocusstatus","classes":"tsd-kind-type-alias"},{"id":190,"kind":4194304,"name":"DatumFocusStatus","url":"modules.html#datumfocusstatus","classes":"tsd-kind-type-alias"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,48.52]],["parent/0",[]],["name/1",[1,43.412]],["parent/1",[]],["name/2",[2,18.398]],["parent/2",[1,3.868]],["name/3",[3,40.047]],["parent/3",[4,1.731]],["name/4",[5,43.412]],["parent/4",[4,1.731]],["name/5",[6,43.412]],["parent/5",[4,1.731]],["name/6",[7,48.52]],["parent/6",[4,1.731]],["name/7",[2,18.398]],["parent/7",[4,1.731]],["name/8",[8,48.52]],["parent/8",[4,1.731]],["name/9",[2,18.398]],["parent/9",[4,1.731]],["name/10",[9,48.52]],["parent/10",[4,1.731]],["name/11",[2,18.398]],["parent/11",[4,1.731]],["name/12",[10,43.412]],["parent/12",[4,1.731]],["name/13",[11,48.52]],["parent/13",[4,1.731]],["name/14",[12,48.52]],["parent/14",[4,1.731]],["name/15",[13,48.52]],["parent/15",[4,1.731]],["name/16",[14,48.52]],["parent/16",[4,1.731]],["name/17",[15,48.52]],["parent/17",[4,1.731]],["name/18",[16,48.52]],["parent/18",[4,1.731]],["name/19",[2,18.398]],["parent/19",[4,1.731]],["name/20",[17,40.047]],["parent/20",[18,3.568]],["name/21",[19,48.52]],["parent/21",[18,3.568]],["name/22",[2,18.398]],["parent/22",[18,3.568]],["name/23",[20,48.52]],["parent/23",[4,1.731]],["name/24",[2,18.398]],["parent/24",[4,1.731]],["name/25",[21,48.52]],["parent/25",[4,1.731]],["name/26",[2,18.398]],["parent/26",[4,1.731]],["name/27",[22,48.52]],["parent/27",[4,1.731]],["name/28",[23,48.52]],["parent/28",[4,1.731]],["name/29",[2,18.398]],["parent/29",[4,1.731]],["name/30",[24,48.52]],["parent/30",[4,1.731]],["name/31",[25,48.52]],["parent/31",[4,1.731]],["name/32",[26,48.52]],["parent/32",[4,1.731]],["name/33",[27,48.52]],["parent/33",[]],["name/34",[28,43.412]],["parent/34",[]],["name/35",[2,18.398]],["parent/35",[28,3.868]],["name/36",[29,48.52]],["parent/36",[30,1.993]],["name/37",[2,18.398]],["parent/37",[30,1.993]],["name/38",[31,40.047]],["parent/38",[30,1.993]],["name/39",[5,43.412]],["parent/39",[30,1.993]],["name/40",[6,43.412]],["parent/40",[30,1.993]],["name/41",[32,40.047]],["parent/41",[30,1.993]],["name/42",[33,40.047]],["parent/42",[30,1.993]],["name/43",[34,48.52]],["parent/43",[30,1.993]],["name/44",[35,48.52]],["parent/44",[30,1.993]],["name/45",[36,40.047]],["parent/45",[30,1.993]],["name/46",[37,40.047]],["parent/46",[30,1.993]],["name/47",[38,48.52]],["parent/47",[30,1.993]],["name/48",[39,48.52]],["parent/48",[30,1.993]],["name/49",[2,18.398]],["parent/49",[30,1.993]],["name/50",[40,48.52]],["parent/50",[30,1.993]],["name/51",[2,18.398]],["parent/51",[30,1.993]],["name/52",[41,48.52]],["parent/52",[30,1.993]],["name/53",[2,18.398]],["parent/53",[30,1.993]],["name/54",[42,48.52]],["parent/54",[30,1.993]],["name/55",[2,18.398]],["parent/55",[30,1.993]],["name/56",[43,43.412]],["parent/56",[]],["name/57",[2,18.398]],["parent/57",[43,3.868]],["name/58",[44,48.52]],["parent/58",[45,2.889]],["name/59",[46,48.52]],["parent/59",[45,2.889]],["name/60",[47,48.52]],["parent/60",[45,2.889]],["name/61",[48,48.52]],["parent/61",[45,2.889]],["name/62",[49,48.52]],["parent/62",[45,2.889]],["name/63",[2,18.398]],["parent/63",[45,2.889]],["name/64",[50,43.412]],["parent/64",[45,2.889]],["name/65",[51,48.52]],["parent/65",[]],["name/66",[52,48.52]],["parent/66",[]],["name/67",[53,48.52]],["parent/67",[]],["name/68",[54,43.412]],["parent/68",[]],["name/69",[10,43.412]],["parent/69",[]],["name/70",[55,48.52]],["parent/70",[]],["name/71",[56,48.52]],["parent/71",[]],["name/72",[57,48.52]],["parent/72",[]],["name/73",[58,48.52]],["parent/73",[]],["name/74",[59,48.52]],["parent/74",[]],["name/75",[60,48.52]],["parent/75",[]],["name/76",[61,48.52]],["parent/76",[]],["name/77",[62,48.52]],["parent/77",[]],["name/78",[63,43.412]],["parent/78",[]],["name/79",[2,18.398]],["parent/79",[63,3.868]],["name/80",[64,40.047]],["parent/80",[65,3.344]],["name/81",[66,40.047]],["parent/81",[65,3.344]],["name/82",[36,40.047]],["parent/82",[65,3.344]],["name/83",[37,40.047]],["parent/83",[65,3.344]],["name/84",[67,43.412]],["parent/84",[]],["name/85",[2,18.398]],["parent/85",[67,3.868]],["name/86",[64,40.047]],["parent/86",[68,3.016]],["name/87",[69,43.412]],["parent/87",[68,3.016]],["name/88",[66,40.047]],["parent/88",[68,3.016]],["name/89",[70,43.412]],["parent/89",[68,3.016]],["name/90",[36,40.047]],["parent/90",[68,3.016]],["name/91",[37,40.047]],["parent/91",[68,3.016]],["name/92",[71,43.412]],["parent/92",[]],["name/93",[2,18.398]],["parent/93",[71,3.868]],["name/94",[64,40.047]],["parent/94",[72,3.344]],["name/95",[69,43.412]],["parent/95",[72,3.344]],["name/96",[66,40.047]],["parent/96",[72,3.344]],["name/97",[70,43.412]],["parent/97",[72,3.344]],["name/98",[73,43.412]],["parent/98",[]],["name/99",[2,18.398]],["parent/99",[73,3.868]],["name/100",[74,48.52]],["parent/100",[75,2.084]],["name/101",[76,43.412]],["parent/101",[75,2.084]],["name/102",[77,48.52]],["parent/102",[75,2.084]],["name/103",[78,48.52]],["parent/103",[75,2.084]],["name/104",[79,48.52]],["parent/104",[75,2.084]],["name/105",[80,48.52]],["parent/105",[75,2.084]],["name/106",[50,43.412]],["parent/106",[75,2.084]],["name/107",[54,43.412]],["parent/107",[75,2.084]],["name/108",[81,48.52]],["parent/108",[75,2.084]],["name/109",[82,48.52]],["parent/109",[75,2.084]],["name/110",[83,48.52]],["parent/110",[75,2.084]],["name/111",[84,48.52]],["parent/111",[75,2.084]],["name/112",[85,48.52]],["parent/112",[75,2.084]],["name/113",[86,43.412]],["parent/113",[75,2.084]],["name/114",[87,48.52]],["parent/114",[75,2.084]],["name/115",[88,48.52]],["parent/115",[75,2.084]],["name/116",[89,40.047]],["parent/116",[75,2.084]],["name/117",[90,48.52]],["parent/117",[75,2.084]],["name/118",[91,48.52]],["parent/118",[]],["name/119",[92,48.52]],["parent/119",[]],["name/120",[93,48.52]],["parent/120",[]],["name/121",[94,48.52]],["parent/121",[]],["name/122",[95,48.52]],["parent/122",[]],["name/123",[96,48.52]],["parent/123",[]],["name/124",[97,48.52]],["parent/124",[]],["name/125",[98,43.412]],["parent/125",[]],["name/126",[2,18.398]],["parent/126",[98,3.868]],["name/127",[99,48.52]],["parent/127",[100,3.568]],["name/128",[101,48.52]],["parent/128",[100,3.568]],["name/129",[102,48.52]],["parent/129",[100,3.568]],["name/130",[103,48.52]],["parent/130",[]],["name/131",[104,48.52]],["parent/131",[]],["name/132",[105,48.52]],["parent/132",[]],["name/133",[106,48.52]],["parent/133",[]],["name/134",[107,43.412]],["parent/134",[]],["name/135",[2,18.398]],["parent/135",[107,3.868]],["name/136",[3,40.047]],["parent/136",[108,3.016]],["name/137",[89,40.047]],["parent/137",[108,3.016]],["name/138",[109,43.412]],["parent/138",[108,3.016]],["name/139",[110,48.52]],["parent/139",[108,3.016]],["name/140",[76,43.412]],["parent/140",[108,3.016]],["name/141",[111,40.047]],["parent/141",[108,3.016]],["name/142",[33,40.047]],["parent/142",[]],["name/143",[2,18.398]],["parent/143",[33,3.568]],["name/144",[112,43.412]],["parent/144",[113,2.889]],["name/145",[114,43.412]],["parent/145",[113,2.889]],["name/146",[89,40.047]],["parent/146",[113,2.889]],["name/147",[109,43.412]],["parent/147",[113,2.889]],["name/148",[111,40.047]],["parent/148",[113,2.889]],["name/149",[115,48.52]],["parent/149",[113,2.889]],["name/150",[17,40.047]],["parent/150",[113,2.889]],["name/151",[116,43.412]],["parent/151",[]],["name/152",[2,18.398]],["parent/152",[116,3.868]],["name/153",[112,43.412]],["parent/153",[117,2.508]],["name/154",[118,48.52]],["parent/154",[117,2.508]],["name/155",[119,48.52]],["parent/155",[117,2.508]],["name/156",[120,48.52]],["parent/156",[117,2.508]],["name/157",[114,43.412]],["parent/157",[117,2.508]],["name/158",[121,48.52]],["parent/158",[117,2.508]],["name/159",[111,40.047]],["parent/159",[117,2.508]],["name/160",[122,48.52]],["parent/160",[117,2.508]],["name/161",[123,48.52]],["parent/161",[117,2.508]],["name/162",[17,40.047]],["parent/162",[117,2.508]],["name/163",[124,48.52]],["parent/163",[117,2.508]],["name/164",[125,43.412]],["parent/164",[]],["name/165",[2,18.398]],["parent/165",[125,3.868]],["name/166",[126,48.52]],["parent/166",[127,3.568]],["name/167",[128,48.52]],["parent/167",[127,3.568]],["name/168",[3,40.047]],["parent/168",[127,3.568]],["name/169",[129,48.52]],["parent/169",[]],["name/170",[31,40.047]],["parent/170",[]],["name/171",[2,18.398]],["parent/171",[31,3.568]],["name/172",[130,48.52]],["parent/172",[131,3.344]],["name/173",[132,48.52]],["parent/173",[131,3.344]],["name/174",[133,48.52]],["parent/174",[131,3.344]],["name/175",[134,48.52]],["parent/175",[131,3.344]],["name/176",[32,40.047]],["parent/176",[]],["name/177",[2,18.398]],["parent/177",[32,3.568]],["name/178",[135,48.52]],["parent/178",[136,3.868]],["name/179",[137,48.52]],["parent/179",[136,3.868]],["name/180",[138,43.412]],["parent/180",[]],["name/181",[2,18.398]],["parent/181",[138,3.868]],["name/182",[139,48.52]],["parent/182",[140,2.889]],["name/183",[86,43.412]],["parent/183",[140,2.889]],["name/184",[141,48.52]],["parent/184",[140,2.889]],["name/185",[142,48.52]],["parent/185",[140,2.889]],["name/186",[143,48.52]],["parent/186",[140,2.889]],["name/187",[144,48.52]],["parent/187",[140,2.889]],["name/188",[2,18.398]],["parent/188",[140,2.889]],["name/189",[145,48.52]],["parent/189",[]],["name/190",[146,48.52]],["parent/190",[]]],"invertedIndex":[["0",{"_index":126,"name":{"166":{}},"parent":{}}],["1",{"_index":128,"name":{"167":{}},"parent":{}}],["_",{"_index":99,"name":{"127":{}},"parent":{}}],["__type",{"_index":2,"name":{"2":{},"7":{},"9":{},"11":{},"19":{},"22":{},"24":{},"26":{},"29":{},"35":{},"37":{},"49":{},"51":{},"53":{},"55":{},"57":{},"63":{},"79":{},"85":{},"93":{},"99":{},"126":{},"135":{},"143":{},"152":{},"165":{},"171":{},"177":{},"181":{},"188":{}},"parent":{}}],["align",{"_index":44,"name":{"58":{}},"parent":{}}],["alignmode",{"_index":55,"name":{"70":{}},"parent":{}}],["alignposition",{"_index":56,"name":{"71":{}},"parent":{}}],["alignpriority",{"_index":46,"name":{"59":{}},"parent":{}}],["anchormode",{"_index":58,"name":{"73":{}},"parent":{}}],["axesinfo",{"_index":32,"name":{"41":{},"176":{}},"parent":{"177":{}}}],["axesinfo.__type",{"_index":136,"name":{},"parent":{"178":{},"179":{}}}],["axis",{"_index":106,"name":{"133":{}},"parent":{}}],["axisband",{"_index":105,"name":{"132":{}},"parent":{}}],["axisbandoptions",{"_index":93,"name":{"120":{}},"parent":{}}],["axisbase",{"_index":98,"name":{"125":{}},"parent":{"126":{}}}],["axisbase.__type",{"_index":100,"name":{},"parent":{"127":{},"128":{},"129":{}}}],["axisdimension",{"_index":67,"name":{"84":{}},"parent":{"85":{}}}],["axisdimension.__type",{"_index":68,"name":{},"parent":{"86":{},"87":{},"88":{},"89":{},"90":{},"91":{}}}],["axisdimensions",{"_index":71,"name":{"92":{}},"parent":{"93":{}}}],["axisdimensions.__type",{"_index":72,"name":{},"parent":{"94":{},"95":{},"96":{},"97":{}}}],["axisid",{"_index":143,"name":{"186":{}},"parent":{}}],["axislinear",{"_index":104,"name":{"131":{}},"parent":{}}],["axislinearoptions",{"_index":94,"name":{"121":{}},"parent":{}}],["axisoptions",{"_index":95,"name":{"122":{}},"parent":{}}],["axisoptionsbase",{"_index":73,"name":{"98":{}},"parent":{"99":{}}}],["axisoptionsbase.__type",{"_index":75,"name":{},"parent":{"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{}}}],["axisordinaloptions",{"_index":92,"name":{"119":{}},"parent":{}}],["axistime",{"_index":103,"name":{"130":{}},"parent":{}}],["axistimeoptions",{"_index":91,"name":{"118":{}},"parent":{}}],["axistype",{"_index":57,"name":{"72":{}},"parent":{}}],["bottom",{"_index":70,"name":{"89":{},"97":{}},"parent":{}}],["brush",{"_index":16,"name":{"18":{}},"parent":{}}],["chart",{"_index":0,"name":{"0":{}},"parent":{}}],["chartcontextvalue",{"_index":28,"name":{"34":{}},"parent":{"35":{}}}],["chartcontextvalue.__type",{"_index":30,"name":{},"parent":{"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["chartoffset",{"_index":63,"name":{"78":{}},"parent":{"79":{}}}],["chartoffset.__type",{"_index":65,"name":{},"parent":{"80":{},"81":{},"82":{},"83":{}}}],["chartoptions",{"_index":1,"name":{"1":{}},"parent":{"2":{}}}],["chartoptions.__type",{"_index":4,"name":{},"parent":{"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{}}}],["chartoptions.__type.__type",{"_index":18,"name":{},"parent":{"20":{},"21":{},"22":{}}}],["chartvalue",{"_index":97,"name":{"124":{}},"parent":{}}],["color",{"_index":110,"name":{"139":{}},"parent":{}}],["cursoroptions",{"_index":138,"name":{"180":{}},"parent":{"181":{}}}],["cursoroptions.__type",{"_index":140,"name":{},"parent":{"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{}}}],["curve",{"_index":80,"name":{"105":{}},"parent":{}}],["dark",{"_index":22,"name":{"27":{}},"parent":{}}],["data",{"_index":3,"name":{"3":{},"136":{},"168":{}},"parent":{}}],["datum",{"_index":116,"name":{"151":{}},"parent":{"152":{}}}],["datum.__type",{"_index":117,"name":{},"parent":{"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["datumfocusstatus",{"_index":146,"name":{"190":{}},"parent":{}}],["datums",{"_index":115,"name":{"149":{}},"parent":{}}],["datumstyles",{"_index":53,"name":{"67":{}},"parent":{}}],["defaultcolors",{"_index":13,"name":{"15":{}},"parent":{}}],["element",{"_index":124,"name":{"163":{}},"parent":{}}],["elementtype",{"_index":77,"name":{"102":{}},"parent":{}}],["getdatumstatusstyle",{"_index":40,"name":{"50":{}},"parent":{}}],["getdatumstyle",{"_index":8,"name":{"8":{}},"parent":{}}],["getoptions",{"_index":29,"name":{"36":{}},"parent":{}}],["getseriesorder",{"_index":9,"name":{"10":{}},"parent":{}}],["getseriesstatusstyle",{"_index":39,"name":{"48":{}},"parent":{}}],["getseriesstyle",{"_index":7,"name":{"6":{}},"parent":{}}],["griddimensions",{"_index":31,"name":{"38":{},"170":{}},"parent":{"171":{}}}],["griddimensions.__type",{"_index":131,"name":{},"parent":{"172":{},"173":{},"174":{},"175":{}}}],["gridheight",{"_index":134,"name":{"175":{}},"parent":{}}],["gridwidth",{"_index":133,"name":{"174":{}},"parent":{}}],["gridx",{"_index":130,"name":{"172":{}},"parent":{}}],["gridy",{"_index":132,"name":{"173":{}},"parent":{}}],["group",{"_index":123,"name":{"161":{}},"parent":{}}],["groupeddatums",{"_index":35,"name":{"44":{}},"parent":{}}],["groupingmode",{"_index":10,"name":{"12":{},"69":{}},"parent":{}}],["height",{"_index":37,"name":{"46":{},"83":{},"91":{}},"parent":{}}],["id",{"_index":89,"name":{"116":{},"137":{},"146":{}},"parent":{}}],["index",{"_index":114,"name":{"145":{},"157":{}},"parent":{}}],["initialheight",{"_index":15,"name":{"17":{}},"parent":{}}],["initialwidth",{"_index":14,"name":{"16":{}},"parent":{}}],["innerbandpadding",{"_index":83,"name":{"110":{}},"parent":{}}],["invert",{"_index":50,"name":{"64":{},"106":{}},"parent":{}}],["isprimary",{"_index":74,"name":{"100":{}},"parent":{}}],["isvertical",{"_index":101,"name":{"128":{}},"parent":{}}],["label",{"_index":109,"name":{"138":{},"147":{}},"parent":{}}],["left",{"_index":64,"name":{"80":{},"86":{},"94":{}},"parent":{}}],["measurement",{"_index":129,"name":{"169":{}},"parent":{}}],["mintickpaddingforrotation",{"_index":81,"name":{"108":{}},"parent":{}}],["onchange",{"_index":144,"name":{"187":{}},"parent":{}}],["onclickdatum",{"_index":21,"name":{"25":{}},"parent":{}}],["onfocusdatum",{"_index":20,"name":{"23":{}},"parent":{}}],["onselect",{"_index":19,"name":{"21":{}},"parent":{}}],["orderedseries",{"_index":34,"name":{"43":{}},"parent":{}}],["originaldatum",{"_index":121,"name":{"158":{}},"parent":{}}],["originalseries",{"_index":112,"name":{"144":{},"153":{}},"parent":{}}],["outerbandpadding",{"_index":84,"name":{"111":{}},"parent":{}}],["padding",{"_index":47,"name":{"60":{}},"parent":{}}],["pointer",{"_index":62,"name":{"77":{}},"parent":{}}],["pointerpressed",{"_index":61,"name":{"76":{}},"parent":{}}],["pointerunpressed",{"_index":60,"name":{"75":{}},"parent":{}}],["position",{"_index":54,"name":{"68":{},"107":{}},"parent":{}}],["primaryaxis",{"_index":5,"name":{"4":{},"39":{}},"parent":{}}],["primaryaxisid",{"_index":76,"name":{"101":{},"140":{}},"parent":{}}],["primarycursor",{"_index":24,"name":{"30":{}},"parent":{}}],["range",{"_index":102,"name":{"129":{}},"parent":{}}],["render",{"_index":49,"name":{"62":{}},"parent":{}}],["rendersvg",{"_index":23,"name":{"28":{}},"parent":{}}],["requiredchartoptions",{"_index":27,"name":{"33":{}},"parent":{}}],["resolvedaxisoptions",{"_index":96,"name":{"123":{}},"parent":{}}],["resolvedtooltipoptions",{"_index":51,"name":{"65":{}},"parent":{}}],["right",{"_index":69,"name":{"87":{},"95":{}},"parent":{}}],["secondaryaxes",{"_index":6,"name":{"5":{},"40":{}},"parent":{}}],["secondaryaxisid",{"_index":111,"name":{"141":{},"148":{},"159":{}},"parent":{}}],["secondarycursor",{"_index":25,"name":{"31":{}},"parent":{}}],["series",{"_index":33,"name":{"42":{},"142":{}},"parent":{"143":{}}}],["series.__type",{"_index":113,"name":{},"parent":{"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{}}}],["seriesfocusstatus",{"_index":145,"name":{"189":{}},"parent":{}}],["seriesid",{"_index":119,"name":{"155":{}},"parent":{}}],["seriesindex",{"_index":118,"name":{"154":{}},"parent":{}}],["serieslabel",{"_index":120,"name":{"156":{}},"parent":{}}],["seriesstyles",{"_index":52,"name":{"66":{}},"parent":{}}],["show",{"_index":86,"name":{"113":{},"183":{}},"parent":{}}],["showdatumelements",{"_index":78,"name":{"103":{}},"parent":{}}],["showdebugaxes",{"_index":12,"name":{"14":{}},"parent":{}}],["showgrid",{"_index":85,"name":{"112":{}},"parent":{}}],["showlabel",{"_index":142,"name":{"185":{}},"parent":{}}],["showline",{"_index":141,"name":{"184":{}},"parent":{}}],["showorphandatumelements",{"_index":79,"name":{"104":{}},"parent":{}}],["showvoronoi",{"_index":11,"name":{"13":{}},"parent":{}}],["side",{"_index":59,"name":{"74":{}},"parent":{}}],["stackdata",{"_index":122,"name":{"160":{}},"parent":{}}],["stackdatum",{"_index":125,"name":{"164":{}},"parent":{"165":{}}}],["stackdatum.__type",{"_index":127,"name":{},"parent":{"166":{},"167":{},"168":{}}}],["stacked",{"_index":87,"name":{"114":{}},"parent":{}}],["stackoffset",{"_index":88,"name":{"115":{}},"parent":{}}],["style",{"_index":17,"name":{"20":{},"150":{},"162":{}},"parent":{}}],["styles",{"_index":90,"name":{"117":{}},"parent":{}}],["svgrect",{"_index":38,"name":{"47":{}},"parent":{}}],["ticklabelrotationdeg",{"_index":82,"name":{"109":{}},"parent":{}}],["tooltip",{"_index":26,"name":{"32":{}},"parent":{}}],["tooltiparrowpadding",{"_index":48,"name":{"61":{}},"parent":{}}],["tooltipoptions",{"_index":43,"name":{"56":{}},"parent":{"57":{}}}],["tooltipoptions.__type",{"_index":45,"name":{},"parent":{"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{}}}],["top",{"_index":66,"name":{"81":{},"88":{},"96":{}},"parent":{}}],["useaxisdimensionsatom",{"_index":41,"name":{"52":{}},"parent":{}}],["usefocuseddatumatom",{"_index":42,"name":{"54":{}},"parent":{}}],["userserie",{"_index":107,"name":{"134":{}},"parent":{"135":{}}}],["userserie.__type",{"_index":108,"name":{},"parent":{"136":{},"137":{},"138":{},"139":{},"140":{},"141":{}}}],["value",{"_index":139,"name":{"182":{}},"parent":{}}],["width",{"_index":36,"name":{"45":{},"82":{},"90":{}},"parent":{}}],["xkey",{"_index":135,"name":{"178":{}},"parent":{}}],["ykey",{"_index":137,"name":{"179":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file +window.searchData = {"kinds":{"64":"Function","1024":"Property","65536":"Type literal","4194304":"Type alias"},"rows":[{"id":0,"kind":64,"name":"Chart","url":"modules.html#chart","classes":"tsd-kind-function tsd-has-type-parameter"},{"id":1,"kind":4194304,"name":"ChartOptions","url":"modules.html#chartoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":2,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ChartOptions"},{"id":3,"kind":1024,"name":"data","url":"modules.html#chartoptions.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":4,"kind":1024,"name":"primaryAxis","url":"modules.html#chartoptions.__type.primaryaxis","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":5,"kind":1024,"name":"secondaryAxes","url":"modules.html#chartoptions.__type.secondaryaxes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":6,"kind":1024,"name":"getSeriesStyle","url":"modules.html#chartoptions.__type.getseriesstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":7,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":8,"kind":1024,"name":"getDatumStyle","url":"modules.html#chartoptions.__type.getdatumstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":9,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":10,"kind":1024,"name":"getSeriesOrder","url":"modules.html#chartoptions.__type.getseriesorder","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":11,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":12,"kind":1024,"name":"groupingMode","url":"modules.html#chartoptions.__type.groupingmode","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":13,"kind":1024,"name":"showVoronoi","url":"modules.html#chartoptions.__type.showvoronoi","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":14,"kind":1024,"name":"showDebugAxes","url":"modules.html#chartoptions.__type.showdebugaxes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":15,"kind":1024,"name":"defaultColors","url":"modules.html#chartoptions.__type.defaultcolors","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":16,"kind":1024,"name":"initialWidth","url":"modules.html#chartoptions.__type.initialwidth","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":17,"kind":1024,"name":"initialHeight","url":"modules.html#chartoptions.__type.initialheight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":18,"kind":1024,"name":"brush","url":"modules.html#chartoptions.__type.brush","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":19,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":20,"kind":1024,"name":"style","url":"modules.html#chartoptions.__type.__type-1.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type.__type"},{"id":21,"kind":1024,"name":"onSelect","url":"modules.html#chartoptions.__type.__type-1.onselect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type.__type"},{"id":22,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-1.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type.__type"},{"id":23,"kind":1024,"name":"onFocusDatum","url":"modules.html#chartoptions.__type.onfocusdatum","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":24,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-7","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":25,"kind":1024,"name":"onClickDatum","url":"modules.html#chartoptions.__type.onclickdatum","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":26,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-6","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":27,"kind":1024,"name":"dark","url":"modules.html#chartoptions.__type.dark","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":28,"kind":1024,"name":"renderSVG","url":"modules.html#chartoptions.__type.rendersvg","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":29,"kind":65536,"name":"__type","url":"modules.html#chartoptions.__type.__type-8","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":30,"kind":1024,"name":"primaryCursor","url":"modules.html#chartoptions.__type.primarycursor","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":31,"kind":1024,"name":"secondaryCursor","url":"modules.html#chartoptions.__type.secondarycursor","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":32,"kind":1024,"name":"tooltip","url":"modules.html#chartoptions.__type.tooltip","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOptions.__type"},{"id":33,"kind":4194304,"name":"RequiredChartOptions","url":"modules.html#requiredchartoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":34,"kind":4194304,"name":"ChartContextValue","url":"modules.html#chartcontextvalue","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":35,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ChartContextValue"},{"id":36,"kind":1024,"name":"getOptions","url":"modules.html#chartcontextvalue.__type.getoptions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":37,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-2","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":38,"kind":1024,"name":"gridDimensions","url":"modules.html#chartcontextvalue.__type.griddimensions","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":39,"kind":1024,"name":"primaryAxis","url":"modules.html#chartcontextvalue.__type.primaryaxis","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":40,"kind":1024,"name":"secondaryAxes","url":"modules.html#chartcontextvalue.__type.secondaryaxes","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":41,"kind":1024,"name":"axesInfo","url":"modules.html#chartcontextvalue.__type.axesinfo","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":42,"kind":1024,"name":"series","url":"modules.html#chartcontextvalue.__type.series","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":43,"kind":1024,"name":"orderedSeries","url":"modules.html#chartcontextvalue.__type.orderedseries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":44,"kind":1024,"name":"groupedDatums","url":"modules.html#chartcontextvalue.__type.groupeddatums","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":45,"kind":1024,"name":"width","url":"modules.html#chartcontextvalue.__type.width","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":46,"kind":1024,"name":"height","url":"modules.html#chartcontextvalue.__type.height","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":47,"kind":1024,"name":"svgRect","url":"modules.html#chartcontextvalue.__type.svgrect","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":48,"kind":1024,"name":"getSeriesStatusStyle","url":"modules.html#chartcontextvalue.__type.getseriesstatusstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":49,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-3","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":50,"kind":1024,"name":"getDatumStatusStyle","url":"modules.html#chartcontextvalue.__type.getdatumstatusstyle","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":51,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":52,"kind":1024,"name":"useAxisDimensionsAtom","url":"modules.html#chartcontextvalue.__type.useaxisdimensionsatom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":53,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-4","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":54,"kind":1024,"name":"useFocusedDatumAtom","url":"modules.html#chartcontextvalue.__type.usefocuseddatumatom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":55,"kind":65536,"name":"__type","url":"modules.html#chartcontextvalue.__type.__type-5","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"ChartContextValue.__type"},{"id":56,"kind":4194304,"name":"TooltipOptions","url":"modules.html#tooltipoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":57,"kind":65536,"name":"__type","url":"modules.html#tooltipoptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"TooltipOptions"},{"id":58,"kind":1024,"name":"align","url":"modules.html#tooltipoptions.__type.align","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":59,"kind":1024,"name":"alignPriority","url":"modules.html#tooltipoptions.__type.alignpriority","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":60,"kind":1024,"name":"padding","url":"modules.html#tooltipoptions.__type.padding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":61,"kind":1024,"name":"tooltipArrowPadding","url":"modules.html#tooltipoptions.__type.tooltiparrowpadding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":62,"kind":1024,"name":"render","url":"modules.html#tooltipoptions.__type.render","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":63,"kind":65536,"name":"__type","url":"modules.html#tooltipoptions.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":64,"kind":1024,"name":"invert","url":"modules.html#tooltipoptions.__type.invert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"TooltipOptions.__type"},{"id":65,"kind":4194304,"name":"ResolvedTooltipOptions","url":"modules.html#resolvedtooltipoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":66,"kind":4194304,"name":"SeriesStyles","url":"modules.html#seriesstyles","classes":"tsd-kind-type-alias"},{"id":67,"kind":4194304,"name":"DatumStyles","url":"modules.html#datumstyles","classes":"tsd-kind-type-alias"},{"id":68,"kind":4194304,"name":"Position","url":"modules.html#position","classes":"tsd-kind-type-alias"},{"id":69,"kind":4194304,"name":"GroupingMode","url":"modules.html#groupingmode","classes":"tsd-kind-type-alias"},{"id":70,"kind":4194304,"name":"AlignMode","url":"modules.html#alignmode","classes":"tsd-kind-type-alias"},{"id":71,"kind":4194304,"name":"AlignPosition","url":"modules.html#alignposition","classes":"tsd-kind-type-alias"},{"id":72,"kind":4194304,"name":"AxisType","url":"modules.html#axistype","classes":"tsd-kind-type-alias"},{"id":73,"kind":4194304,"name":"AnchorMode","url":"modules.html#anchormode","classes":"tsd-kind-type-alias"},{"id":74,"kind":4194304,"name":"Side","url":"modules.html#side","classes":"tsd-kind-type-alias"},{"id":75,"kind":4194304,"name":"PointerUnpressed","url":"modules.html#pointerunpressed","classes":"tsd-kind-type-alias"},{"id":76,"kind":4194304,"name":"PointerPressed","url":"modules.html#pointerpressed","classes":"tsd-kind-type-alias"},{"id":77,"kind":4194304,"name":"Pointer","url":"modules.html#pointer","classes":"tsd-kind-type-alias"},{"id":78,"kind":4194304,"name":"ChartOffset","url":"modules.html#chartoffset","classes":"tsd-kind-type-alias"},{"id":79,"kind":65536,"name":"__type","url":"modules.html#chartoffset.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"ChartOffset"},{"id":80,"kind":1024,"name":"left","url":"modules.html#chartoffset.__type.left","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":81,"kind":1024,"name":"top","url":"modules.html#chartoffset.__type.top","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":82,"kind":1024,"name":"width","url":"modules.html#chartoffset.__type.width","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":83,"kind":1024,"name":"height","url":"modules.html#chartoffset.__type.height","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"ChartOffset.__type"},{"id":84,"kind":4194304,"name":"AxisDimension","url":"modules.html#axisdimension","classes":"tsd-kind-type-alias"},{"id":85,"kind":65536,"name":"__type","url":"modules.html#axisdimension.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisDimension"},{"id":86,"kind":1024,"name":"left","url":"modules.html#axisdimension.__type.left","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":87,"kind":1024,"name":"right","url":"modules.html#axisdimension.__type.right","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":88,"kind":1024,"name":"top","url":"modules.html#axisdimension.__type.top","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":89,"kind":1024,"name":"bottom","url":"modules.html#axisdimension.__type.bottom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":90,"kind":1024,"name":"width","url":"modules.html#axisdimension.__type.width","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":91,"kind":1024,"name":"height","url":"modules.html#axisdimension.__type.height","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimension.__type"},{"id":92,"kind":4194304,"name":"AxisDimensions","url":"modules.html#axisdimensions","classes":"tsd-kind-type-alias"},{"id":93,"kind":65536,"name":"__type","url":"modules.html#axisdimensions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisDimensions"},{"id":94,"kind":1024,"name":"left","url":"modules.html#axisdimensions.__type.left","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":95,"kind":1024,"name":"right","url":"modules.html#axisdimensions.__type.right","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":96,"kind":1024,"name":"top","url":"modules.html#axisdimensions.__type.top","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":97,"kind":1024,"name":"bottom","url":"modules.html#axisdimensions.__type.bottom","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisDimensions.__type"},{"id":98,"kind":4194304,"name":"AxisOptionsBase","url":"modules.html#axisoptionsbase","classes":"tsd-kind-type-alias"},{"id":99,"kind":65536,"name":"__type","url":"modules.html#axisoptionsbase.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisOptionsBase"},{"id":100,"kind":1024,"name":"isPrimary","url":"modules.html#axisoptionsbase.__type.isprimary","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":101,"kind":1024,"name":"primaryAxisId","url":"modules.html#axisoptionsbase.__type.primaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":102,"kind":1024,"name":"elementType","url":"modules.html#axisoptionsbase.__type.elementtype","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":103,"kind":1024,"name":"showDatumElements","url":"modules.html#axisoptionsbase.__type.showdatumelements","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":104,"kind":1024,"name":"showOrphanDatumElements","url":"modules.html#axisoptionsbase.__type.showorphandatumelements","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":105,"kind":1024,"name":"curve","url":"modules.html#axisoptionsbase.__type.curve","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":106,"kind":1024,"name":"invert","url":"modules.html#axisoptionsbase.__type.invert","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":107,"kind":1024,"name":"position","url":"modules.html#axisoptionsbase.__type.position","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":108,"kind":1024,"name":"minTickPaddingForRotation","url":"modules.html#axisoptionsbase.__type.mintickpaddingforrotation","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":109,"kind":1024,"name":"tickLabelRotationDeg","url":"modules.html#axisoptionsbase.__type.ticklabelrotationdeg","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":110,"kind":1024,"name":"innerBandPadding","url":"modules.html#axisoptionsbase.__type.innerbandpadding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":111,"kind":1024,"name":"outerBandPadding","url":"modules.html#axisoptionsbase.__type.outerbandpadding","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":112,"kind":1024,"name":"showGrid","url":"modules.html#axisoptionsbase.__type.showgrid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":113,"kind":1024,"name":"show","url":"modules.html#axisoptionsbase.__type.show","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":114,"kind":1024,"name":"stacked","url":"modules.html#axisoptionsbase.__type.stacked","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":115,"kind":1024,"name":"stackOffset","url":"modules.html#axisoptionsbase.__type.stackoffset","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":116,"kind":1024,"name":"id","url":"modules.html#axisoptionsbase.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":117,"kind":1024,"name":"styles","url":"modules.html#axisoptionsbase.__type.styles","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisOptionsBase.__type"},{"id":118,"kind":4194304,"name":"AxisTimeOptions","url":"modules.html#axistimeoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":119,"kind":4194304,"name":"AxisOrdinalOptions","url":"modules.html#axisordinaloptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":120,"kind":4194304,"name":"AxisBandOptions","url":"modules.html#axisbandoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":121,"kind":4194304,"name":"AxisLinearOptions","url":"modules.html#axislinearoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":122,"kind":4194304,"name":"AxisOptions","url":"modules.html#axisoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":123,"kind":4194304,"name":"ResolvedAxisOptions","url":"modules.html#resolvedaxisoptions","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":124,"kind":4194304,"name":"ChartValue","url":"modules.html#chartvalue","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":125,"kind":4194304,"name":"AxisBase","url":"modules.html#axisbase","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":126,"kind":65536,"name":"__type","url":"modules.html#axisbase.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxisBase"},{"id":127,"kind":1024,"name":"_","url":"modules.html#axisbase.__type._","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisBase.__type"},{"id":128,"kind":1024,"name":"isVertical","url":"modules.html#axisbase.__type.isvertical","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisBase.__type"},{"id":129,"kind":1024,"name":"range","url":"modules.html#axisbase.__type.range","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxisBase.__type"},{"id":130,"kind":4194304,"name":"AxisTime","url":"modules.html#axistime","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":131,"kind":4194304,"name":"AxisLinear","url":"modules.html#axislinear","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":132,"kind":4194304,"name":"AxisBand","url":"modules.html#axisband","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":133,"kind":4194304,"name":"Axis","url":"modules.html#axis","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":134,"kind":4194304,"name":"UserSerie","url":"modules.html#userserie","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":135,"kind":65536,"name":"__type","url":"modules.html#userserie.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"UserSerie"},{"id":136,"kind":1024,"name":"data","url":"modules.html#userserie.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":137,"kind":1024,"name":"id","url":"modules.html#userserie.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":138,"kind":1024,"name":"label","url":"modules.html#userserie.__type.label","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":139,"kind":1024,"name":"color","url":"modules.html#userserie.__type.color","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":140,"kind":1024,"name":"primaryAxisId","url":"modules.html#userserie.__type.primaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":141,"kind":1024,"name":"secondaryAxisId","url":"modules.html#userserie.__type.secondaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"UserSerie.__type"},{"id":142,"kind":4194304,"name":"Series","url":"modules.html#series","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":143,"kind":65536,"name":"__type","url":"modules.html#series.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Series"},{"id":144,"kind":1024,"name":"originalSeries","url":"modules.html#series.__type.originalseries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":145,"kind":1024,"name":"index","url":"modules.html#series.__type.index","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":146,"kind":1024,"name":"id","url":"modules.html#series.__type.id","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":147,"kind":1024,"name":"label","url":"modules.html#series.__type.label","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":148,"kind":1024,"name":"secondaryAxisId","url":"modules.html#series.__type.secondaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":149,"kind":1024,"name":"datums","url":"modules.html#series.__type.datums","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":150,"kind":1024,"name":"style","url":"modules.html#series.__type.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Series.__type"},{"id":151,"kind":4194304,"name":"Datum","url":"modules.html#datum","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":152,"kind":65536,"name":"__type","url":"modules.html#datum.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"Datum"},{"id":153,"kind":1024,"name":"originalSeries","url":"modules.html#datum.__type.originalseries","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":154,"kind":1024,"name":"seriesIndex","url":"modules.html#datum.__type.seriesindex","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":155,"kind":1024,"name":"seriesId","url":"modules.html#datum.__type.seriesid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":156,"kind":1024,"name":"seriesLabel","url":"modules.html#datum.__type.serieslabel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":157,"kind":1024,"name":"index","url":"modules.html#datum.__type.index","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":158,"kind":1024,"name":"originalDatum","url":"modules.html#datum.__type.originaldatum","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":159,"kind":1024,"name":"secondaryAxisId","url":"modules.html#datum.__type.secondaryaxisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":160,"kind":1024,"name":"stackData","url":"modules.html#datum.__type.stackdata","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":161,"kind":1024,"name":"group","url":"modules.html#datum.__type.group","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":162,"kind":1024,"name":"style","url":"modules.html#datum.__type.style","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":163,"kind":1024,"name":"element","url":"modules.html#datum.__type.element","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"Datum.__type"},{"id":164,"kind":4194304,"name":"StackDatum","url":"modules.html#stackdatum","classes":"tsd-kind-type-alias tsd-has-type-parameter"},{"id":165,"kind":65536,"name":"__type","url":"modules.html#stackdatum.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"StackDatum"},{"id":166,"kind":1024,"name":"0","url":"modules.html#stackdatum.__type.0","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"StackDatum.__type"},{"id":167,"kind":1024,"name":"1","url":"modules.html#stackdatum.__type.1","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"StackDatum.__type"},{"id":168,"kind":1024,"name":"data","url":"modules.html#stackdatum.__type.data","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"StackDatum.__type"},{"id":169,"kind":4194304,"name":"Measurement","url":"modules.html#measurement","classes":"tsd-kind-type-alias"},{"id":170,"kind":4194304,"name":"GridDimensions","url":"modules.html#griddimensions","classes":"tsd-kind-type-alias"},{"id":171,"kind":65536,"name":"__type","url":"modules.html#griddimensions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"GridDimensions"},{"id":172,"kind":1024,"name":"gridX","url":"modules.html#griddimensions.__type.gridx","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":173,"kind":1024,"name":"gridY","url":"modules.html#griddimensions.__type.gridy","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":174,"kind":1024,"name":"width","url":"modules.html#griddimensions.__type.gridwidth","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":175,"kind":1024,"name":"height","url":"modules.html#griddimensions.__type.gridheight","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"GridDimensions.__type"},{"id":176,"kind":4194304,"name":"AxesInfo","url":"modules.html#axesinfo","classes":"tsd-kind-type-alias"},{"id":177,"kind":65536,"name":"__type","url":"modules.html#axesinfo.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"AxesInfo"},{"id":178,"kind":1024,"name":"xKey","url":"modules.html#axesinfo.__type.xkey","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxesInfo.__type"},{"id":179,"kind":1024,"name":"yKey","url":"modules.html#axesinfo.__type.ykey","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"AxesInfo.__type"},{"id":180,"kind":4194304,"name":"CursorOptions","url":"modules.html#cursoroptions","classes":"tsd-kind-type-alias"},{"id":181,"kind":65536,"name":"__type","url":"modules.html#cursoroptions.__type","classes":"tsd-kind-type-literal tsd-parent-kind-type-alias","parent":"CursorOptions"},{"id":182,"kind":1024,"name":"value","url":"modules.html#cursoroptions.__type.value","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":183,"kind":1024,"name":"show","url":"modules.html#cursoroptions.__type.show","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":184,"kind":1024,"name":"showLine","url":"modules.html#cursoroptions.__type.showline","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":185,"kind":1024,"name":"showLabel","url":"modules.html#cursoroptions.__type.showlabel","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":186,"kind":1024,"name":"axisId","url":"modules.html#cursoroptions.__type.axisid","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":187,"kind":1024,"name":"onChange","url":"modules.html#cursoroptions.__type.onchange","classes":"tsd-kind-property tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":188,"kind":65536,"name":"__type","url":"modules.html#cursoroptions.__type.__type-1","classes":"tsd-kind-type-literal tsd-parent-kind-type-literal","parent":"CursorOptions.__type"},{"id":189,"kind":4194304,"name":"SeriesFocusStatus","url":"modules.html#seriesfocusstatus","classes":"tsd-kind-type-alias"},{"id":190,"kind":4194304,"name":"DatumFocusStatus","url":"modules.html#datumfocusstatus","classes":"tsd-kind-type-alias"}],"index":{"version":"2.3.9","fields":["name","parent"],"fieldVectors":[["name/0",[0,48.52]],["parent/0",[]],["name/1",[1,43.412]],["parent/1",[]],["name/2",[2,18.398]],["parent/2",[1,3.868]],["name/3",[3,40.047]],["parent/3",[4,1.731]],["name/4",[5,43.412]],["parent/4",[4,1.731]],["name/5",[6,43.412]],["parent/5",[4,1.731]],["name/6",[7,48.52]],["parent/6",[4,1.731]],["name/7",[2,18.398]],["parent/7",[4,1.731]],["name/8",[8,48.52]],["parent/8",[4,1.731]],["name/9",[2,18.398]],["parent/9",[4,1.731]],["name/10",[9,48.52]],["parent/10",[4,1.731]],["name/11",[2,18.398]],["parent/11",[4,1.731]],["name/12",[10,43.412]],["parent/12",[4,1.731]],["name/13",[11,48.52]],["parent/13",[4,1.731]],["name/14",[12,48.52]],["parent/14",[4,1.731]],["name/15",[13,48.52]],["parent/15",[4,1.731]],["name/16",[14,48.52]],["parent/16",[4,1.731]],["name/17",[15,48.52]],["parent/17",[4,1.731]],["name/18",[16,48.52]],["parent/18",[4,1.731]],["name/19",[2,18.398]],["parent/19",[4,1.731]],["name/20",[17,40.047]],["parent/20",[18,3.568]],["name/21",[19,48.52]],["parent/21",[18,3.568]],["name/22",[2,18.398]],["parent/22",[18,3.568]],["name/23",[20,48.52]],["parent/23",[4,1.731]],["name/24",[2,18.398]],["parent/24",[4,1.731]],["name/25",[21,48.52]],["parent/25",[4,1.731]],["name/26",[2,18.398]],["parent/26",[4,1.731]],["name/27",[22,48.52]],["parent/27",[4,1.731]],["name/28",[23,48.52]],["parent/28",[4,1.731]],["name/29",[2,18.398]],["parent/29",[4,1.731]],["name/30",[24,48.52]],["parent/30",[4,1.731]],["name/31",[25,48.52]],["parent/31",[4,1.731]],["name/32",[26,48.52]],["parent/32",[4,1.731]],["name/33",[27,48.52]],["parent/33",[]],["name/34",[28,43.412]],["parent/34",[]],["name/35",[2,18.398]],["parent/35",[28,3.868]],["name/36",[29,48.52]],["parent/36",[30,1.993]],["name/37",[2,18.398]],["parent/37",[30,1.993]],["name/38",[31,40.047]],["parent/38",[30,1.993]],["name/39",[5,43.412]],["parent/39",[30,1.993]],["name/40",[6,43.412]],["parent/40",[30,1.993]],["name/41",[32,40.047]],["parent/41",[30,1.993]],["name/42",[33,40.047]],["parent/42",[30,1.993]],["name/43",[34,48.52]],["parent/43",[30,1.993]],["name/44",[35,48.52]],["parent/44",[30,1.993]],["name/45",[36,40.047]],["parent/45",[30,1.993]],["name/46",[37,40.047]],["parent/46",[30,1.993]],["name/47",[38,48.52]],["parent/47",[30,1.993]],["name/48",[39,48.52]],["parent/48",[30,1.993]],["name/49",[2,18.398]],["parent/49",[30,1.993]],["name/50",[40,48.52]],["parent/50",[30,1.993]],["name/51",[2,18.398]],["parent/51",[30,1.993]],["name/52",[41,48.52]],["parent/52",[30,1.993]],["name/53",[2,18.398]],["parent/53",[30,1.993]],["name/54",[42,48.52]],["parent/54",[30,1.993]],["name/55",[2,18.398]],["parent/55",[30,1.993]],["name/56",[43,43.412]],["parent/56",[]],["name/57",[2,18.398]],["parent/57",[43,3.868]],["name/58",[44,48.52]],["parent/58",[45,2.889]],["name/59",[46,48.52]],["parent/59",[45,2.889]],["name/60",[47,48.52]],["parent/60",[45,2.889]],["name/61",[48,48.52]],["parent/61",[45,2.889]],["name/62",[49,48.52]],["parent/62",[45,2.889]],["name/63",[2,18.398]],["parent/63",[45,2.889]],["name/64",[50,43.412]],["parent/64",[45,2.889]],["name/65",[51,48.52]],["parent/65",[]],["name/66",[52,48.52]],["parent/66",[]],["name/67",[53,48.52]],["parent/67",[]],["name/68",[54,43.412]],["parent/68",[]],["name/69",[10,43.412]],["parent/69",[]],["name/70",[55,48.52]],["parent/70",[]],["name/71",[56,48.52]],["parent/71",[]],["name/72",[57,48.52]],["parent/72",[]],["name/73",[58,48.52]],["parent/73",[]],["name/74",[59,48.52]],["parent/74",[]],["name/75",[60,48.52]],["parent/75",[]],["name/76",[61,48.52]],["parent/76",[]],["name/77",[62,48.52]],["parent/77",[]],["name/78",[63,43.412]],["parent/78",[]],["name/79",[2,18.398]],["parent/79",[63,3.868]],["name/80",[64,40.047]],["parent/80",[65,3.344]],["name/81",[66,40.047]],["parent/81",[65,3.344]],["name/82",[36,40.047]],["parent/82",[65,3.344]],["name/83",[37,40.047]],["parent/83",[65,3.344]],["name/84",[67,43.412]],["parent/84",[]],["name/85",[2,18.398]],["parent/85",[67,3.868]],["name/86",[64,40.047]],["parent/86",[68,3.016]],["name/87",[69,43.412]],["parent/87",[68,3.016]],["name/88",[66,40.047]],["parent/88",[68,3.016]],["name/89",[70,43.412]],["parent/89",[68,3.016]],["name/90",[36,40.047]],["parent/90",[68,3.016]],["name/91",[37,40.047]],["parent/91",[68,3.016]],["name/92",[71,43.412]],["parent/92",[]],["name/93",[2,18.398]],["parent/93",[71,3.868]],["name/94",[64,40.047]],["parent/94",[72,3.344]],["name/95",[69,43.412]],["parent/95",[72,3.344]],["name/96",[66,40.047]],["parent/96",[72,3.344]],["name/97",[70,43.412]],["parent/97",[72,3.344]],["name/98",[73,43.412]],["parent/98",[]],["name/99",[2,18.398]],["parent/99",[73,3.868]],["name/100",[74,48.52]],["parent/100",[75,2.084]],["name/101",[76,43.412]],["parent/101",[75,2.084]],["name/102",[77,48.52]],["parent/102",[75,2.084]],["name/103",[78,48.52]],["parent/103",[75,2.084]],["name/104",[79,48.52]],["parent/104",[75,2.084]],["name/105",[80,48.52]],["parent/105",[75,2.084]],["name/106",[50,43.412]],["parent/106",[75,2.084]],["name/107",[54,43.412]],["parent/107",[75,2.084]],["name/108",[81,48.52]],["parent/108",[75,2.084]],["name/109",[82,48.52]],["parent/109",[75,2.084]],["name/110",[83,48.52]],["parent/110",[75,2.084]],["name/111",[84,48.52]],["parent/111",[75,2.084]],["name/112",[85,48.52]],["parent/112",[75,2.084]],["name/113",[86,43.412]],["parent/113",[75,2.084]],["name/114",[87,48.52]],["parent/114",[75,2.084]],["name/115",[88,48.52]],["parent/115",[75,2.084]],["name/116",[89,40.047]],["parent/116",[75,2.084]],["name/117",[90,48.52]],["parent/117",[75,2.084]],["name/118",[91,48.52]],["parent/118",[]],["name/119",[92,48.52]],["parent/119",[]],["name/120",[93,48.52]],["parent/120",[]],["name/121",[94,48.52]],["parent/121",[]],["name/122",[95,48.52]],["parent/122",[]],["name/123",[96,48.52]],["parent/123",[]],["name/124",[97,48.52]],["parent/124",[]],["name/125",[98,43.412]],["parent/125",[]],["name/126",[2,18.398]],["parent/126",[98,3.868]],["name/127",[99,48.52]],["parent/127",[100,3.568]],["name/128",[101,48.52]],["parent/128",[100,3.568]],["name/129",[102,48.52]],["parent/129",[100,3.568]],["name/130",[103,48.52]],["parent/130",[]],["name/131",[104,48.52]],["parent/131",[]],["name/132",[105,48.52]],["parent/132",[]],["name/133",[106,48.52]],["parent/133",[]],["name/134",[107,43.412]],["parent/134",[]],["name/135",[2,18.398]],["parent/135",[107,3.868]],["name/136",[3,40.047]],["parent/136",[108,3.016]],["name/137",[89,40.047]],["parent/137",[108,3.016]],["name/138",[109,43.412]],["parent/138",[108,3.016]],["name/139",[110,48.52]],["parent/139",[108,3.016]],["name/140",[76,43.412]],["parent/140",[108,3.016]],["name/141",[111,40.047]],["parent/141",[108,3.016]],["name/142",[33,40.047]],["parent/142",[]],["name/143",[2,18.398]],["parent/143",[33,3.568]],["name/144",[112,43.412]],["parent/144",[113,2.889]],["name/145",[114,43.412]],["parent/145",[113,2.889]],["name/146",[89,40.047]],["parent/146",[113,2.889]],["name/147",[109,43.412]],["parent/147",[113,2.889]],["name/148",[111,40.047]],["parent/148",[113,2.889]],["name/149",[115,48.52]],["parent/149",[113,2.889]],["name/150",[17,40.047]],["parent/150",[113,2.889]],["name/151",[116,43.412]],["parent/151",[]],["name/152",[2,18.398]],["parent/152",[116,3.868]],["name/153",[112,43.412]],["parent/153",[117,2.508]],["name/154",[118,48.52]],["parent/154",[117,2.508]],["name/155",[119,48.52]],["parent/155",[117,2.508]],["name/156",[120,48.52]],["parent/156",[117,2.508]],["name/157",[114,43.412]],["parent/157",[117,2.508]],["name/158",[121,48.52]],["parent/158",[117,2.508]],["name/159",[111,40.047]],["parent/159",[117,2.508]],["name/160",[122,48.52]],["parent/160",[117,2.508]],["name/161",[123,48.52]],["parent/161",[117,2.508]],["name/162",[17,40.047]],["parent/162",[117,2.508]],["name/163",[124,48.52]],["parent/163",[117,2.508]],["name/164",[125,43.412]],["parent/164",[]],["name/165",[2,18.398]],["parent/165",[125,3.868]],["name/166",[126,48.52]],["parent/166",[127,3.568]],["name/167",[128,48.52]],["parent/167",[127,3.568]],["name/168",[3,40.047]],["parent/168",[127,3.568]],["name/169",[129,48.52]],["parent/169",[]],["name/170",[31,40.047]],["parent/170",[]],["name/171",[2,18.398]],["parent/171",[31,3.568]],["name/172",[130,48.52]],["parent/172",[131,3.344]],["name/173",[132,48.52]],["parent/173",[131,3.344]],["name/174",[133,48.52]],["parent/174",[131,3.344]],["name/175",[134,48.52]],["parent/175",[131,3.344]],["name/176",[32,40.047]],["parent/176",[]],["name/177",[2,18.398]],["parent/177",[32,3.568]],["name/178",[135,48.52]],["parent/178",[136,3.868]],["name/179",[137,48.52]],["parent/179",[136,3.868]],["name/180",[138,43.412]],["parent/180",[]],["name/181",[2,18.398]],["parent/181",[138,3.868]],["name/182",[139,48.52]],["parent/182",[140,2.889]],["name/183",[86,43.412]],["parent/183",[140,2.889]],["name/184",[141,48.52]],["parent/184",[140,2.889]],["name/185",[142,48.52]],["parent/185",[140,2.889]],["name/186",[143,48.52]],["parent/186",[140,2.889]],["name/187",[144,48.52]],["parent/187",[140,2.889]],["name/188",[2,18.398]],["parent/188",[140,2.889]],["name/189",[145,48.52]],["parent/189",[]],["name/190",[146,48.52]],["parent/190",[]]],"invertedIndex":[["0",{"_index":126,"name":{"166":{}},"parent":{}}],["1",{"_index":128,"name":{"167":{}},"parent":{}}],["_",{"_index":99,"name":{"127":{}},"parent":{}}],["__type",{"_index":2,"name":{"2":{},"7":{},"9":{},"11":{},"19":{},"22":{},"24":{},"26":{},"29":{},"35":{},"37":{},"49":{},"51":{},"53":{},"55":{},"57":{},"63":{},"79":{},"85":{},"93":{},"99":{},"126":{},"135":{},"143":{},"152":{},"165":{},"171":{},"177":{},"181":{},"188":{}},"parent":{}}],["align",{"_index":44,"name":{"58":{}},"parent":{}}],["alignmode",{"_index":55,"name":{"70":{}},"parent":{}}],["alignposition",{"_index":56,"name":{"71":{}},"parent":{}}],["alignpriority",{"_index":46,"name":{"59":{}},"parent":{}}],["anchormode",{"_index":58,"name":{"73":{}},"parent":{}}],["axesinfo",{"_index":32,"name":{"41":{},"176":{}},"parent":{"177":{}}}],["axesinfo.__type",{"_index":136,"name":{},"parent":{"178":{},"179":{}}}],["axis",{"_index":106,"name":{"133":{}},"parent":{}}],["axisband",{"_index":105,"name":{"132":{}},"parent":{}}],["axisbandoptions",{"_index":93,"name":{"120":{}},"parent":{}}],["axisbase",{"_index":98,"name":{"125":{}},"parent":{"126":{}}}],["axisbase.__type",{"_index":100,"name":{},"parent":{"127":{},"128":{},"129":{}}}],["axisdimension",{"_index":67,"name":{"84":{}},"parent":{"85":{}}}],["axisdimension.__type",{"_index":68,"name":{},"parent":{"86":{},"87":{},"88":{},"89":{},"90":{},"91":{}}}],["axisdimensions",{"_index":71,"name":{"92":{}},"parent":{"93":{}}}],["axisdimensions.__type",{"_index":72,"name":{},"parent":{"94":{},"95":{},"96":{},"97":{}}}],["axisid",{"_index":143,"name":{"186":{}},"parent":{}}],["axislinear",{"_index":104,"name":{"131":{}},"parent":{}}],["axislinearoptions",{"_index":94,"name":{"121":{}},"parent":{}}],["axisoptions",{"_index":95,"name":{"122":{}},"parent":{}}],["axisoptionsbase",{"_index":73,"name":{"98":{}},"parent":{"99":{}}}],["axisoptionsbase.__type",{"_index":75,"name":{},"parent":{"100":{},"101":{},"102":{},"103":{},"104":{},"105":{},"106":{},"107":{},"108":{},"109":{},"110":{},"111":{},"112":{},"113":{},"114":{},"115":{},"116":{},"117":{}}}],["axisordinaloptions",{"_index":92,"name":{"119":{}},"parent":{}}],["axistime",{"_index":103,"name":{"130":{}},"parent":{}}],["axistimeoptions",{"_index":91,"name":{"118":{}},"parent":{}}],["axistype",{"_index":57,"name":{"72":{}},"parent":{}}],["bottom",{"_index":70,"name":{"89":{},"97":{}},"parent":{}}],["brush",{"_index":16,"name":{"18":{}},"parent":{}}],["chart",{"_index":0,"name":{"0":{}},"parent":{}}],["chartcontextvalue",{"_index":28,"name":{"34":{}},"parent":{"35":{}}}],["chartcontextvalue.__type",{"_index":30,"name":{},"parent":{"36":{},"37":{},"38":{},"39":{},"40":{},"41":{},"42":{},"43":{},"44":{},"45":{},"46":{},"47":{},"48":{},"49":{},"50":{},"51":{},"52":{},"53":{},"54":{},"55":{}}}],["chartoffset",{"_index":63,"name":{"78":{}},"parent":{"79":{}}}],["chartoffset.__type",{"_index":65,"name":{},"parent":{"80":{},"81":{},"82":{},"83":{}}}],["chartoptions",{"_index":1,"name":{"1":{}},"parent":{"2":{}}}],["chartoptions.__type",{"_index":4,"name":{},"parent":{"3":{},"4":{},"5":{},"6":{},"7":{},"8":{},"9":{},"10":{},"11":{},"12":{},"13":{},"14":{},"15":{},"16":{},"17":{},"18":{},"19":{},"23":{},"24":{},"25":{},"26":{},"27":{},"28":{},"29":{},"30":{},"31":{},"32":{}}}],["chartoptions.__type.__type",{"_index":18,"name":{},"parent":{"20":{},"21":{},"22":{}}}],["chartvalue",{"_index":97,"name":{"124":{}},"parent":{}}],["color",{"_index":110,"name":{"139":{}},"parent":{}}],["cursoroptions",{"_index":138,"name":{"180":{}},"parent":{"181":{}}}],["cursoroptions.__type",{"_index":140,"name":{},"parent":{"182":{},"183":{},"184":{},"185":{},"186":{},"187":{},"188":{}}}],["curve",{"_index":80,"name":{"105":{}},"parent":{}}],["dark",{"_index":22,"name":{"27":{}},"parent":{}}],["data",{"_index":3,"name":{"3":{},"136":{},"168":{}},"parent":{}}],["datum",{"_index":116,"name":{"151":{}},"parent":{"152":{}}}],["datum.__type",{"_index":117,"name":{},"parent":{"153":{},"154":{},"155":{},"156":{},"157":{},"158":{},"159":{},"160":{},"161":{},"162":{},"163":{}}}],["datumfocusstatus",{"_index":146,"name":{"190":{}},"parent":{}}],["datums",{"_index":115,"name":{"149":{}},"parent":{}}],["datumstyles",{"_index":53,"name":{"67":{}},"parent":{}}],["defaultcolors",{"_index":13,"name":{"15":{}},"parent":{}}],["element",{"_index":124,"name":{"163":{}},"parent":{}}],["elementtype",{"_index":77,"name":{"102":{}},"parent":{}}],["getdatumstatusstyle",{"_index":40,"name":{"50":{}},"parent":{}}],["getdatumstyle",{"_index":8,"name":{"8":{}},"parent":{}}],["getoptions",{"_index":29,"name":{"36":{}},"parent":{}}],["getseriesorder",{"_index":9,"name":{"10":{}},"parent":{}}],["getseriesstatusstyle",{"_index":39,"name":{"48":{}},"parent":{}}],["getseriesstyle",{"_index":7,"name":{"6":{}},"parent":{}}],["griddimensions",{"_index":31,"name":{"38":{},"170":{}},"parent":{"171":{}}}],["griddimensions.__type",{"_index":131,"name":{},"parent":{"172":{},"173":{},"174":{},"175":{}}}],["gridheight",{"_index":134,"name":{"175":{}},"parent":{}}],["gridwidth",{"_index":133,"name":{"174":{}},"parent":{}}],["gridx",{"_index":130,"name":{"172":{}},"parent":{}}],["gridy",{"_index":132,"name":{"173":{}},"parent":{}}],["group",{"_index":123,"name":{"161":{}},"parent":{}}],["groupeddatums",{"_index":35,"name":{"44":{}},"parent":{}}],["groupingmode",{"_index":10,"name":{"12":{},"69":{}},"parent":{}}],["height",{"_index":37,"name":{"46":{},"83":{},"91":{}},"parent":{}}],["id",{"_index":89,"name":{"116":{},"137":{},"146":{}},"parent":{}}],["index",{"_index":114,"name":{"145":{},"157":{}},"parent":{}}],["initialheight",{"_index":15,"name":{"17":{}},"parent":{}}],["initialwidth",{"_index":14,"name":{"16":{}},"parent":{}}],["innerbandpadding",{"_index":83,"name":{"110":{}},"parent":{}}],["invert",{"_index":50,"name":{"64":{},"106":{}},"parent":{}}],["isprimary",{"_index":74,"name":{"100":{}},"parent":{}}],["isvertical",{"_index":101,"name":{"128":{}},"parent":{}}],["label",{"_index":109,"name":{"138":{},"147":{}},"parent":{}}],["left",{"_index":64,"name":{"80":{},"86":{},"94":{}},"parent":{}}],["measurement",{"_index":129,"name":{"169":{}},"parent":{}}],["mintickpaddingforrotation",{"_index":81,"name":{"108":{}},"parent":{}}],["onchange",{"_index":144,"name":{"187":{}},"parent":{}}],["onclickdatum",{"_index":21,"name":{"25":{}},"parent":{}}],["onfocusdatum",{"_index":20,"name":{"23":{}},"parent":{}}],["onselect",{"_index":19,"name":{"21":{}},"parent":{}}],["orderedseries",{"_index":34,"name":{"43":{}},"parent":{}}],["originaldatum",{"_index":121,"name":{"158":{}},"parent":{}}],["originalseries",{"_index":112,"name":{"144":{},"153":{}},"parent":{}}],["outerbandpadding",{"_index":84,"name":{"111":{}},"parent":{}}],["padding",{"_index":47,"name":{"60":{}},"parent":{}}],["pointer",{"_index":62,"name":{"77":{}},"parent":{}}],["pointerpressed",{"_index":61,"name":{"76":{}},"parent":{}}],["pointerunpressed",{"_index":60,"name":{"75":{}},"parent":{}}],["position",{"_index":54,"name":{"68":{},"107":{}},"parent":{}}],["primaryaxis",{"_index":5,"name":{"4":{},"39":{}},"parent":{}}],["primaryaxisid",{"_index":76,"name":{"101":{},"140":{}},"parent":{}}],["primarycursor",{"_index":24,"name":{"30":{}},"parent":{}}],["range",{"_index":102,"name":{"129":{}},"parent":{}}],["render",{"_index":49,"name":{"62":{}},"parent":{}}],["rendersvg",{"_index":23,"name":{"28":{}},"parent":{}}],["requiredchartoptions",{"_index":27,"name":{"33":{}},"parent":{}}],["resolvedaxisoptions",{"_index":96,"name":{"123":{}},"parent":{}}],["resolvedtooltipoptions",{"_index":51,"name":{"65":{}},"parent":{}}],["right",{"_index":69,"name":{"87":{},"95":{}},"parent":{}}],["secondaryaxes",{"_index":6,"name":{"5":{},"40":{}},"parent":{}}],["secondaryaxisid",{"_index":111,"name":{"141":{},"148":{},"159":{}},"parent":{}}],["secondarycursor",{"_index":25,"name":{"31":{}},"parent":{}}],["series",{"_index":33,"name":{"42":{},"142":{}},"parent":{"143":{}}}],["series.__type",{"_index":113,"name":{},"parent":{"144":{},"145":{},"146":{},"147":{},"148":{},"149":{},"150":{}}}],["seriesfocusstatus",{"_index":145,"name":{"189":{}},"parent":{}}],["seriesid",{"_index":119,"name":{"155":{}},"parent":{}}],["seriesindex",{"_index":118,"name":{"154":{}},"parent":{}}],["serieslabel",{"_index":120,"name":{"156":{}},"parent":{}}],["seriesstyles",{"_index":52,"name":{"66":{}},"parent":{}}],["show",{"_index":86,"name":{"113":{},"183":{}},"parent":{}}],["showdatumelements",{"_index":78,"name":{"103":{}},"parent":{}}],["showdebugaxes",{"_index":12,"name":{"14":{}},"parent":{}}],["showgrid",{"_index":85,"name":{"112":{}},"parent":{}}],["showlabel",{"_index":142,"name":{"185":{}},"parent":{}}],["showline",{"_index":141,"name":{"184":{}},"parent":{}}],["showorphandatumelements",{"_index":79,"name":{"104":{}},"parent":{}}],["showvoronoi",{"_index":11,"name":{"13":{}},"parent":{}}],["side",{"_index":59,"name":{"74":{}},"parent":{}}],["stackdata",{"_index":122,"name":{"160":{}},"parent":{}}],["stackdatum",{"_index":125,"name":{"164":{}},"parent":{"165":{}}}],["stackdatum.__type",{"_index":127,"name":{},"parent":{"166":{},"167":{},"168":{}}}],["stacked",{"_index":87,"name":{"114":{}},"parent":{}}],["stackoffset",{"_index":88,"name":{"115":{}},"parent":{}}],["style",{"_index":17,"name":{"20":{},"150":{},"162":{}},"parent":{}}],["styles",{"_index":90,"name":{"117":{}},"parent":{}}],["svgrect",{"_index":38,"name":{"47":{}},"parent":{}}],["ticklabelrotationdeg",{"_index":82,"name":{"109":{}},"parent":{}}],["tooltip",{"_index":26,"name":{"32":{}},"parent":{}}],["tooltiparrowpadding",{"_index":48,"name":{"61":{}},"parent":{}}],["tooltipoptions",{"_index":43,"name":{"56":{}},"parent":{"57":{}}}],["tooltipoptions.__type",{"_index":45,"name":{},"parent":{"58":{},"59":{},"60":{},"61":{},"62":{},"63":{},"64":{}}}],["top",{"_index":66,"name":{"81":{},"88":{},"96":{}},"parent":{}}],["useaxisdimensionsatom",{"_index":41,"name":{"52":{}},"parent":{}}],["usefocuseddatumatom",{"_index":42,"name":{"54":{}},"parent":{}}],["userserie",{"_index":107,"name":{"134":{}},"parent":{"135":{}}}],["userserie.__type",{"_index":108,"name":{},"parent":{"136":{},"137":{},"138":{},"139":{},"140":{},"141":{}}}],["value",{"_index":139,"name":{"182":{}},"parent":{}}],["width",{"_index":36,"name":{"45":{},"82":{},"90":{}},"parent":{}}],["xkey",{"_index":135,"name":{"178":{}},"parent":{}}],["ykey",{"_index":137,"name":{"179":{}},"parent":{}}]],"pipeline":[]}} \ No newline at end of file diff --git a/typedocs/index.html b/typedocs/index.html index 12d74ed8..3cfd6983 100644 --- a/typedocs/index.html +++ b/typedocs/index.html @@ -1,361 +1,398 @@ - + - - - - react-charts | react-charts - - - - - -
-
-
-
- -
-
- Options -
-
- All -
    -
  • Public
  • -
  • Public/Protected
  • -
  • All
  • -
-
- - - - - - -
-
- Menu -
-
-
-
-
- -
-
-
-

React Charts Header

-

Simple, immersive and interactive charts for React

- - #TanStack - - - - - - - - - Join the community on Spectrum - - - - - - - -
-
-

Enjoy this library? Try the entire TanStack! React Table, React Query, React Form

- -

Visit react-charts.tanstack.com for docs, guides, API and more!

- - -

Quick Features

-
-
    -
  • Line Charts
  • -
  • Bar Charts
  • -
  • Column Charts
  • -
  • Bubble Charts
  • -
  • Area Charts
  • -
  • Axis Stacking
  • -
  • Inverted Axes
  • -
  • Hyper Responsive
  • -
  • Invisibly Powered by D3
  • -
  • Declarative
  • -
  • Mutliple Axes
  • -
- -

Become a Sponsor!

- - -

Contributors ✨

-
-

Thanks goes to these wonderful people (emoji key):

- - - - - - - -

Tanner Linsley

💻 🤔 💡 🚧 👀
- - - -

This project follows the all-contributors specification. Contributions of any kind welcome!

- -
-
-
-

Index

-
- -
-
-
-

Type aliases

-
- -

AlignMode

-
AlignMode: "auto" | "right" | "topRight" | "bottomRight" | "left" | "topLeft" | "bottomLeft" | "top" | "bottom" | "center"
- -
-
- -

AlignPosition

-
AlignPosition: "right" | "topRight" | "bottomRight" | "left" | "topLeft" | "bottomLeft" | "top" | "bottom"
- -
-
- -

AnchorMode

-
AnchorMode: "pointer" | "closest" | "center" | "top" | "bottom" | "left" | "right" | "gridTop" | "gridBottom" | "gridLeft" | "gridRight" | "gridCenter"
- -
-
- -

AxesInfo

-
AxesInfo: { xKey: "primary" | "secondary"; yKey: "primary" | "secondary" }
- -
-

Type declaration

-
    -
  • -
    xKey: "primary" | "secondary"
    -
  • -
  • -
    yKey: "primary" | "secondary"
    -
  • -
-
-
-
- -

Axis

-
Axis<TDatum>: AxisTime<TDatum> | AxisLinear<TDatum> | AxisBand<TDatum>
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisBand

-
AxisBand<TDatum>: Omit<AxisBase<TDatum> & ResolvedAxisOptions<AxisBandOptions<TDatum>>, "format"> & { axisFamily: "band"; format: (value: ChartValue<any>) => string; outerScale: ScaleBand<any>; scale: ScaleBand<any> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisBandOptions

-
AxisBandOptions<TDatum>: AxisOptionsBase & { getValue: (datum: TDatum) => ChartValue<any>; minBandSize?: number; scaleType: "band" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisBase

-
AxisBase<TDatum>: { _?: TDatum; isVertical: boolean; range: [number, number] }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional _?: TDatum
    -
  • -
  • -
    isVertical: boolean
    -
  • -
  • -
    range: [number, number]
    -
  • -
-
-
-
- -

AxisDimension

-
AxisDimension: { bottom: number; height: number; left: number; right: number; top: number; width: number }
- -
-

Type declaration

-
    -
  • -
    bottom: number
    -
  • -
  • -
    height: number
    -
  • -
  • -
    left: number
    -
  • -
  • -
    right: number
    -
  • -
  • -
    top: number
    -
  • -
  • -
    width: number
    -
  • -
-
-
-
- -

AxisDimensions

-
AxisDimensions: { bottom: Record<string, AxisDimension>; left: Record<string, AxisDimension>; right: Record<string, AxisDimension>; top: Record<string, AxisDimension> }
- -
-

Type declaration

- -
-
-
- -

AxisLinear

-
AxisLinear<TDatum>: Omit<AxisBase<TDatum> & ResolvedAxisOptions<AxisLinearOptions<TDatum>>, "format"> & { axisFamily: "linear"; bandScale: ScaleBand<number>; format: ReturnType<ScaleLinear<number, number, never>["tickFormat"]>; outerScale: ScaleLinear<number, number, never>; scale: ScaleLinear<number, number, never> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisLinearOptions

-
AxisLinearOptions<TDatum>: AxisOptionsBase & { base?: number; getValue: (datum: TDatum) => ChartValue<number>; hardMax?: number; hardMin?: number; max?: number; min?: number; scaleType: "linear" | "log" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisOptions

-
AxisOptions<TDatum>: AxisTimeOptions<TDatum> | AxisOrdinalOptions<TDatum> | AxisBandOptions<TDatum> | AxisLinearOptions<TDatum>
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisOptionsBase

-
AxisOptionsBase: { curve?: CurveFactory; elementType?: "line" | "area" | "bar"; id?: string; innerBandPadding?: number; invert?: boolean; isPrimary?: boolean; minTickPaddingForRotation?: number; outerBandPadding?: number; position: Position; primaryAxisId?: string; show?: boolean; showDatumElements?: boolean; showGrid?: boolean; showOrphanDatumElements?: boolean; stackOffset?: typeof stackOffsetNone; stacked?: boolean; styles?: CSSProperties & { line?: CSSProperties; tick?: CSSProperties }; tickLabelRotationDeg?: number }
- -
-

Type declaration

-
    -
  • -
    Optional curve?: CurveFactory
    -
  • -
  • -
    Optional elementType?: "line" | "area" | "bar"
    -
  • -
  • -
    Optional id?: string
    -
  • -
  • -
    Optional innerBandPadding?: number
    -
  • -
  • -
    Optional invert?: boolean
    -
  • -
  • -
    Optional isPrimary?: boolean
    -
  • -
  • -
    Optional minTickPaddingForRotation?: number
    -
  • -
  • -
    Optional outerBandPadding?: number
    -
  • -
  • -
    position: Position
    -
  • -
  • -
    Optional primaryAxisId?: string
    -
  • -
  • -
    Optional show?: boolean
    -
  • -
  • -
    Optional showDatumElements?: boolean
    -
  • -
  • -
    Optional showGrid?: boolean
    -
  • -
  • -
    Optional showOrphanDatumElements?: boolean
    -
  • -
  • -
    Optional stackOffset?: typeof stackOffsetNone
    -
  • -
  • -
    Optional stacked?: boolean
    -
  • -
  • -
    Optional styles?: CSSProperties & { line?: CSSProperties; tick?: CSSProperties }
    -
  • -
  • -
    Optional tickLabelRotationDeg?: number
    -
  • -
-
-
-
- -

AxisOrdinalOptions

-
AxisOrdinalOptions<TDatum>: AxisOptionsBase & { getValue: (datum: TDatum) => ChartValue<any>; scaleType: "ordinal" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisTime

-
AxisTime<TDatum>: Omit<AxisBase<TDatum> & ResolvedAxisOptions<AxisTimeOptions<TDatum>>, "format"> & { axisFamily: "time"; bandScale: ScaleBand<number>; format: ReturnType<ScaleTime<number, number, never>["tickFormat"]>; outerScale: ScaleTime<number, number, never>; scale: ScaleTime<number, number, never> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisTimeOptions

-
AxisTimeOptions<TDatum>: AxisOptionsBase & { base?: number; getValue: (datum: TDatum) => ChartValue<Date>; hardMax?: number; hardMin?: number; max?: number; min?: number; scaleType: "time" | "localTime" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisType

-
AxisType: "ordinal" | "time" | "localTime" | "linear" | "log"
- -
-
- -

ChartContextValue

-
ChartContextValue<TDatum>: { axesInfo: AxesInfo; getDatumStatusStyle: (datum: Datum<TDatum>, focusedDatum: Datum<TDatum> | null) => DatumStyles; getOptions: () => RequiredChartOptions<TDatum>; getSeriesStatusStyle: (series: Series<TDatum>, focusedDatum: Datum<TDatum> | null) => SeriesStyles; gridDimensions: GridDimensions; groupedDatums: Map<any, Datum<TDatum>[]>; height: number; orderedSeries: Series<TDatum>[]; primaryAxis: Axis<TDatum>; secondaryAxes: Axis<TDatum>[]; series: Series<TDatum>[]; svgRect: ClientRect; useAxisDimensionsAtom: () => [AxisDimensions, SetAtom<SetStateAction<AxisDimensions>>]; useFocusedDatumAtom: () => [Datum<TDatum> | null, SetAtom<SetStateAction<Datum<TDatum> | null>>]; width: number }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

- -
-
-
- -

ChartOffset

-
ChartOffset: { height: number; left: number; top: number; width: number }
- -
-

Type declaration

-
    -
  • -
    height: number
    -
  • -
  • -
    left: number
    -
  • -
  • -
    top: number
    -
  • -
  • -
    width: number
    -
  • -
-
-
-
- -

ChartOptions

-
ChartOptions<TDatum>: { brush?: { onSelect?: (selection: { end: unknown; pointer: Pointer; start: unknown }) => void; style?: CSSProperties }; dark?: boolean; data: UserSerie<TDatum>[]; defaultColors?: string[]; getDatumStyle?: (datum: Datum<TDatum>, status: DatumFocusStatus) => DatumStyles; getSeriesOrder?: (series: Series<TDatum>[]) => Series<TDatum>[]; getSeriesStyle?: (series: Series<TDatum>, status: SeriesFocusStatus) => SeriesStyles; groupingMode?: GroupingMode; initialHeight?: number; initialWidth?: number; onClickDatum?: (datum: Datum<TDatum> | null, event: React.MouseEvent<SVGSVGElement, MouseEvent>) => void; onFocusDatum?: (datum: Datum<TDatum> | null) => void; primaryAxis: AxisOptions<TDatum>; primaryCursor?: boolean | CursorOptions; renderSVG?: () => React.ReactNode; secondaryAxes: AxisOptions<TDatum>[]; secondaryCursor?: boolean | CursorOptions; showDebugAxes?: boolean; showVoronoi?: boolean; tooltip?: boolean | TooltipOptions<TDatum> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional brush?: { onSelect?: (selection: { end: unknown; pointer: Pointer; start: unknown }) => void; style?: CSSProperties }
    -
      -
    • -
      Optional onSelect?: (selection: { end: unknown; pointer: Pointer; start: unknown }) => void
      -
        -
      • -
          -
        • (selection: { end: unknown; pointer: Pointer; start: unknown }): void
        • -
        -
          -
        • -

          Parameters

          -
            -
          • -
            selection: { end: unknown; pointer: Pointer; start: unknown }
            -
              -
            • -
              end: unknown
              -
            • -
            • -
              pointer: Pointer
              -
            • -
            • -
              start: unknown
              -
            • -
            -
          • -
          -

          Returns void

          -
        • -
        -
      • -
      -
    • -
    • -
      Optional style?: CSSProperties
      -
    • -
    -
  • -
  • -
    Optional dark?: boolean
    -
  • -
  • -
    data: UserSerie<TDatum>[]
    -
  • -
  • -
    Optional defaultColors?: string[]
    -
  • -
  • -
    Optional getDatumStyle?: (datum: Datum<TDatum>, status: DatumFocusStatus) => DatumStyles
    - -
  • -
  • -
    Optional getSeriesOrder?: (series: Series<TDatum>[]) => Series<TDatum>[]
    -
      -
    • - -
        -
      • -

        Parameters

        -
          -
        • -
          series: Series<TDatum>[]
          -
        • -
        -

        Returns Series<TDatum>[]

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional getSeriesStyle?: (series: Series<TDatum>, status: SeriesFocusStatus) => SeriesStyles
    - -
  • -
  • -
    Optional groupingMode?: GroupingMode
    -
  • -
  • -
    Optional initialHeight?: number
    -
  • -
  • -
    Optional initialWidth?: number
    -
  • -
  • -
    Optional onClickDatum?: (datum: Datum<TDatum> | null, event: React.MouseEvent<SVGSVGElement, MouseEvent>) => void
    -
      -
    • -
        -
      • (datum: Datum<TDatum> | null, event: React.MouseEvent<SVGSVGElement, MouseEvent>): void
      • -
      -
        -
      • -

        Parameters

        -
          -
        • -
          datum: Datum<TDatum> | null
          -
        • -
        • -
          event: React.MouseEvent<SVGSVGElement, MouseEvent>
          -
        • -
        -

        Returns void

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional onFocusDatum?: (datum: Datum<TDatum> | null) => void
    -
      -
    • -
        -
      • (datum: Datum<TDatum> | null): void
      • -
      -
        -
      • -

        Parameters

        -
          -
        • -
          datum: Datum<TDatum> | null
          -
        • -
        -

        Returns void

        -
      • -
      -
    • -
    -
  • -
  • -
    primaryAxis: AxisOptions<TDatum>
    -
  • -
  • -
    Optional primaryCursor?: boolean | CursorOptions
    -
  • -
  • -
    Optional renderSVG?: () => React.ReactNode
    -
      -
    • -
        -
      • (): React.ReactNode
      • -
      -
        -
      • -

        Returns React.ReactNode

        -
      • -
      -
    • -
    -
  • -
  • -
    secondaryAxes: AxisOptions<TDatum>[]
    -
  • -
  • -
    Optional secondaryCursor?: boolean | CursorOptions
    -
  • -
  • -
    Optional showDebugAxes?: boolean
    -
  • -
  • -
    Optional showVoronoi?: boolean
    -
  • -
  • -
    Optional tooltip?: boolean | TooltipOptions<TDatum>
    -
  • -
-
-
-
- -

ChartValue

-
ChartValue<T>: T | null | undefined
- -

Type parameters

-
    -
  • -

    T

    -
  • -
-
-
- -

CursorOptions

-
CursorOptions: { axisId?: string; onChange?: () => void; show?: boolean; showLabel?: boolean; showLine?: boolean; value?: unknown }
- -
-

Type declaration

-
    -
  • -
    Optional axisId?: string
    -
  • -
  • -
    Optional onChange?: () => void
    -
      -
    • -
        -
      • (): void
      • -
      -
        -
      • -

        Returns void

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional show?: boolean
    -
  • -
  • -
    Optional showLabel?: boolean
    -
  • -
  • -
    Optional showLine?: boolean
    -
  • -
  • -
    Optional value?: unknown
    -
  • -
-
-
-
- -

Datum

-
Datum<TDatum>: { element?: Element | null; group?: Datum<TDatum>[]; index: number; originalDatum: TDatum; originalSeries: UserSerie<TDatum>; secondaryAxisId?: string; seriesId: string; seriesIndex: number; seriesLabel: string; stackData?: StackDatum<TDatum>; style?: CSSProperties }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional element?: Element | null
    -
  • -
  • -
    Optional group?: Datum<TDatum>[]
    -
  • -
  • -
    index: number
    -
  • -
  • -
    originalDatum: TDatum
    -
  • -
  • -
    originalSeries: UserSerie<TDatum>
    -
  • -
  • -
    Optional secondaryAxisId?: string
    -
  • -
  • -
    seriesId: string
    -
  • -
  • -
    seriesIndex: number
    -
  • -
  • -
    seriesLabel: string
    -
  • -
  • -
    Optional stackData?: StackDatum<TDatum>
    -
  • -
  • -
    Optional style?: CSSProperties
    -
  • -
-
-
-
- -

DatumFocusStatus

-
DatumFocusStatus: "none" | "focused" | "groupFocused"
- -
-
- -

DatumStyles

-
DatumStyles: CSSProperties & { area?: CSSProperties; circle?: CSSProperties; line?: CSSProperties; rectangle?: CSSProperties }
- -
-
- -

GridDimensions

-
GridDimensions: { gridHeight: number; gridWidth: number; gridX: number; gridY: number }
- -
-

Type declaration

-
    -
  • -
    gridHeight: number
    -
  • -
  • -
    gridWidth: number
    -
  • -
  • -
    gridX: number
    -
  • -
  • -
    gridY: number
    -
  • -
-
-
-
- -

GroupingMode

-
GroupingMode: "single" | "series" | "primary" | "secondary"
- -
-
- -

Measurement

-
Measurement: Side | "width" | "height"
- -
-
- -

Pointer

- - -
-
- -

PointerPressed

-
PointerPressed: PointerBase & { dragging: true; startX: number; startY: number }
- -
-
- -

PointerUnpressed

-
PointerUnpressed: PointerBase & { dragging: false }
- -
-
- -

Position

-
Position: "top" | "right" | "bottom" | "left"
- -
-
- -

RequiredChartOptions

-
RequiredChartOptions<TDatum>: TSTB.Object.Required<ChartOptions<TDatum>, "getSeriesStyle" | "getDatumStyle" | "getSeriesOrder" | "groupingMode" | "showVoronoi" | "defaultColors" | "initialWidth" | "initialHeight">
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

ResolvedAxisOptions

-
ResolvedAxisOptions<TAxisOptions>: TSTB.Object.Required<TAxisOptions & {}, "minTickPaddingForRotation" | "tickLabelRotationDeg" | "innerBandPadding" | "outerBandPadding" | "show" | "stacked">
- -

Type parameters

-
    -
  • -

    TAxisOptions

    -
  • -
-
-
- -

ResolvedTooltipOptions

-
ResolvedTooltipOptions<TDatum>: TSTB.Object.Required<TooltipOptions<TDatum>, "align" | "alignPriority" | "padding" | "tooltipArrowPadding" | "anchor" | "render">
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

Series

-
Series<TDatum>: { datums: Datum<TDatum>[]; id: string; index: number; label: string; originalSeries: UserSerie<TDatum>; secondaryAxisId?: string; style?: CSSProperties }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    datums: Datum<TDatum>[]
    -
  • -
  • -
    id: string
    -
  • -
  • -
    index: number
    -
  • -
  • -
    label: string
    -
  • -
  • -
    originalSeries: UserSerie<TDatum>
    -
  • -
  • -
    Optional secondaryAxisId?: string
    -
  • -
  • -
    Optional style?: CSSProperties
    -
  • -
-
-
-
- -

SeriesFocusStatus

-
SeriesFocusStatus: "none" | "focused"
- -
-
- -

SeriesStyles

-
SeriesStyles: CSSProperties & { area?: CSSProperties; circle?: CSSProperties; line?: CSSProperties; rectangle?: CSSProperties }
- -
-
- -

Side

-
Side: "left" | "right" | "top" | "bottom"
- -
-
- -

StackDatum

-
StackDatum<TDatum>: { 0: number; 1: number; data: Datum<TDatum> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    0: number
    -
  • -
  • -
    1: number
    -
  • -
  • -
    data: Datum<TDatum>
    -
  • -
-
-
-
- -

TooltipOptions

-
TooltipOptions<TDatum>: { align?: AlignMode; alignPriority?: AlignPosition[]; invert?: boolean; padding?: number; render?: (props: TooltipRendererProps<TDatum>) => React.ReactNode; tooltipArrowPadding?: number }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional align?: AlignMode
    -
  • -
  • -
    Optional alignPriority?: AlignPosition[]
    -
  • -
  • -
    Optional invert?: boolean
    -
  • -
  • -
    Optional padding?: number
    -
  • -
  • -
    Optional render?: (props: TooltipRendererProps<TDatum>) => React.ReactNode
    -
      -
    • -
        -
      • (props: TooltipRendererProps<TDatum>): React.ReactNode
      • -
      -
        -
      • -

        Parameters

        -
          -
        • -
          props: TooltipRendererProps<TDatum>
          -
        • -
        -

        Returns React.ReactNode

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional tooltipArrowPadding?: number
    -
  • -
-
-
-
- -

UserSerie

-
UserSerie<TDatum>: { color?: string; data: TDatum[]; id?: string; label?: string; primaryAxisId?: string; secondaryAxisId?: string }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional color?: string
    -
  • -
  • -
    data: TDatum[]
    -
  • -
  • -
    Optional id?: string
    -
  • -
  • -
    Optional label?: string
    -
  • -
  • -
    Optional primaryAxisId?: string
    -
  • -
  • -
    Optional secondaryAxisId?: string
    -
  • -
-
-
-
-
-

Functions

-
- -

Chart

-
    -
  • Chart<TDatum>(__namedParameters: ComponentPropsWithoutRef<"div"> & { options: ChartOptions<TDatum> }): Element
  • -
-
    -
  • - -

    Type parameters

    -
      -
    • -

      TDatum

      -
    • -
    -

    Parameters

    -
      -
    • -
      __namedParameters: ComponentPropsWithoutRef<"div"> & { options: ChartOptions<TDatum> }
      -
    • -
    -

    Returns Element

    -
  • -
-
-
-
-
-

Legend

-
-
-
-
-
-

Generated using TypeDoc

-
-
-
- - - \ No newline at end of file + /***/ ( + __unused_webpack_module, + __webpack_exports__, + __webpack_require__ + ) => { + 'use strict' + eval( + '__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "throttle": () => /* binding */ throttle\n/* harmony export */ });\nvar throttle = function (fn, wait) {\n if (wait === void 0) { wait = 100; }\n var time = Date.now();\n return function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (time + wait - Date.now() < 0) {\n fn.apply(void 0, args);\n time = Date.now();\n }\n };\n};\n\n\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/utils/trottle.ts?' + ) + + /***/ + }, + + /******/ + } + /************************************************************************/ + /******/ // The module cache + /******/ var __webpack_module_cache__ = {} + /******/ + /******/ // The require function + /******/ function __webpack_require__(moduleId) { + /******/ // Check if module is in cache + /******/ if (__webpack_module_cache__[moduleId]) { + /******/ return __webpack_module_cache__[moduleId].exports + /******/ + } + /******/ // Create a new module (and put it into the cache) + /******/ var module = (__webpack_module_cache__[moduleId] = { + /******/ // no module.id needed + /******/ // no module.loaded needed + /******/ exports: {}, + /******/ + }) + /******/ + /******/ // Execute the module function + /******/ __webpack_modules__[moduleId]( + module, + module.exports, + __webpack_require__ + ) + /******/ + /******/ // Return the exports of the module + /******/ return module.exports + /******/ + } + /******/ + /************************************************************************/ + /******/ /* webpack/runtime/compat get default export */ + /******/ ;(() => { + /******/ // getDefaultExport function for compatibility with non-harmony modules + /******/ __webpack_require__.n = module => { + /******/ var getter = + module && module.__esModule + ? /******/ () => module['default'] + : /******/ () => module + /******/ __webpack_require__.d(getter, { a: getter }) + /******/ return getter + /******/ + } + /******/ + })() + /******/ + /******/ /* webpack/runtime/define property getters */ + /******/ ;(() => { + /******/ // define getter functions for harmony exports + /******/ __webpack_require__.d = (exports, definition) => { + /******/ for (var key in definition) { + /******/ if ( + __webpack_require__.o(definition, key) && + !__webpack_require__.o(exports, key) + ) { + /******/ Object.defineProperty(exports, key, { + enumerable: true, + get: definition[key], + }) + /******/ + } + /******/ + } + /******/ + } + /******/ + })() + /******/ + /******/ /* webpack/runtime/hasOwnProperty shorthand */ + /******/ ;(() => { + /******/ __webpack_require__.o = (obj, prop) => + Object.prototype.hasOwnProperty.call(obj, prop) + /******/ + })() + /******/ + /******/ /* webpack/runtime/make namespace object */ + /******/ ;(() => { + /******/ // define __esModule on exports + /******/ __webpack_require__.r = exports => { + /******/ if (typeof Symbol !== 'undefined' && Symbol.toStringTag) { + /******/ Object.defineProperty(exports, Symbol.toStringTag, { + value: 'Module', + }) + /******/ + } + /******/ Object.defineProperty(exports, '__esModule', { + value: true, + }) + /******/ + } + /******/ + })() + /******/ + /************************************************************************/ + /******/ // startup + /******/ // Load entry module + /******/ __webpack_require__('./default/assets/js/src/bootstrap.ts') + /******/ // This entry module used 'exports' so it can't be inlined + /******/ + })() + + + diff --git a/typedocs/modules.html b/typedocs/modules.html index c71c615b..5e864de3 100644 --- a/typedocs/modules.html +++ b/typedocs/modules.html @@ -1,361 +1,398 @@ - + - - - - react-charts | react-charts - - - - - -
-
-
-
- -
-
- Options -
-
- All -
    -
  • Public
  • -
  • Public/Protected
  • -
  • All
  • -
-
- - - - - - -
-
- Menu -
-
-
-
-
- -
-
-
-

React Charts Header

-

Simple, immersive and interactive charts for React

- - #TanStack - - - - - - - - - Join the community on Spectrum - - - - - - - -
-
-

Enjoy this library? Try the entire TanStack! React Table, React Query, React Form

- -

Visit react-charts.tanstack.com for docs, guides, API and more!

- - -

Quick Features

-
-
    -
  • Line Charts
  • -
  • Bar Charts
  • -
  • Column Charts
  • -
  • Bubble Charts
  • -
  • Area Charts
  • -
  • Axis Stacking
  • -
  • Inverted Axes
  • -
  • Hyper Responsive
  • -
  • Invisibly Powered by D3
  • -
  • Declarative
  • -
  • Mutliple Axes
  • -
- -

Become a Sponsor!

- - -

Contributors ✨

-
-

Thanks goes to these wonderful people (emoji key):

- - - - - - - -

Tanner Linsley

💻 🤔 💡 🚧 👀
- - - -

This project follows the all-contributors specification. Contributions of any kind welcome!

- -
-
-

Index

-
- -
-
-
-

Type aliases

-
- -

AlignMode

-
AlignMode: "auto" | "right" | "topRight" | "bottomRight" | "left" | "topLeft" | "bottomLeft" | "top" | "bottom" | "center"
- -
-
- -

AlignPosition

-
AlignPosition: "right" | "topRight" | "bottomRight" | "left" | "topLeft" | "bottomLeft" | "top" | "bottom"
- -
-
- -

AnchorMode

-
AnchorMode: "pointer" | "closest" | "center" | "top" | "bottom" | "left" | "right" | "gridTop" | "gridBottom" | "gridLeft" | "gridRight" | "gridCenter"
- -
-
- -

AxesInfo

-
AxesInfo: { xKey: "primary" | "secondary"; yKey: "primary" | "secondary" }
- -
-

Type declaration

-
    -
  • -
    xKey: "primary" | "secondary"
    -
  • -
  • -
    yKey: "primary" | "secondary"
    -
  • -
-
-
-
- -

Axis

-
Axis<TDatum>: AxisTime<TDatum> | AxisLinear<TDatum> | AxisBand<TDatum>
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisBand

-
AxisBand<TDatum>: Omit<AxisBase<TDatum> & ResolvedAxisOptions<AxisBandOptions<TDatum>>, "format"> & { axisFamily: "band"; format: (value: ChartValue<any>) => string; outerScale: ScaleBand<any>; scale: ScaleBand<any> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisBandOptions

-
AxisBandOptions<TDatum>: AxisOptionsBase & { getValue: (datum: TDatum) => ChartValue<any>; minBandSize?: number; scaleType: "band" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisBase

-
AxisBase<TDatum>: { _?: TDatum; isVertical: boolean; range: [number, number] }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional _?: TDatum
    -
  • -
  • -
    isVertical: boolean
    -
  • -
  • -
    range: [number, number]
    -
  • -
-
-
-
- -

AxisDimension

-
AxisDimension: { bottom: number; height: number; left: number; right: number; top: number; width: number }
- -
-

Type declaration

-
    -
  • -
    bottom: number
    -
  • -
  • -
    height: number
    -
  • -
  • -
    left: number
    -
  • -
  • -
    right: number
    -
  • -
  • -
    top: number
    -
  • -
  • -
    width: number
    -
  • -
-
-
-
- -

AxisDimensions

-
AxisDimensions: { bottom: Record<string, AxisDimension>; left: Record<string, AxisDimension>; right: Record<string, AxisDimension>; top: Record<string, AxisDimension> }
- -
-

Type declaration

- -
-
-
- -

AxisLinear

-
AxisLinear<TDatum>: Omit<AxisBase<TDatum> & ResolvedAxisOptions<AxisLinearOptions<TDatum>>, "format"> & { axisFamily: "linear"; bandScale: ScaleBand<number>; format: ReturnType<ScaleLinear<number, number, never>["tickFormat"]>; outerScale: ScaleLinear<number, number, never>; scale: ScaleLinear<number, number, never> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisLinearOptions

-
AxisLinearOptions<TDatum>: AxisOptionsBase & { base?: number; getValue: (datum: TDatum) => ChartValue<number>; hardMax?: number; hardMin?: number; max?: number; min?: number; scaleType: "linear" | "log" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisOptions

-
AxisOptions<TDatum>: AxisTimeOptions<TDatum> | AxisOrdinalOptions<TDatum> | AxisBandOptions<TDatum> | AxisLinearOptions<TDatum>
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisOptionsBase

-
AxisOptionsBase: { curve?: CurveFactory; elementType?: "line" | "area" | "bar"; id?: string; innerBandPadding?: number; invert?: boolean; isPrimary?: boolean; minTickPaddingForRotation?: number; outerBandPadding?: number; position: Position; primaryAxisId?: string; show?: boolean; showDatumElements?: boolean; showGrid?: boolean; showOrphanDatumElements?: boolean; stackOffset?: typeof stackOffsetNone; stacked?: boolean; styles?: CSSProperties & { line?: CSSProperties; tick?: CSSProperties }; tickLabelRotationDeg?: number }
- -
-

Type declaration

-
    -
  • -
    Optional curve?: CurveFactory
    -
  • -
  • -
    Optional elementType?: "line" | "area" | "bar"
    -
  • -
  • -
    Optional id?: string
    -
  • -
  • -
    Optional innerBandPadding?: number
    -
  • -
  • -
    Optional invert?: boolean
    -
  • -
  • -
    Optional isPrimary?: boolean
    -
  • -
  • -
    Optional minTickPaddingForRotation?: number
    -
  • -
  • -
    Optional outerBandPadding?: number
    -
  • -
  • -
    position: Position
    -
  • -
  • -
    Optional primaryAxisId?: string
    -
  • -
  • -
    Optional show?: boolean
    -
  • -
  • -
    Optional showDatumElements?: boolean
    -
  • -
  • -
    Optional showGrid?: boolean
    -
  • -
  • -
    Optional showOrphanDatumElements?: boolean
    -
  • -
  • -
    Optional stackOffset?: typeof stackOffsetNone
    -
  • -
  • -
    Optional stacked?: boolean
    -
  • -
  • -
    Optional styles?: CSSProperties & { line?: CSSProperties; tick?: CSSProperties }
    -
  • -
  • -
    Optional tickLabelRotationDeg?: number
    -
  • -
-
-
-
- -

AxisOrdinalOptions

-
AxisOrdinalOptions<TDatum>: AxisOptionsBase & { getValue: (datum: TDatum) => ChartValue<any>; scaleType: "ordinal" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisTime

-
AxisTime<TDatum>: Omit<AxisBase<TDatum> & ResolvedAxisOptions<AxisTimeOptions<TDatum>>, "format"> & { axisFamily: "time"; bandScale: ScaleBand<number>; format: ReturnType<ScaleTime<number, number, never>["tickFormat"]>; outerScale: ScaleTime<number, number, never>; scale: ScaleTime<number, number, never> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisTimeOptions

-
AxisTimeOptions<TDatum>: AxisOptionsBase & { base?: number; getValue: (datum: TDatum) => ChartValue<Date>; hardMax?: number; hardMin?: number; max?: number; min?: number; scaleType: "time" | "localTime" }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

AxisType

-
AxisType: "ordinal" | "time" | "localTime" | "linear" | "log"
- -
-
- -

ChartContextValue

-
ChartContextValue<TDatum>: { axesInfo: AxesInfo; getDatumStatusStyle: (datum: Datum<TDatum>, focusedDatum: Datum<TDatum> | null) => DatumStyles; getOptions: () => RequiredChartOptions<TDatum>; getSeriesStatusStyle: (series: Series<TDatum>, focusedDatum: Datum<TDatum> | null) => SeriesStyles; gridDimensions: GridDimensions; groupedDatums: Map<any, Datum<TDatum>[]>; height: number; orderedSeries: Series<TDatum>[]; primaryAxis: Axis<TDatum>; secondaryAxes: Axis<TDatum>[]; series: Series<TDatum>[]; svgRect: ClientRect; useAxisDimensionsAtom: () => [AxisDimensions, SetAtom<SetStateAction<AxisDimensions>>]; useFocusedDatumAtom: () => [Datum<TDatum> | null, SetAtom<SetStateAction<Datum<TDatum> | null>>]; width: number }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

- -
-
-
- -

ChartOffset

-
ChartOffset: { height: number; left: number; top: number; width: number }
- -
-

Type declaration

-
    -
  • -
    height: number
    -
  • -
  • -
    left: number
    -
  • -
  • -
    top: number
    -
  • -
  • -
    width: number
    -
  • -
-
-
-
- -

ChartOptions

-
ChartOptions<TDatum>: { brush?: { onSelect?: (selection: { end: unknown; pointer: Pointer; start: unknown }) => void; style?: CSSProperties }; dark?: boolean; data: UserSerie<TDatum>[]; defaultColors?: string[]; getDatumStyle?: (datum: Datum<TDatum>, status: DatumFocusStatus) => DatumStyles; getSeriesOrder?: (series: Series<TDatum>[]) => Series<TDatum>[]; getSeriesStyle?: (series: Series<TDatum>, status: SeriesFocusStatus) => SeriesStyles; groupingMode?: GroupingMode; initialHeight?: number; initialWidth?: number; onClickDatum?: (datum: Datum<TDatum> | null, event: React.MouseEvent<SVGSVGElement, MouseEvent>) => void; onFocusDatum?: (datum: Datum<TDatum> | null) => void; primaryAxis: AxisOptions<TDatum>; primaryCursor?: boolean | CursorOptions; renderSVG?: () => React.ReactNode; secondaryAxes: AxisOptions<TDatum>[]; secondaryCursor?: boolean | CursorOptions; showDebugAxes?: boolean; showVoronoi?: boolean; tooltip?: boolean | TooltipOptions<TDatum> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional brush?: { onSelect?: (selection: { end: unknown; pointer: Pointer; start: unknown }) => void; style?: CSSProperties }
    -
      -
    • -
      Optional onSelect?: (selection: { end: unknown; pointer: Pointer; start: unknown }) => void
      -
        -
      • -
          -
        • (selection: { end: unknown; pointer: Pointer; start: unknown }): void
        • -
        -
          -
        • -

          Parameters

          -
            -
          • -
            selection: { end: unknown; pointer: Pointer; start: unknown }
            -
              -
            • -
              end: unknown
              -
            • -
            • -
              pointer: Pointer
              -
            • -
            • -
              start: unknown
              -
            • -
            -
          • -
          -

          Returns void

          -
        • -
        -
      • -
      -
    • -
    • -
      Optional style?: CSSProperties
      -
    • -
    -
  • -
  • -
    Optional dark?: boolean
    -
  • -
  • -
    data: UserSerie<TDatum>[]
    -
  • -
  • -
    Optional defaultColors?: string[]
    -
  • -
  • -
    Optional getDatumStyle?: (datum: Datum<TDatum>, status: DatumFocusStatus) => DatumStyles
    - -
  • -
  • -
    Optional getSeriesOrder?: (series: Series<TDatum>[]) => Series<TDatum>[]
    -
      -
    • - -
        -
      • -

        Parameters

        -
          -
        • -
          series: Series<TDatum>[]
          -
        • -
        -

        Returns Series<TDatum>[]

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional getSeriesStyle?: (series: Series<TDatum>, status: SeriesFocusStatus) => SeriesStyles
    - -
  • -
  • -
    Optional groupingMode?: GroupingMode
    -
  • -
  • -
    Optional initialHeight?: number
    -
  • -
  • -
    Optional initialWidth?: number
    -
  • -
  • -
    Optional onClickDatum?: (datum: Datum<TDatum> | null, event: React.MouseEvent<SVGSVGElement, MouseEvent>) => void
    -
      -
    • -
        -
      • (datum: Datum<TDatum> | null, event: React.MouseEvent<SVGSVGElement, MouseEvent>): void
      • -
      -
        -
      • -

        Parameters

        -
          -
        • -
          datum: Datum<TDatum> | null
          -
        • -
        • -
          event: React.MouseEvent<SVGSVGElement, MouseEvent>
          -
        • -
        -

        Returns void

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional onFocusDatum?: (datum: Datum<TDatum> | null) => void
    -
      -
    • -
        -
      • (datum: Datum<TDatum> | null): void
      • -
      -
        -
      • -

        Parameters

        -
          -
        • -
          datum: Datum<TDatum> | null
          -
        • -
        -

        Returns void

        -
      • -
      -
    • -
    -
  • -
  • -
    primaryAxis: AxisOptions<TDatum>
    -
  • -
  • -
    Optional primaryCursor?: boolean | CursorOptions
    -
  • -
  • -
    Optional renderSVG?: () => React.ReactNode
    -
      -
    • -
        -
      • (): React.ReactNode
      • -
      -
        -
      • -

        Returns React.ReactNode

        -
      • -
      -
    • -
    -
  • -
  • -
    secondaryAxes: AxisOptions<TDatum>[]
    -
  • -
  • -
    Optional secondaryCursor?: boolean | CursorOptions
    -
  • -
  • -
    Optional showDebugAxes?: boolean
    -
  • -
  • -
    Optional showVoronoi?: boolean
    -
  • -
  • -
    Optional tooltip?: boolean | TooltipOptions<TDatum>
    -
  • -
-
-
-
- -

ChartValue

-
ChartValue<T>: T | null | undefined
- -

Type parameters

-
    -
  • -

    T

    -
  • -
-
-
- -

CursorOptions

-
CursorOptions: { axisId?: string; onChange?: () => void; show?: boolean; showLabel?: boolean; showLine?: boolean; value?: unknown }
- -
-

Type declaration

-
    -
  • -
    Optional axisId?: string
    -
  • -
  • -
    Optional onChange?: () => void
    -
      -
    • -
        -
      • (): void
      • -
      -
        -
      • -

        Returns void

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional show?: boolean
    -
  • -
  • -
    Optional showLabel?: boolean
    -
  • -
  • -
    Optional showLine?: boolean
    -
  • -
  • -
    Optional value?: unknown
    -
  • -
-
-
-
- -

Datum

-
Datum<TDatum>: { element?: Element | null; group?: Datum<TDatum>[]; index: number; originalDatum: TDatum; originalSeries: UserSerie<TDatum>; secondaryAxisId?: string; seriesId: string; seriesIndex: number; seriesLabel: string; stackData?: StackDatum<TDatum>; style?: CSSProperties }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional element?: Element | null
    -
  • -
  • -
    Optional group?: Datum<TDatum>[]
    -
  • -
  • -
    index: number
    -
  • -
  • -
    originalDatum: TDatum
    -
  • -
  • -
    originalSeries: UserSerie<TDatum>
    -
  • -
  • -
    Optional secondaryAxisId?: string
    -
  • -
  • -
    seriesId: string
    -
  • -
  • -
    seriesIndex: number
    -
  • -
  • -
    seriesLabel: string
    -
  • -
  • -
    Optional stackData?: StackDatum<TDatum>
    -
  • -
  • -
    Optional style?: CSSProperties
    -
  • -
-
-
-
- -

DatumFocusStatus

-
DatumFocusStatus: "none" | "focused" | "groupFocused"
- -
-
- -

DatumStyles

-
DatumStyles: CSSProperties & { area?: CSSProperties; circle?: CSSProperties; line?: CSSProperties; rectangle?: CSSProperties }
- -
-
- -

GridDimensions

-
GridDimensions: { gridHeight: number; gridWidth: number; gridX: number; gridY: number }
- -
-

Type declaration

-
    -
  • -
    gridHeight: number
    -
  • -
  • -
    gridWidth: number
    -
  • -
  • -
    gridX: number
    -
  • -
  • -
    gridY: number
    -
  • -
-
-
-
- -

GroupingMode

-
GroupingMode: "single" | "series" | "primary" | "secondary"
- -
-
- -

Measurement

-
Measurement: Side | "width" | "height"
- -
-
- -

Pointer

- - -
-
- -

PointerPressed

-
PointerPressed: PointerBase & { dragging: true; startX: number; startY: number }
- -
-
- -

PointerUnpressed

-
PointerUnpressed: PointerBase & { dragging: false }
- -
-
- -

Position

-
Position: "top" | "right" | "bottom" | "left"
- -
-
- -

RequiredChartOptions

-
RequiredChartOptions<TDatum>: TSTB.Object.Required<ChartOptions<TDatum>, "getSeriesStyle" | "getDatumStyle" | "getSeriesOrder" | "groupingMode" | "showVoronoi" | "defaultColors" | "initialWidth" | "initialHeight">
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

ResolvedAxisOptions

-
ResolvedAxisOptions<TAxisOptions>: TSTB.Object.Required<TAxisOptions & {}, "minTickPaddingForRotation" | "tickLabelRotationDeg" | "innerBandPadding" | "outerBandPadding" | "show" | "stacked">
- -

Type parameters

-
    -
  • -

    TAxisOptions

    -
  • -
-
-
- -

ResolvedTooltipOptions

-
ResolvedTooltipOptions<TDatum>: TSTB.Object.Required<TooltipOptions<TDatum>, "align" | "alignPriority" | "padding" | "tooltipArrowPadding" | "anchor" | "render">
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-
- -

Series

-
Series<TDatum>: { datums: Datum<TDatum>[]; id: string; index: number; label: string; originalSeries: UserSerie<TDatum>; secondaryAxisId?: string; style?: CSSProperties }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    datums: Datum<TDatum>[]
    -
  • -
  • -
    id: string
    -
  • -
  • -
    index: number
    -
  • -
  • -
    label: string
    -
  • -
  • -
    originalSeries: UserSerie<TDatum>
    -
  • -
  • -
    Optional secondaryAxisId?: string
    -
  • -
  • -
    Optional style?: CSSProperties
    -
  • -
-
-
-
- -

SeriesFocusStatus

-
SeriesFocusStatus: "none" | "focused"
- -
-
- -

SeriesStyles

-
SeriesStyles: CSSProperties & { area?: CSSProperties; circle?: CSSProperties; line?: CSSProperties; rectangle?: CSSProperties }
- -
-
- -

Side

-
Side: "left" | "right" | "top" | "bottom"
- -
-
- -

StackDatum

-
StackDatum<TDatum>: { 0: number; 1: number; data: Datum<TDatum> }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    0: number
    -
  • -
  • -
    1: number
    -
  • -
  • -
    data: Datum<TDatum>
    -
  • -
-
-
-
- -

TooltipOptions

-
TooltipOptions<TDatum>: { align?: AlignMode; alignPriority?: AlignPosition[]; invert?: boolean; padding?: number; render?: (props: TooltipRendererProps<TDatum>) => React.ReactNode; tooltipArrowPadding?: number }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional align?: AlignMode
    -
  • -
  • -
    Optional alignPriority?: AlignPosition[]
    -
  • -
  • -
    Optional invert?: boolean
    -
  • -
  • -
    Optional padding?: number
    -
  • -
  • -
    Optional render?: (props: TooltipRendererProps<TDatum>) => React.ReactNode
    -
      -
    • -
        -
      • (props: TooltipRendererProps<TDatum>): React.ReactNode
      • -
      -
        -
      • -

        Parameters

        -
          -
        • -
          props: TooltipRendererProps<TDatum>
          -
        • -
        -

        Returns React.ReactNode

        -
      • -
      -
    • -
    -
  • -
  • -
    Optional tooltipArrowPadding?: number
    -
  • -
-
-
-
- -

UserSerie

-
UserSerie<TDatum>: { color?: string; data: TDatum[]; id?: string; label?: string; primaryAxisId?: string; secondaryAxisId?: string }
- -

Type parameters

-
    -
  • -

    TDatum

    -
  • -
-
-

Type declaration

-
    -
  • -
    Optional color?: string
    -
  • -
  • -
    data: TDatum[]
    -
  • -
  • -
    Optional id?: string
    -
  • -
  • -
    Optional label?: string
    -
  • -
  • -
    Optional primaryAxisId?: string
    -
  • -
  • -
    Optional secondaryAxisId?: string
    -
  • -
-
-
-
-
-

Functions

-
- -

Chart

-
    -
  • Chart<TDatum>(__namedParameters: ComponentPropsWithoutRef<"div"> & { options: ChartOptions<TDatum> }): Element
  • -
-
    -
  • - -

    Type parameters

    -
      -
    • -

      TDatum

      -
    • -
    -

    Parameters

    -
      -
    • -
      __namedParameters: ComponentPropsWithoutRef<"div"> & { options: ChartOptions<TDatum> }
      -
    • -
    -

    Returns Element

    -
  • -
-
-
-
-
-

Legend

-
-
-
-
-
-

Generated using TypeDoc

-
-
-
- - - \ No newline at end of file + /***/ ( + __unused_webpack_module, + __webpack_exports__, + __webpack_require__ + ) => { + 'use strict' + eval( + '__webpack_require__.r(__webpack_exports__);\n/* harmony export */ __webpack_require__.d(__webpack_exports__, {\n/* harmony export */ "throttle": () => /* binding */ throttle\n/* harmony export */ });\nvar throttle = function (fn, wait) {\n if (wait === void 0) { wait = 100; }\n var time = Date.now();\n return function () {\n var args = [];\n for (var _i = 0; _i < arguments.length; _i++) {\n args[_i] = arguments[_i];\n }\n if (time + wait - Date.now() < 0) {\n fn.apply(void 0, args);\n time = Date.now();\n }\n };\n};\n\n\n//# sourceURL=webpack:///./default/assets/js/src/typedoc/utils/trottle.ts?' + ) + + /***/ + }, + + /******/ + } + /************************************************************************/ + /******/ // The module cache + /******/ var __webpack_module_cache__ = {} + /******/ + /******/ // The require function + /******/ function __webpack_require__(moduleId) { + /******/ // Check if module is in cache + /******/ if (__webpack_module_cache__[moduleId]) { + /******/ return __webpack_module_cache__[moduleId].exports + /******/ + } + /******/ // Create a new module (and put it into the cache) + /******/ var module = (__webpack_module_cache__[moduleId] = { + /******/ // no module.id needed + /******/ // no module.loaded needed + /******/ exports: {}, + /******/ + }) + /******/ + /******/ // Execute the module function + /******/ __webpack_modules__[moduleId]( + module, + module.exports, + __webpack_require__ + ) + /******/ + /******/ // Return the exports of the module + /******/ return module.exports + /******/ + } + /******/ + /************************************************************************/ + /******/ /* webpack/runtime/compat get default export */ + /******/ ;(() => { + /******/ // getDefaultExport function for compatibility with non-harmony modules + /******/ __webpack_require__.n = module => { + /******/ var getter = + module && module.__esModule + ? /******/ () => module['default'] + : /******/ () => module + /******/ __webpack_require__.d(getter, { a: getter }) + /******/ return getter + /******/ + } + /******/ + })() + /******/ + /******/ /* webpack/runtime/define property getters */ + /******/ ;(() => { + /******/ // define getter functions for harmony exports + /******/ __webpack_require__.d = (exports, definition) => { + /******/ for (var key in definition) { + /******/ if ( + __webpack_require__.o(definition, key) && + !__webpack_require__.o(exports, key) + ) { + /******/ Object.defineProperty(exports, key, { + enumerable: true, + get: definition[key], + }) + /******/ + } + /******/ + } + /******/ + } + /******/ + })() + /******/ + /******/ /* webpack/runtime/hasOwnProperty shorthand */ + /******/ ;(() => { + /******/ __webpack_require__.o = (obj, prop) => + Object.prototype.hasOwnProperty.call(obj, prop) + /******/ + })() + /******/ + /******/ /* webpack/runtime/make namespace object */ + /******/ ;(() => { + /******/ // define __esModule on exports + /******/ __webpack_require__.r = exports => { + /******/ if (typeof Symbol !== 'undefined' && Symbol.toStringTag) { + /******/ Object.defineProperty(exports, Symbol.toStringTag, { + value: 'Module', + }) + /******/ + } + /******/ Object.defineProperty(exports, '__esModule', { + value: true, + }) + /******/ + } + /******/ + })() + /******/ + /************************************************************************/ + /******/ // startup + /******/ // Load entry module + /******/ __webpack_require__('./default/assets/js/src/bootstrap.ts') + /******/ // This entry module used 'exports' so it can't be inlined + /******/ + })() + + +