interface Delta {
    decreasing: {
        color: Color;
        symbol: string;
    };
    increasing: {
        color: Color;
        symbol: string;
    };
    position:
        | "left"
        | "right"
        | "top"
        | "bottom";
    reference: number;
    relative: boolean;
    valueformat: string;
}

Properties

decreasing: {
    color: Color;
    symbol: string;
}
increasing: {
    color: Color;
    symbol: string;
}
position:
    | "left"
    | "right"
    | "top"
    | "bottom"
reference: number
relative: boolean
valueformat: string