mirror of
https://github.com/nasa/openmct.git
synced 2025-06-22 17:08:57 +00:00
[Plot] Add initial stack-plot implementation
Add initial implementation of stacked mode for Plot view. Note that this will not stack correctly due to markup/style issues. WTD-625.
This commit is contained in:
@ -1,15 +1,15 @@
|
||||
/*global define*/
|
||||
|
||||
define(
|
||||
["./PlotOverlayMode"],
|
||||
function (PlotOverlayMode, PlotStackedMode) {
|
||||
["./PlotOverlayMode", "./PlotStackMode"],
|
||||
function (PlotOverlayMode, PlotStackMode) {
|
||||
"use strict";
|
||||
|
||||
var STACKED = {
|
||||
key: "stacked",
|
||||
name: "Stacked",
|
||||
glyph: "8",
|
||||
factory: PlotOverlayMode
|
||||
factory: PlotStackMode
|
||||
},
|
||||
OVERLAID = {
|
||||
key: "overlaid",
|
||||
|
Reference in New Issue
Block a user