Interface ComparisonAlignment

What one alignment pass did, for a host that wants to report coverage.

interface ComparisonAlignment {
    bars: number;
    dropped: number;
    gaps: number;
    matched: number;
}

Properties

bars: number

Items handed to the comparison series: one per primary bar.

dropped: number

Comparison prints discarded for having no primary bar at that time.

gaps: number

Primary bars with no comparison print (drawn as a gap).

matched: number

Primary bars the comparison also traded (a value is drawn).