Highcharts Dashboards
    Preparing search index...

    Interface Options

    Options for each cell.

    interface Options {
        editMode?: {
            toolbarItems?: {
                destroy: { enabled?: boolean };
                drag: { enabled?: boolean };
                settings: { enabled?: boolean };
                viewFullscreen: { enabled?: boolean };
            };
        };
        height?: string
        | number;
        id: string;
        layout?: Options;
        parentContainerId?: string;
        style?: CSSJSONObject;
        width?: string | number;
    }
    Index
    editMode?: {
        toolbarItems?: {
            destroy: { enabled?: boolean };
            drag: { enabled?: boolean };
            settings: { enabled?: boolean };
            viewFullscreen: { enabled?: boolean };
        };
    }

    Options controlling the edit mode for the cell.

    Type Declaration

    • OptionaltoolbarItems?: {
          destroy: { enabled?: boolean };
          drag: { enabled?: boolean };
          settings: { enabled?: boolean };
          viewFullscreen: { enabled?: boolean };
      }

      Individual options for the toolbar items.

      • destroy: { enabled?: boolean }

        Options for the destroy toolbar item.

      • drag: { enabled?: boolean }

        Options for the drag toolbar item.

      • settings: { enabled?: boolean }

        Options for the settings toolbar item.

      • viewFullscreen: { enabled?: boolean }

        Options for the viewFullscreen toolbar item.

    height?: string | number

    Set height of the cell.

    id: string

    Unique cell id.

    layout?: Options

    To create a nested layout, add a layout object to a cell.

    Try it:

    Nested layout

    parentContainerId?: string

    Id of the container that holds the cell.

    style?: CSSJSONObject

    CSS styles for cell container.

    width?: string | number

    Set width of the cell.