Highcharts Dashboards
    Preparing search index...

    Options for each cell.

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

    Properties

    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.

    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.