[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:
Victor Woeltjen
2014-12-10 20:16:23 -08:00
parent eb90a3eeba
commit cd8deca1b3
2 changed files with 74 additions and 3 deletions

View File

@ -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",