@byomakase/omakase-player
    Preparing search index...

    Interface LineChartLaneConfig

    interface LineChartLaneConfig {
        axiosConfig?: AxiosRequestConfig<any>;
        description?: string;
        downsamplePeriod?: number;
        downsampleStrategy?: DownsampleStrategy;
        id?: string;
        layoutEasingDuration?: number;
        lineStyleFn?: (index: number, count: number) => Partial<LineChartLaneStyle>;
        loadingAnimationEnabled?: boolean;
        minimized?: boolean;
        style: LineChartLaneStyle;
        vttFile?: LineChartVttFile;
        vttUrl?: string;
        yMax?: number;
        yMin?: number;
    }

    Hierarchy

    Index

    Properties

    axiosConfig?: AxiosRequestConfig<any>
    description?: string
    downsamplePeriod?: number

    Period for downsampling in milliseconds

    downsampleStrategy?: DownsampleStrategy

    Strategy for downsampling (supported values: none, drop, min, max, and avg)

    id?: string
    layoutEasingDuration?: number
    lineStyleFn?: (index: number, count: number) => Partial<LineChartLaneStyle>
    loadingAnimationEnabled?: boolean
    minimized?: boolean
    vttUrl?: string
    yMax?: number
    yMin?: number