@rekurt/openkline - v0.2.0
    Preparing search index...

    Interface BaselineRenderOptions

    Per-series options for BaselineRenderer. All optional — omit for a sensible default (base value = first visible close, bull/bear theme colors).

    interface BaselineRenderOptions {
        baseValue?: number;
        bottomFill?: string;
        bottomLine?: string;
        topFill?: string;
        topLine?: string;
    }
    Index

    Properties

    baseValue?: number

    Price level the series is colored relative to. Above it uses the "top" colors, below it the "bottom" colors. Defaults to the first visible close (a dynamic baseline that tracks horizontal scroll) when omitted.

    bottomFill?: string

    Fill color below the baseline. Default: theme.bearCandle.

    bottomLine?: string

    Line color below the baseline. Default: theme.bearCandle.

    topFill?: string

    Fill color above the baseline. Default: theme.bullCandle.

    topLine?: string

    Line color above the baseline. Default: theme.bullCandle.