Interface BinaryOperation

BinaryOperation

interface BinaryOperation {
    left?: null | string;
    operator: OperatorEnum;
    right?: null | string;
}

Properties

Properties

left?: null | string

The name of the data series used as the left (first) operand of the binary operation.

BinaryOperation

operator: OperatorEnum

BinaryOperation

right?: null | string

The name of the data series used as the right (second) operand of the binary operation.

BinaryOperation