Timeline Studio API Documentation - v0.26.0
    Preparing search index...
    interface CellConfiguration {
        alignX?: "center" | "left" | "right";
        alignY?: "bottom" | "top" | "center";
        background?: {
            color?: string;
            gradient?: string;
            image?: string;
            opacity?: number;
        };
        border?: {
            color?: string;
            radius?: string;
            style?: "solid"
            | "dashed"
            | "dotted";
            width?: string;
        };
        fitMode?: "fill"
        | "contain"
        | "cover";
        initialPosition?: { x: number; y: number };
        initialScale?: number;
        margin?: string;
        padding?: string;
        title?: {
            position?:
                | "center"
                | "top-left"
                | "top-right"
                | "bottom-left"
                | "bottom-right";
            show: boolean;
            style?: {
                color?: string;
                fontFamily?: string;
                fontSize?: string;
                fontWeight?: string;
                margin?: string;
                opacity?: number;
                padding?: string;
                transform?: string;
            };
            text?: string;
        };
    }
    Index

    Properties

    alignX?: "center" | "left" | "right"
    alignY?: "bottom" | "top" | "center"
    background?: {
        color?: string;
        gradient?: string;
        image?: string;
        opacity?: number;
    }
    border?: {
        color?: string;
        radius?: string;
        style?: "solid" | "dashed" | "dotted";
        width?: string;
    }
    fitMode?: "fill" | "contain" | "cover"
    initialPosition?: { x: number; y: number }
    initialScale?: number
    margin?: string
    padding?: string
    title?: {
        position?:
            | "center"
            | "top-left"
            | "top-right"
            | "bottom-left"
            | "bottom-right";
        show: boolean;
        style?: {
            color?: string;
            fontFamily?: string;
            fontSize?: string;
            fontWeight?: string;
            margin?: string;
            opacity?: number;
            padding?: string;
            transform?: string;
        };
        text?: string;
    }