stream-charts
    Preparing search index...
    interface Props {
        axisAssignments?: Map<string, AxesAssignment>;
        barMargin?: number;
        barSeriesStyle?: BarSeriesStyle;
        dropDataAfter?: number;
        panEnabled?: boolean;
        showMeanValueLines?: boolean;
        showMinMaxBars?: boolean;
        showValueLines?: boolean;
        showWindowedMeanValueLines?: boolean;
        showWindowedMinMaxBars?: boolean;
        zoomEnabled?: boolean;
        zoomKeyModifiersRequired?: boolean;
    }
    Index

    Properties

    axisAssignments?: Map<string, AxesAssignment>

    Holds the mapping between a series and the axis it uses (is assigned). The map's key holds the series name, and the value is an AxesAssignment object holding the ID of the assigned x-axis and y-axis.

    barMargin?: number

    The (optional, default = 2 pixels) top and bottom margin (in pixels) for the spike lines in the plot. Margins on individual series can also be set through the Chart.seriesStyles property.

    barSeriesStyle?: BarSeriesStyle

    The (optional) default style for the bar series that are used if no other styles are specified

    dropDataAfter?: number

    The number of milliseconds worth of data to hold in memory before dropping it. Defaults to infinity (i.e. no data is dropped)

    panEnabled?: boolean

    Enables panning (default is false)

    showMeanValueLines?: boolean
    showMinMaxBars?: boolean
    showValueLines?: boolean
    showWindowedMeanValueLines?: boolean
    showWindowedMinMaxBars?: boolean
    zoomEnabled?: boolean

    Enables zooming (default is false)

    zoomKeyModifiersRequired?: boolean

    When true, requires that the shift or control key be pressed while scrolling in order to activate the zoom