-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathdraw.js
633 lines (568 loc) · 25.6 KB
/
draw.js
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
/**
* Copyright 2012-2017, Plotly, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
'use strict';
var d3 = require('d3');
var tinycolor = require('tinycolor2');
var Plotly = require('../../plotly');
var Plots = require('../../plots/plots');
var Registry = require('../../registry');
var Axes = require('../../plots/cartesian/axes');
var dragElement = require('../dragelement');
var Lib = require('../../lib');
var extendFlat = require('../../lib/extend').extendFlat;
var setCursor = require('../../lib/setcursor');
var Drawing = require('../drawing');
var Color = require('../color');
var Titles = require('../titles');
var svgTextUtils = require('../../lib/svg_text_utils');
var LINE_SPACING = require('../../constants/alignment').LINE_SPACING;
var handleAxisDefaults = require('../../plots/cartesian/axis_defaults');
var handleAxisPositionDefaults = require('../../plots/cartesian/position_defaults');
var axisLayoutAttrs = require('../../plots/cartesian/layout_attributes');
var attributes = require('./attributes');
module.exports = function draw(gd, id) {
// opts: options object, containing everything from attributes
// plus a few others that are the equivalent of the colorbar "data"
var opts = {};
Object.keys(attributes).forEach(function(k) {
opts[k] = null;
});
// fillcolor can be a d3 scale, domain is z values, range is colors
// or leave it out for no fill,
// or set to a string constant for single-color fill
opts.fillcolor = null;
// line.color has the same options as fillcolor
opts.line = {color: null, width: null, dash: null};
// levels of lines to draw.
// note that this DOES NOT determine the extent of the bar
// that's given by the domain of fillcolor
// (or line.color if no fillcolor domain)
opts.levels = {start: null, end: null, size: null};
// separate fill levels (for example, heatmap coloring of a
// contour map) if this is omitted, fillcolors will be
// evaluated halfway between levels
opts.filllevels = null;
function component() {
var fullLayout = gd._fullLayout,
gs = fullLayout._size;
if((typeof opts.fillcolor !== 'function') &&
(typeof opts.line.color !== 'function')) {
fullLayout._infolayer.selectAll('g.' + id).remove();
return;
}
var zrange = d3.extent(((typeof opts.fillcolor === 'function') ?
opts.fillcolor : opts.line.color).domain()),
linelevels = [],
filllevels = [],
l,
linecolormap = typeof opts.line.color === 'function' ?
opts.line.color : function() { return opts.line.color; },
fillcolormap = typeof opts.fillcolor === 'function' ?
opts.fillcolor : function() { return opts.fillcolor; };
var l0 = opts.levels.end + opts.levels.size / 100,
ls = opts.levels.size,
zr0 = (1.001 * zrange[0] - 0.001 * zrange[1]),
zr1 = (1.001 * zrange[1] - 0.001 * zrange[0]);
for(l = opts.levels.start; (l - l0) * ls < 0; l += ls) {
if(l > zr0 && l < zr1) linelevels.push(l);
}
if(typeof opts.fillcolor === 'function') {
if(opts.filllevels) {
l0 = opts.filllevels.end + opts.filllevels.size / 100;
ls = opts.filllevels.size;
for(l = opts.filllevels.start; (l - l0) * ls < 0; l += ls) {
if(l > zrange[0] && l < zrange[1]) filllevels.push(l);
}
}
else {
filllevels = linelevels.map(function(v) {
return v - opts.levels.size / 2;
});
filllevels.push(filllevels[filllevels.length - 1] +
opts.levels.size);
}
}
else if(opts.fillcolor && typeof opts.fillcolor === 'string') {
// doesn't matter what this value is, with a single value
// we'll make a single fill rect covering the whole bar
filllevels = [0];
}
if(opts.levels.size < 0) {
linelevels.reverse();
filllevels.reverse();
}
// now make a Plotly Axes object to scale with and draw ticks
// TODO: does not support orientation other than right
// we calculate pixel sizes based on the specified graph size,
// not the actual (in case something pushed the margins around)
// which is a little odd but avoids an odd iterative effect
// when the colorbar itself is pushing the margins.
// but then the fractional size is calculated based on the
// actual graph size, so that the axes will size correctly.
var originalPlotHeight = fullLayout.height - fullLayout.margin.t - fullLayout.margin.b,
originalPlotWidth = fullLayout.width - fullLayout.margin.l - fullLayout.margin.r,
thickPx = Math.round(opts.thickness *
(opts.thicknessmode === 'fraction' ? originalPlotWidth : 1)),
thickFrac = thickPx / gs.w,
lenPx = Math.round(opts.len *
(opts.lenmode === 'fraction' ? originalPlotHeight : 1)),
lenFrac = lenPx / gs.h,
xpadFrac = opts.xpad / gs.w,
yExtraPx = (opts.borderwidth + opts.outlinewidth) / 2,
ypadFrac = opts.ypad / gs.h,
// x positioning: do it initially just for left anchor,
// then fix at the end (since we don't know the width yet)
xLeft = Math.round(opts.x * gs.w + opts.xpad),
// for dragging... this is getting a little muddled...
xLeftFrac = opts.x - thickFrac *
({middle: 0.5, right: 1}[opts.xanchor]||0),
// y positioning we can do correctly from the start
yBottomFrac = opts.y + lenFrac *
(({top: -0.5, bottom: 0.5}[opts.yanchor] || 0) - 0.5),
yBottomPx = Math.round(gs.h * (1 - yBottomFrac)),
yTopPx = yBottomPx - lenPx,
titleEl,
cbAxisIn = {
type: 'linear',
range: zrange,
tickmode: opts.tickmode,
nticks: opts.nticks,
tick0: opts.tick0,
dtick: opts.dtick,
tickvals: opts.tickvals,
ticktext: opts.ticktext,
ticks: opts.ticks,
ticklen: opts.ticklen,
tickwidth: opts.tickwidth,
tickcolor: opts.tickcolor,
showticklabels: opts.showticklabels,
tickfont: opts.tickfont,
tickangle: opts.tickangle,
tickformat: opts.tickformat,
exponentformat: opts.exponentformat,
separatethousands: opts.separatethousands,
showexponent: opts.showexponent,
showtickprefix: opts.showtickprefix,
tickprefix: opts.tickprefix,
showticksuffix: opts.showticksuffix,
ticksuffix: opts.ticksuffix,
title: opts.title,
titlefont: opts.titlefont,
showline: true,
anchor: 'free',
position: 1
},
cbAxisOut = {
type: 'linear',
_id: 'y' + id
},
axisOptions = {
letter: 'y',
font: fullLayout.font,
noHover: true,
calendar: fullLayout.calendar // not really necessary (yet?)
};
// Coerce w.r.t. Axes layoutAttributes:
// re-use axes.js logic without updating _fullData
function coerce(attr, dflt) {
return Lib.coerce(cbAxisIn, cbAxisOut, axisLayoutAttrs, attr, dflt);
}
// Prepare the Plotly axis object
handleAxisDefaults(cbAxisIn, cbAxisOut, coerce, axisOptions, fullLayout);
handleAxisPositionDefaults(cbAxisIn, cbAxisOut, coerce, axisOptions);
// position can't go in through supplyDefaults
// because that restricts it to [0,1]
cbAxisOut.position = opts.x + xpadFrac + thickFrac;
// save for other callers to access this axis
component.axis = cbAxisOut;
if(['top', 'bottom'].indexOf(opts.titleside) !== -1) {
cbAxisOut.titleside = opts.titleside;
cbAxisOut.titlex = opts.x + xpadFrac;
cbAxisOut.titley = yBottomFrac +
(opts.titleside === 'top' ? lenFrac - ypadFrac : ypadFrac);
}
if(opts.line.color && opts.tickmode === 'auto') {
cbAxisOut.tickmode = 'linear';
cbAxisOut.tick0 = opts.levels.start;
var dtick = opts.levels.size;
// expand if too many contours, so we don't get too many ticks
var autoNtick = Lib.constrain(
(yBottomPx - yTopPx) / 50, 4, 15) + 1,
dtFactor = (zrange[1] - zrange[0]) /
((opts.nticks || autoNtick) * dtick);
if(dtFactor > 1) {
var dtexp = Math.pow(10, Math.floor(
Math.log(dtFactor) / Math.LN10));
dtick *= dtexp * Lib.roundUp(dtFactor / dtexp, [2, 5, 10]);
// if the contours are at round multiples, reset tick0
// so they're still at round multiples. Otherwise,
// keep the first label on the first contour level
if((Math.abs(opts.levels.start) /
opts.levels.size + 1e-6) % 1 < 2e-6) {
cbAxisOut.tick0 = 0;
}
}
cbAxisOut.dtick = dtick;
}
// set domain after init, because we may want to
// allow it outside [0,1]
cbAxisOut.domain = [
yBottomFrac + ypadFrac,
yBottomFrac + lenFrac - ypadFrac
];
cbAxisOut.setScale();
// now draw the elements
var container = fullLayout._infolayer.selectAll('g.' + id).data([0]);
container.enter().append('g').classed(id, true)
.each(function() {
var s = d3.select(this);
s.append('rect').classed('cbbg', true);
s.append('g').classed('cbfills', true);
s.append('g').classed('cblines', true);
s.append('g').classed('cbaxis', true).classed('crisp', true);
s.append('g').classed('cbtitleunshift', true)
.append('g').classed('cbtitle', true);
s.append('rect').classed('cboutline', true);
s.select('.cbtitle').datum(0);
});
container.attr('transform', 'translate(' + Math.round(gs.l) +
',' + Math.round(gs.t) + ')');
// TODO: this opposite transform is a hack until we make it
// more rational which items get this offset
var titleCont = container.select('.cbtitleunshift')
.attr('transform', 'translate(-' +
Math.round(gs.l) + ',-' +
Math.round(gs.t) + ')');
cbAxisOut._axislayer = container.select('.cbaxis');
var titleHeight = 0;
if(['top', 'bottom'].indexOf(opts.titleside) !== -1) {
// draw the title so we know how much room it needs
// when we squish the axis. This one only applies to
// top or bottom titles, not right side.
var x = gs.l + (opts.x + xpadFrac) * gs.w,
fontSize = cbAxisOut.titlefont.size,
y;
if(opts.titleside === 'top') {
y = (1 - (yBottomFrac + lenFrac - ypadFrac)) * gs.h +
gs.t + 3 + fontSize * 0.75;
}
else {
y = (1 - (yBottomFrac + ypadFrac)) * gs.h +
gs.t - 3 - fontSize * 0.25;
}
drawTitle(cbAxisOut._id + 'title', {
attributes: {x: x, y: y, 'text-anchor': 'start'}
});
}
function drawAxis() {
if(['top', 'bottom'].indexOf(opts.titleside) !== -1) {
// squish the axis top to make room for the title
var titleGroup = container.select('.cbtitle'),
titleText = titleGroup.select('text'),
titleTrans =
[-opts.outlinewidth / 2, opts.outlinewidth / 2],
mathJaxNode = titleGroup
.select('.h' + cbAxisOut._id + 'title-math-group')
.node(),
lineSize = 15.6;
if(titleText.node()) {
lineSize =
parseInt(titleText.style('font-size'), 10) * LINE_SPACING;
}
if(mathJaxNode) {
titleHeight = Drawing.bBox(mathJaxNode).height;
if(titleHeight > lineSize) {
// not entirely sure how mathjax is doing
// vertical alignment, but this seems to work.
titleTrans[1] -= (titleHeight - lineSize) / 2;
}
}
else if(titleText.node() &&
!titleText.classed('js-placeholder')) {
titleHeight = Drawing.bBox(titleText.node()).height;
}
if(titleHeight) {
// buffer btwn colorbar and title
// TODO: configurable
titleHeight += 5;
if(opts.titleside === 'top') {
cbAxisOut.domain[1] -= titleHeight / gs.h;
titleTrans[1] *= -1;
}
else {
cbAxisOut.domain[0] += titleHeight / gs.h;
var nlines = svgTextUtils.lineCount(titleText);
titleTrans[1] += (1 - nlines) * lineSize;
}
titleGroup.attr('transform',
'translate(' + titleTrans + ')');
cbAxisOut.setScale();
}
}
container.selectAll('.cbfills,.cblines,.cbaxis')
.attr('transform', 'translate(0,' +
Math.round(gs.h * (1 - cbAxisOut.domain[1])) + ')');
var fills = container.select('.cbfills')
.selectAll('rect.cbfill')
.data(filllevels);
fills.enter().append('rect')
.classed('cbfill', true)
.style('stroke', 'none');
fills.exit().remove();
fills.each(function(d, i) {
var z = [
(i === 0) ? zrange[0] :
(filllevels[i] + filllevels[i - 1]) / 2,
(i === filllevels.length - 1) ? zrange[1] :
(filllevels[i] + filllevels[i + 1]) / 2
]
.map(cbAxisOut.c2p)
.map(Math.round);
// offset the side adjoining the next rectangle so they
// overlap, to prevent antialiasing gaps
if(i !== filllevels.length - 1) {
z[1] += (z[1] > z[0]) ? 1 : -1;
}
// Tinycolor can't handle exponents and
// at this scale, removing it makes no difference.
var colorString = fillcolormap(d).replace('e-', ''),
opaqueColor = tinycolor(colorString).toHexString();
// Colorbar cannot currently support opacities so we
// use an opaque fill even when alpha channels present
d3.select(this).attr({
x: xLeft,
width: Math.max(thickPx, 2),
y: d3.min(z),
height: Math.max(d3.max(z) - d3.min(z), 2),
fill: opaqueColor
});
});
var lines = container.select('.cblines')
.selectAll('path.cbline')
.data(opts.line.color && opts.line.width ?
linelevels : []);
lines.enter().append('path')
.classed('cbline', true);
lines.exit().remove();
lines.each(function(d) {
d3.select(this)
.attr('d', 'M' + xLeft + ',' +
(Math.round(cbAxisOut.c2p(d)) + (opts.line.width / 2) % 1) +
'h' + thickPx)
.call(Drawing.lineGroupStyle,
opts.line.width, linecolormap(d), opts.line.dash);
});
// force full redraw of labels and ticks
cbAxisOut._axislayer.selectAll('g.' + cbAxisOut._id + 'tick,path')
.remove();
cbAxisOut._pos = xLeft + thickPx +
(opts.outlinewidth||0) / 2 - (opts.ticks === 'outside' ? 1 : 0);
cbAxisOut.side = 'right';
// separate out axis and title drawing,
// so we don't need such complicated logic in Titles.draw
// if title is on the top or bottom, we've already drawn it
// this title call only handles side=right
return Lib.syncOrAsync([
function() {
return Axes.doTicks(gd, cbAxisOut, true);
},
function() {
if(['top', 'bottom'].indexOf(opts.titleside) === -1) {
var fontSize = cbAxisOut.titlefont.size,
y = cbAxisOut._offset + cbAxisOut._length / 2,
x = gs.l + (cbAxisOut.position || 0) * gs.w + ((cbAxisOut.side === 'right') ?
10 + fontSize * ((cbAxisOut.showticklabels ? 1 : 0.5)) :
-10 - fontSize * ((cbAxisOut.showticklabels ? 0.5 : 0)));
// the 'h' + is a hack to get around the fact that
// convertToTspans rotates any 'y...' class by 90 degrees.
// TODO: find a better way to control this.
drawTitle('h' + cbAxisOut._id + 'title', {
avoid: {
selection: d3.select(gd).selectAll('g.' + cbAxisOut._id + 'tick'),
side: opts.titleside,
offsetLeft: gs.l,
offsetTop: gs.t,
maxShift: fullLayout.width
},
attributes: {x: x, y: y, 'text-anchor': 'middle'},
transform: {rotate: '-90', offset: 0}
});
}
}]);
}
function drawTitle(titleClass, titleOpts) {
var trace = getTrace(),
propName;
if(Registry.traceIs(trace, 'markerColorscale')) {
propName = 'marker.colorbar.title';
}
else propName = 'colorbar.title';
var dfltTitleOpts = {
propContainer: cbAxisOut,
propName: propName,
traceIndex: trace.index,
dfltName: 'colorscale',
containerGroup: container.select('.cbtitle')
};
// this class-to-rotate thing with convertToTspans is
// getting hackier and hackier... delete groups with the
// wrong class (in case earlier the colorbar was drawn on
// a different side, I think?)
var otherClass = titleClass.charAt(0) === 'h' ?
titleClass.substr(1) : ('h' + titleClass);
container.selectAll('.' + otherClass + ',.' + otherClass + '-math-group')
.remove();
Titles.draw(gd, titleClass,
extendFlat(dfltTitleOpts, titleOpts || {}));
}
function positionCB() {
// wait for the axis & title to finish rendering before
// continuing positioning
// TODO: why are we redrawing multiple times now with this?
// I guess autoMargin doesn't like being post-promise?
var innerWidth = thickPx + opts.outlinewidth / 2 +
Drawing.bBox(cbAxisOut._axislayer.node()).width;
titleEl = titleCont.select('text');
if(titleEl.node() && !titleEl.classed('js-placeholder')) {
var mathJaxNode = titleCont
.select('.h' + cbAxisOut._id + 'title-math-group')
.node(),
titleWidth;
if(mathJaxNode &&
['top', 'bottom'].indexOf(opts.titleside) !== -1) {
titleWidth = Drawing.bBox(mathJaxNode).width;
}
else {
// note: the formula below works for all titlesides,
// (except for top/bottom mathjax, above)
// but the weird gs.l is because the titleunshift
// transform gets removed by Drawing.bBox
titleWidth =
Drawing.bBox(titleCont.node()).right -
xLeft - gs.l;
}
innerWidth = Math.max(innerWidth, titleWidth);
}
var outerwidth = 2 * opts.xpad + innerWidth +
opts.borderwidth + opts.outlinewidth / 2,
outerheight = yBottomPx - yTopPx;
container.select('.cbbg').attr({
x: xLeft - opts.xpad -
(opts.borderwidth + opts.outlinewidth) / 2,
y: yTopPx - yExtraPx,
width: Math.max(outerwidth, 2),
height: Math.max(outerheight + 2 * yExtraPx, 2)
})
.call(Color.fill, opts.bgcolor)
.call(Color.stroke, opts.bordercolor)
.style({'stroke-width': opts.borderwidth});
container.selectAll('.cboutline').attr({
x: xLeft,
y: yTopPx + opts.ypad +
(opts.titleside === 'top' ? titleHeight : 0),
width: Math.max(thickPx, 2),
height: Math.max(outerheight - 2 * opts.ypad - titleHeight, 2)
})
.call(Color.stroke, opts.outlinecolor)
.style({
fill: 'None',
'stroke-width': opts.outlinewidth
});
// fix positioning for xanchor!='left'
var xoffset = ({center: 0.5, right: 1}[opts.xanchor] || 0) *
outerwidth;
container.attr('transform',
'translate(' + (gs.l - xoffset) + ',' + gs.t + ')');
// auto margin adjustment
Plots.autoMargin(gd, id, {
x: opts.x,
y: opts.y,
l: outerwidth * ({right: 1, center: 0.5}[opts.xanchor] || 0),
r: outerwidth * ({left: 1, center: 0.5}[opts.xanchor] || 0),
t: outerheight * ({bottom: 1, middle: 0.5}[opts.yanchor] || 0),
b: outerheight * ({top: 1, middle: 0.5}[opts.yanchor] || 0)
});
}
var cbDone = Lib.syncOrAsync([
Plots.previousPromises,
drawAxis,
Plots.previousPromises,
positionCB
], gd);
if(cbDone && cbDone.then) (gd._promises || []).push(cbDone);
// dragging...
if(gd._context.edits.colorbarPosition) {
var t0,
xf,
yf;
dragElement.init({
element: container.node(),
gd: gd,
prepFn: function() {
t0 = container.attr('transform');
setCursor(container);
},
moveFn: function(dx, dy) {
container.attr('transform',
t0 + ' ' + 'translate(' + dx + ',' + dy + ')');
xf = dragElement.align(xLeftFrac + (dx / gs.w), thickFrac,
0, 1, opts.xanchor);
yf = dragElement.align(yBottomFrac - (dy / gs.h), lenFrac,
0, 1, opts.yanchor);
var csr = dragElement.getCursor(xf, yf,
opts.xanchor, opts.yanchor);
setCursor(container, csr);
},
doneFn: function(dragged) {
setCursor(container);
if(dragged && xf !== undefined && yf !== undefined) {
Plotly.restyle(gd,
{'colorbar.x': xf, 'colorbar.y': yf},
getTrace().index);
}
}
});
}
return cbDone;
}
function getTrace() {
var idNum = id.substr(2),
i,
trace;
for(i = 0; i < gd._fullData.length; i++) {
trace = gd._fullData[i];
if(trace.uid === idNum) return trace;
}
}
// setter/getters for every item defined in opts
Object.keys(opts).forEach(function(name) {
component[name] = function(v) {
// getter
if(!arguments.length) return opts[name];
// setter - for multi-part properties,
// set only the parts that are provided
opts[name] = Lib.isPlainObject(opts[name]) ?
Lib.extendFlat(opts[name], v) :
v;
return component;
};
});
// or use .options to set multiple options at once via a dictionary
component.options = function(o) {
Object.keys(o).forEach(function(name) {
// in case something random comes through
// that's not an option, ignore it
if(typeof component[name] === 'function') {
component[name](o[name]);
}
});
return component;
};
component._opts = opts;
return component;
};