@equinor/videx-wellog
Version:
Visualisation components for wellbore log data
9 lines (8 loc) • 475 B
TypeScript
import { D3Selection } from '../../common/interfaces';
import { LegendBounds } from '../../utils/legend-helper';
import { DifferentialPlotLegendInfo } from './interfaces';
import DifferentialPlot from '../differential-plot';
/**
* Renders differential plot legend to a SVG group element according to bounds.
*/
export default function renderDifferentialPlotLegend(g: D3Selection, bounds: LegendBounds, legendInfo: DifferentialPlotLegendInfo, plot: DifferentialPlot): void;