fcharts-js - v0.3.0
    Preparing search index...

    Interface ResolvedSeries

    A series with all optional fields resolved to concrete defaults.

    interface ResolvedSeries {
        color: string;
        dash: number[];
        downColor: string;
        fillAlpha: number;
        index: number;
        name: string;
        slots: number;
        type: "line" | "area" | "candle";
        upColor: string;
        visible: boolean;
        width: number;
    }
    Index

    Properties

    color: string
    dash: number[]

    Resolved dash pattern; [] = solid.

    downColor: string
    fillAlpha: number
    index: number

    First y-slot in ChartData.y / .pyramids (candles span index..index+3: OHLC).

    name: string
    slots: number

    Y-slots consumed: 4 for candle, 1 otherwise.

    type: "line" | "area" | "candle"
    upColor: string

    Candle body colors (unused for line/area).

    visible: boolean
    width: number