torque-pro-assistant - v1.0.0
    Preparing search index...
    interface LineChartProps {
        data: readonly Readonly<Record<string, number | undefined>>[];
        height?: number;
        noAxes?: boolean;
        noLegend?: boolean;
        series: readonly LineChartSeries[];
        syncId?: string;
        testId?: string;
        xRange?: readonly [number, number];
        yLeftRange?: readonly [number, number];
        yRightRange?: readonly [number, number];
    }
    Index

    Properties

    data: readonly Readonly<Record<string, number | undefined>>[]
    height?: number

    Chart height in pixels. Width fills the parent via ResponsiveContainer.

    noAxes?: boolean

    Hide axis ticks + labels. Defaults to false.

    noLegend?: boolean

    Hide the legend strip below the chart. Defaults to false.

    series: readonly LineChartSeries[]
    syncId?: string

    Cross-chart cursor sync identifier. Multiple charts on the same page sharing this id will move their hover cursor together — matches the design's shared-cursor behavior in the Session detail Overview tab and the Compare overlay.

    testId?: string
    xRange?: readonly [number, number]

    Visible window over data as [fromIndex, toIndex] inclusive. When omitted, the chart shows all data. Used by the Brush component to drive a zoomed view.

    yLeftRange?: readonly [number, number]

    Fixed y-axis range for the left axis. Defaults to auto-scaled.

    yRightRange?: readonly [number, number]

    Fixed y-axis range for the right axis. Defaults to auto-scaled.