Metadata

Metadata

Metadata extensions allow you to see metadata that has been set previously with an import file transformer. Here is the code that can be used for metadata.

CellMetadata {
  key: string;
  value: string;
  type?: string;
  pinned?: boolean;
  config?: {
        backgroundColor: string;
        color: string;
        borderColor: string;
  }
}

The code above is useful for providing additional info that will describe a line. Meanwhile, users can choose additional info to show only in the extension or above the related row.

Last updated