UNPKG

@equinor/videx-wellog

Version:

Visualisation components for wellbore log data

13 lines (12 loc) 321 B
import Plot from './plot'; import { Scale } from '../common/interfaces'; import { DotPlotOptions } from './interfaces'; /** * Dot plot */ export default class DotPlot extends Plot<DotPlotOptions> { /** * Renders dot plot to canvas context */ plot(ctx: CanvasRenderingContext2D, scale: Scale): void; }