MAIDR Documentation - v3.69.0
    Preparing search index...

    Interface VictoryLayerInfo

    Intermediate representation of a Victory data layer before conversion to the MAIDR schema.

    interface VictoryLayerInfo {
        id: string;
        victoryType: VictoryComponentType;
        data: VictoryLayerData;
        xAxisLabel?: string;
        yAxisLabel?: string;
        dataCount: number;
        legend?: string[];
    }
    Index

    Properties

    id: string

    Index-based layer ID.

    The Victory component type that produced this layer.

    Extracted and validated data points from the Victory component.

    xAxisLabel?: string

    X-axis label (from VictoryAxis or fallback).

    yAxisLabel?: string

    Y-axis label (from VictoryAxis or fallback).

    dataCount: number

    Number of data elements expected in the DOM (used for selector validation).

    legend?: string[]

    Legend labels for multi-series segmented charts.