UNPKG

@equinor/videx-wellog

Version:

Visualisation components for wellbore log data

15 lines (14 loc) 396 B
import Plot from './plot'; import { AreaPlotOptions } from './interfaces'; import { Scale } from '../common/interfaces'; /** * Area plot */ export default class AreaPlot extends Plot<AreaPlotOptions> { /** * Renders area plot to canvas context * @param ctx canvas context instance * @param scale y-scale */ plot(ctx: CanvasRenderingContext2D, scale: Scale): void; }