-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbase-plot.ts
79 lines (66 loc) · 2.28 KB
/
base-plot.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
/**
* Author: Thomas Goodwin
* Company: Geon Technologies, LLC
*
* (Abstract) Base Plot class to encourage a unified API going forward.
*/
import * as sigplot from 'sigplot';
import { FormatSize, FormatType } from '../bluefile/index';
import { ILayer } from '../layer/index';
import { Units } from '../m/index';
import { IConstructorOptions, ISettingsOptions } from './sigplot';
import { ConstructorOptions } from './constructor-options';
import { SettingsOptions } from './settings-options';
import { PlotData } from './plot-data';
/**
* BasePlot is an abstract base class for sigplot.Plot to help unify some of the
* API for downstream classes.
*
*/
export abstract class BasePlot {
// Reference to the sigplot.Plot instance
_plot: sigplot.Plot;
/**
* The settings related to the current plot. For use with checkSettings.
*/
get settings(): SettingsOptions {
return this._options;
}
/**
* If your ConstructorOptions use the default xlabel and ylabel, changing
* these values will update the X and Y labels by getting the string name
* of the enumeration (Units).
*/
set xlab(units: Units) { this._options.xlab = units; }
set ylab(units: Units) { this._options.ylab = units; }
/** The options used when creating the plot */
private _options: ConstructorOptions;
/**
* @param el - The DOM element to draw within (div, etc.)
* @param options - The ConstructorOptions for this plot.
*/
constructor (
el: any,
options: ConstructorOptions = new ConstructorOptions()
) {
this._plot = new sigplot.Plot(el, options.toInterface());
this._options = options;
}
/**
* If you resize the DOM element for the plot, call this to cause the plot
* to redraw
*/
checkResize() { this._plot.checkresize(); }
/**
* Push any changes in the settings to the underlying plot instance.
*/
checkSettings() { this._plot.change_settings(this.settings.toInterface()); }
/**
* Update the plot with the data buffer
*/
abstract push (plotData: PlotData, ...args: any[]);
/** Get the plot layer for the data */
abstract getLayer(...args: any[]): ILayer;
/** Remove a/the plot layer */
abstract removeLayer(...args: any[]): void;
}