Highcharts Dashboards
    Preparing search index...

    Options for the row.

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

    Properties

    cells?: Options[]

    An array of cells to be added to the row.

    editMode?: {
        toolbarItems?: {
            destroy: { enabled?: boolean };
            drag: { enabled?: boolean };
            settings: { enabled?: boolean };
        };
    }

    Options controlling the edit mode for the cell.

    Type Declaration

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

      Individual options for the toolbar items.

      • destroy: { enabled?: boolean }

        Options for the destroy toolbar item.

      • drag: { enabled?: boolean }

        Options for the settings toolbar item.

      • settings: { enabled?: boolean }

        Options for the settings toolbar item.

    id?: string

    A unique id for the row.

    parentContainerId?: string

    The id of the container element.

    style?: CSSJSONObject

    CSS styles for the row.