MAIDR JavaScript API
    Preparing search index...

    Live am5 series grouped exactly as the adapter groups them when building layers, so each MAIDR layer can be matched back to its source series.

    Index

    Properties

    barSeriesList: AmXYSeries[]

    Single → BAR layer; multiple → one segmented layer.

    dotSeriesList: AmXYSeries[]

    One DOT layer each, in series order.

    lollipopSeriesList: AmXYSeries[]

    One LOLLIPOP layer each, in series order.

    lineSeriesList: AmXYSeries[]

    Merged into a single multi-line layer (one entry per line) — a LINE, or the BUMP the same lines become when they carry ranks. The two are one bucket because they are one layer: what differs is how the numbers are announced, not which mark each position addresses.

    stepSeriesList: AmXYSeries[]

    Merged into a single STEP layer, the staircase counterpart of the above.

    areaSeriesList: AmXYSeries[]

    Merged into one AREA / STACKED_AREA / NORMALIZED_AREA layer.

    radarSeriesList: AmXYSeries[]

    Merged into a single RADAR layer (one entry per closed outline).

    polarSeriesList: AmXYSeries[]

    Merged into a single POLAR_AREA layer, the wedge counterpart of the above.

    histogramSeries: AmXYSeries[]

    One HISTOGRAM layer each, in series order.

    heatmapSeries: AmXYSeries[]

    One HEATMAP layer each, in series order.

    pieSeriesList: AmXYSeries[]

    One PIE layer each, in series order.

    funnelSeriesList: AmXYSeries[]

    One FUNNEL layer each, in series order.

    waterfallSeriesList: AmXYSeries[]

    One WATERFALL layer each, in series order.

    candlestickSeriesList: AmXYSeries[]

    One CANDLESTICK layer each, in series order.

    A candlestick and an OHLC share the bucket for the reason they share a trace type: the same five numbers, a different mark, and the same one column per candle for the highlight to point at (#1053).

    dumbbellSeriesList: AmXYSeries[]

    One DUMBBELL layer each, in series order.

    ganttSeriesList: AmXYSeries[]

    One GANTT layer each, in series order.

    hierarchySeriesList: AmXYSeries[]

    One TREEMAP, ICICLE or SUNBURST layer each, in series order.

    One bucket for three layouts because they are one tree drawn three ways and the highlight walks the same nodes whichever it is. Which mark to measure is decided from the layer's trace type where the resolver is built, since that is the part that differs.

    wordCloudSeriesList: AmXYSeries[]

    One WORD_CLOUD layer each, in series order.

    flowSeriesList: AmXYSeries[]

    One SANKEY or CHORD layer each, in series order.

    One bucket for both because they are one weighted graph drawn two ways — the same extractFlowLinks walk, the same ribbon per link — and only the announced type differs. An ArcDiagram lands here too, as a sankey. A declared alluvial does not: it is the same am5flow series read a third way, so it travels in declaredList with the other declared layers.

    networkSeriesList: AmXYSeries[]

    One NETWORK layer each, in series order.

    choroplethSeriesList: AmChoroplethSource[]

    One CHOROPLETH layer each, in series order.

    The one bucket that carries a declaration alongside the series, because a map is the one type this adapter reads BOTH ways: an am5map MapPolygonSeries bound to a valueField is a choropleth on its own, and one whose value hangs on a column amCharts was never told about is a choropleth the author declared. Both emit TraceType.CHOROPLETH, so one ordered bucket keeps the layers and their sources in step — which two buckets could not, since the layers interleave in series order.

    declaredList: AmDeclaredLayer[]

    One layer each for the series that declared what they mean, in series order — a survival curve, an error bar, a forest plot, a cloud.

    Kept as the plan rather than as a series list: a declared layer routinely spans several series (the column drawing an interval, the arms merged into one curve), and the highlight has to walk exactly the ones the layer was built from.