@equinor/videx-wellog
Version:
Visualisation components for wellbore log data
16 lines (15 loc) • 494 B
TypeScript
import { TrackOptions } from '../interfaces';
export interface ScaleTrackOptions extends TrackOptions {
/**
* Units to show in legend if used in LogController
*/
units?: string;
}
export interface DualScaleTrackOptions extends ScaleTrackOptions {
/**
* What mode to show the scale in (0=master, 1=slave). Designed to be used
* with the InterpolatedScaleHandler, which allows you to toggle between two
* different scale domains.
*/
mode?: number;
}