interface CommonCellContext {
    $column: any;
    $data: IDataContext;
    $scalar: Record<string, any>;
    Series: typeof Series;
    $const(name: string, value: string): void;
}

Hierarchy (View Summary)

Properties

Methods

Properties

$column: any

A column object

$scalar: Record<string, any>

Object containing all defined scalar values

Series: typeof Series

Methods

  • Assign a value in the current context

    Parameters

    • name: string

      name of the variable

    • value: string

      value to assign

    Returns void