GradientEdge CDK Utils
    Preparing search index...
    interface TextWidgetProps {
        background?: TextWidgetBackground;
        height?: number;
        markdown: string;
        positionX: number;
        positionY: number;
        type: string;
        width?: number;
    }

    Hierarchy

    • TextWidgetProps
      • TextWidgetProps
    Index

    Properties

    background?: TextWidgetBackground

    Background for the widget

    solid
    
    height?: number

    Height of the widget

    2
    
    markdown: string

    The text to display, in MarkDown format

    positionX: number

    The X position of the widget on the dashboard grid

    positionY: number

    The Y position of the widget on the dashboard grid

    type: string

    The widget type identifier

    width?: number

    Width of the widget, in a grid of 24 units wide

    6