interface PlotFastSequenceLineInterface {
    color?: string;
    height: number;
    mouseclick: (event: MouseEvent) => void;
    mouseleave: (event: MouseEvent) => void;
    mousemove: (event: MouseEvent) => void;
    trackG: Selection<SVGGElement, any, null, undefined>;
    xScale: RcsbScaleInterface;
    yScale: RcsbScaleInterface;
}

Properties

color?: string
height: number
mouseclick: (event: MouseEvent) => void
mouseleave: (event: MouseEvent) => void
mousemove: (event: MouseEvent) => void
trackG: Selection<SVGGElement, any, null, undefined>