@websy/websy-designs 1.7.18 → 1.7.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/websy-designs-es6.debug.js +152 -68
- package/dist/websy-designs-es6.js +166 -69
- package/dist/websy-designs-es6.min.js +1 -1
- package/dist/websy-designs.debug.js +583 -68
- package/dist/websy-designs.js +632 -69
- package/dist/websy-designs.min.css +1 -1
- package/dist/websy-designs.min.js +1 -1
- package/package.json +1 -1
|
@@ -1644,8 +1644,8 @@ var WebsyDragDrop = /*#__PURE__*/function () {
|
|
|
1644
1644
|
el.innerHTML = html;
|
|
1645
1645
|
this.options.items.forEach(function (item, i) {
|
|
1646
1646
|
if (item.component) {
|
|
1647
|
-
if (item.isQlikPlugin && WebsyDesigns.
|
|
1648
|
-
item.instance = new WebsyDesigns.
|
|
1647
|
+
if (item.isQlikPlugin && WebsyDesigns.QlikPlugins[item.component]) {
|
|
1648
|
+
item.instance = new WebsyDesigns.QlikPlugins[item.component]("".concat(item.id, "_component"), item.options);
|
|
1649
1649
|
} else if (WebsyDesigns[item.component]) {
|
|
1650
1650
|
item.instance = new WebsyDesigns[item.component]("".concat(item.id, "_component"), item.options);
|
|
1651
1651
|
} else {
|
|
@@ -5157,13 +5157,25 @@ var Switch = /*#__PURE__*/function () {
|
|
|
5157
5157
|
key: "disable",
|
|
5158
5158
|
value: function disable() {
|
|
5159
5159
|
this.options.enabled = false;
|
|
5160
|
-
this.
|
|
5160
|
+
var method = this.options.enabled === true ? 'add' : 'remove';
|
|
5161
|
+
var el = document.getElementById("".concat(this.elementId, "_switch"));
|
|
5162
|
+
el.classList[method]('enabled');
|
|
5163
|
+
|
|
5164
|
+
if (this.options.onToggle) {
|
|
5165
|
+
this.options.onToggle(this.options.enabled);
|
|
5166
|
+
}
|
|
5161
5167
|
}
|
|
5162
5168
|
}, {
|
|
5163
5169
|
key: "enable",
|
|
5164
5170
|
value: function enable() {
|
|
5165
5171
|
this.options.enabled = true;
|
|
5166
|
-
this.
|
|
5172
|
+
var method = this.options.enabled === true ? 'add' : 'remove';
|
|
5173
|
+
var el = document.getElementById("".concat(this.elementId, "_switch"));
|
|
5174
|
+
el.classList[method]('enabled');
|
|
5175
|
+
|
|
5176
|
+
if (this.options.onToggle) {
|
|
5177
|
+
this.options.onToggle(this.options.enabled);
|
|
5178
|
+
}
|
|
5167
5179
|
}
|
|
5168
5180
|
}, {
|
|
5169
5181
|
key: "handleClick",
|
|
@@ -6637,7 +6649,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
6637
6649
|
var el = document.getElementById(this.elementId);
|
|
6638
6650
|
|
|
6639
6651
|
if (el) {
|
|
6640
|
-
var html = "\n <div id='".concat(this.elementId, "_tableContainer' class='websy-vis-table-3 ").concat(this.options.paging === 'pages' ? 'with-paging' : '', " ").concat(this.options.virtualScroll === true ? 'with-virtual-scroll' : '', "'>\n <!--<div class=\"download-button\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M16 11h5l-9 10-9-10h5v-11h8v11zm1 11h-10v2h10v-2z\"/></svg>\n </div>-->\n <div id=\"").concat(this.elementId, "_tableInner\" class=\"websy-table-inner-container\">\n <table id=\"").concat(this.elementId, "_tableHeader\" class=\"websy-table-header\"></table>\n <table id=\"").concat(this.elementId, "_tableBody\" class=\"websy-table-body\"></table>\n <table id=\"").concat(this.elementId, "_tableFooter\" class=\"websy-table-footer\"></table>\n <div id=\"").concat(this.elementId, "_vScrollContainer\" class=\"websy-v-scroll-container\">\n <div id=\"").concat(this.elementId, "_vScrollHandle\" class=\"websy-scroll-handle websy-scroll-handle-y\"></div>\n </div>\n <div id=\"").concat(this.elementId, "_hScrollContainer\" class=\"websy-h-scroll-container\">\n <div id=\"").concat(this.elementId, "_hScrollHandle\" class=\"websy-scroll-handle websy-scroll-handle-x\"></div>\n </div>\n ");
|
|
6652
|
+
var html = "\n <div id='".concat(this.elementId, "_tableContainer' class='websy-vis-table-3 ").concat(this.options.paging === 'pages' ? 'with-paging' : '', " ").concat(this.options.virtualScroll === true ? 'with-virtual-scroll' : '', " ").concat(this.isTouchDevice === true && this.options.virtualScroll === true ? 'touch-device' : '', "'>\n <!--<div class=\"download-button\">\n <svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" viewBox=\"0 0 24 24\"><path d=\"M16 11h5l-9 10-9-10h5v-11h8v11zm1 11h-10v2h10v-2z\"/></svg>\n </div>-->\n <div id=\"").concat(this.elementId, "_tableInner\" class=\"websy-table-inner-container\">\n <table id=\"").concat(this.elementId, "_tableHeader\" class=\"websy-table-header\"></table>\n <table id=\"").concat(this.elementId, "_tableBody\" class=\"websy-table-body\"></table>\n <table id=\"").concat(this.elementId, "_tableFooter\" class=\"websy-table-footer\"></table>\n <div id=\"").concat(this.elementId, "_vScrollContainer\" class=\"websy-v-scroll-container\">\n <div id=\"").concat(this.elementId, "_vScrollHandle\" class=\"websy-scroll-handle websy-scroll-handle-y\"></div>\n </div>\n <div id=\"").concat(this.elementId, "_hScrollContainer\" class=\"websy-h-scroll-container\">\n <div id=\"").concat(this.elementId, "_hScrollHandle\" class=\"websy-scroll-handle websy-scroll-handle-x\"></div>\n </div>\n ");
|
|
6641
6653
|
|
|
6642
6654
|
if (this.isTouchDevice === true && this.options.virtualScroll === true) {
|
|
6643
6655
|
html += "\n <div id=\"".concat(this.elementId, "_touchScroller\" class=\"websy-table-touch-scroller\"></div>\n ");
|
|
@@ -7165,7 +7177,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7165
7177
|
}, {
|
|
7166
7178
|
key: "handleMouseDown",
|
|
7167
7179
|
value: function handleMouseDown(event) {
|
|
7168
|
-
if (this.isTouchDevice
|
|
7180
|
+
if (this.isTouchDevice) {
|
|
7169
7181
|
return;
|
|
7170
7182
|
}
|
|
7171
7183
|
|
|
@@ -7178,6 +7190,10 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7178
7190
|
this.mouseYStart = event.pageY; // console.log('mouse down', this.handleYStart, this.mouseYStart)
|
|
7179
7191
|
// console.log(scrollHandleEl.offsetTop)
|
|
7180
7192
|
} else if (event.target.classList.contains('websy-scroll-handle-x')) {
|
|
7193
|
+
if (this.isTouchDevice) {
|
|
7194
|
+
event.preventDefault();
|
|
7195
|
+
}
|
|
7196
|
+
|
|
7181
7197
|
this.scrollDragging = true;
|
|
7182
7198
|
this.scrollDirection = 'x';
|
|
7183
7199
|
|
|
@@ -7192,6 +7208,10 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7192
7208
|
value: function handleMouseMove(event) {
|
|
7193
7209
|
// event.preventDefault()
|
|
7194
7210
|
if (this.scrollDragging === true) {
|
|
7211
|
+
if (this.isTouchDevice) {
|
|
7212
|
+
event.preventDefault();
|
|
7213
|
+
}
|
|
7214
|
+
|
|
7195
7215
|
if (this.scrollDirection === 'y') {
|
|
7196
7216
|
var diff = event.pageY - this.mouseYStart;
|
|
7197
7217
|
this.scrollY(diff);
|
|
@@ -7219,21 +7239,40 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7219
7239
|
event.preventDefault(); // console.log('scrollwheel', event)
|
|
7220
7240
|
|
|
7221
7241
|
if (Math.abs(event.deltaX) > Math.abs(event.deltaY)) {
|
|
7222
|
-
this.scrollX(Math.max(-2, Math.min(2, event.deltaX)))
|
|
7242
|
+
// this.scrollX(Math.max(-2, Math.min(2, event.deltaX)))
|
|
7243
|
+
if (this.hScrollRequired === false) {
|
|
7244
|
+
return;
|
|
7245
|
+
}
|
|
7246
|
+
|
|
7247
|
+
var scrollHandleEl = document.getElementById("".concat(this.elementId, "_hScrollHandle"));
|
|
7248
|
+
var scrollContainerEl = document.getElementById("".concat(this.elementId, "_hScrollContainer"));
|
|
7249
|
+
var resolvedDelta = (scrollContainerEl.getBoundingClientRect().width - scrollHandleEl.getBoundingClientRect().width) / this.totalColumnCount;
|
|
7250
|
+
|
|
7251
|
+
if (event.deltaX < 0) {
|
|
7252
|
+
resolvedDelta = resolvedDelta * -1;
|
|
7253
|
+
}
|
|
7254
|
+
|
|
7255
|
+
this.scrollX(resolvedDelta);
|
|
7223
7256
|
} else {
|
|
7224
7257
|
// console.log('delta', event.deltaY)
|
|
7225
7258
|
// force the scroll to be a single row at a time
|
|
7226
|
-
|
|
7227
|
-
|
|
7228
|
-
|
|
7259
|
+
if (this.vScrollRequired === false) {
|
|
7260
|
+
return;
|
|
7261
|
+
}
|
|
7262
|
+
|
|
7263
|
+
var _scrollHandleEl2 = document.getElementById("".concat(this.elementId, "_vScrollHandle"));
|
|
7264
|
+
|
|
7265
|
+
var _scrollContainerEl = document.getElementById("".concat(this.elementId, "_vScrollContainer"));
|
|
7266
|
+
|
|
7267
|
+
var _resolvedDelta = (_scrollContainerEl.getBoundingClientRect().height - _scrollHandleEl2.getBoundingClientRect().height) / this.totalRowCount;
|
|
7229
7268
|
|
|
7230
7269
|
if (event.deltaY < 0) {
|
|
7231
|
-
|
|
7270
|
+
_resolvedDelta = _resolvedDelta * -1;
|
|
7232
7271
|
} // console.log('resolvedDelta', resolvedDelta)
|
|
7233
7272
|
// this.scrollY(Math.max(-2, Math.min(2, event.deltaY)))
|
|
7234
7273
|
|
|
7235
7274
|
|
|
7236
|
-
this.scrollY(
|
|
7275
|
+
this.scrollY(_resolvedDelta);
|
|
7237
7276
|
}
|
|
7238
7277
|
} else if (this.options.onNativeScroll) {
|
|
7239
7278
|
var el = document.getElementById("".concat(this.elementId, "_tableBody"));
|
|
@@ -7244,12 +7283,19 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7244
7283
|
key: "handleTouchEnd",
|
|
7245
7284
|
value: function handleTouchEnd(event) {
|
|
7246
7285
|
// console.log('touch end fired')
|
|
7247
|
-
|
|
7248
|
-
|
|
7249
|
-
|
|
7250
|
-
|
|
7286
|
+
this.scrollDragging = false;
|
|
7287
|
+
this.cellDragging = false;
|
|
7288
|
+
this.handleYStart = null;
|
|
7289
|
+
this.mouseYStart = null;
|
|
7290
|
+
this.handleXStart = null;
|
|
7291
|
+
this.mouseXStart = null;
|
|
7251
7292
|
|
|
7252
|
-
|
|
7293
|
+
if (typeof event.targetTouches !== 'undefined') {
|
|
7294
|
+
this.isTouchScrolling = false; // this.touchEndTime = (new Date()).getTime()
|
|
7295
|
+
// this.isPerpetual = true
|
|
7296
|
+
// this.perpetualScroll()
|
|
7297
|
+
// this.touchStartTime = null
|
|
7298
|
+
// const touchScrollEl = document.getElementById(`${this.elementId}_touchScroller`)
|
|
7253
7299
|
// touchScrollEl.classList.add('hidden')
|
|
7254
7300
|
}
|
|
7255
7301
|
}
|
|
@@ -7262,46 +7308,70 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7262
7308
|
event.stopPropagation();
|
|
7263
7309
|
|
|
7264
7310
|
if (typeof event.targetTouches !== 'undefined' && event.targetTouches.length > 0) {
|
|
7265
|
-
|
|
7266
|
-
|
|
7267
|
-
|
|
7268
|
-
|
|
7269
|
-
|
|
7270
|
-
|
|
7271
|
-
|
|
7272
|
-
|
|
7273
|
-
|
|
7274
|
-
|
|
7275
|
-
|
|
7276
|
-
//
|
|
7277
|
-
// }
|
|
7278
|
-
//
|
|
7279
|
-
//
|
|
7280
|
-
//
|
|
7281
|
-
//
|
|
7282
|
-
//
|
|
7283
|
-
//
|
|
7284
|
-
//
|
|
7285
|
-
//
|
|
7286
|
-
//
|
|
7287
|
-
//
|
|
7288
|
-
//
|
|
7311
|
+
event.deltaX = this.touchXStart - event.targetTouches[0].pageX;
|
|
7312
|
+
event.deltaY = this.touchYStart - event.targetTouches[0].pageY;
|
|
7313
|
+
|
|
7314
|
+
if (Math.abs(event.deltaY) > 50) {
|
|
7315
|
+
event.deltaX = 0;
|
|
7316
|
+
this.handleScrollWheel(event);
|
|
7317
|
+
} else if (Math.abs(event.deltaX) > 50) {
|
|
7318
|
+
event.deltaY = 0;
|
|
7319
|
+
this.handleScrollWheel(event);
|
|
7320
|
+
} // let deltaX = (this.mouseXStart - event.targetTouches[0].pageX)
|
|
7321
|
+
// let deltaY = (this.mouseYStart - event.targetTouches[0].pageY)
|
|
7322
|
+
// const hScrollContainerEl = document.getElementById(`${this.elementId}_hScrollContainer`)
|
|
7323
|
+
// const vScrollContainerEl = document.getElementById(`${this.elementId}_vScrollContainer`)
|
|
7324
|
+
// const hScrollHandleEl = document.getElementById(`${this.elementId}_hScrollHandle`)
|
|
7325
|
+
// const vScrollHandleEl = document.getElementById(`${this.elementId}_vScrollHandle`)
|
|
7326
|
+
// let translatedDeltaX = deltaX * (hScrollHandleEl.getBoundingClientRect().width / vScrollContainerEl.getBoundingClientRect().width)
|
|
7327
|
+
// let translatedDeltaY = deltaY * (vScrollHandleEl.getBoundingClientRect().height / vScrollContainerEl.getBoundingClientRect().height)
|
|
7328
|
+
// // need to adjust the delta so that it scrolls at a reasonable speed/distance
|
|
7329
|
+
// const scrollHandleXEl = document.getElementById(`${this.elementId}_hScrollHandle`)
|
|
7330
|
+
// const scrollHandleYEl = document.getElementById(`${this.elementId}_vScrollHandle`)
|
|
7331
|
+
// // if (Math.abs(deltaY) > this.sizes.cellHeight) {
|
|
7332
|
+
// // this.isTouchScrolling = true
|
|
7333
|
+
// // }
|
|
7334
|
+
// // else {
|
|
7335
|
+
// // this.isTouchScrolling = false
|
|
7336
|
+
// // }
|
|
7337
|
+
// // console.log('delta', this.mouseYStart, event.targetTouches[0].pageY, deltaY)
|
|
7338
|
+
// // deltaX = deltaX * (scrollHandleXEl.offsetWidth / this.sizes.scrollableWidth)
|
|
7339
|
+
// // deltaY = deltaY * (scrollHandleYEl.offsetHeight / this.sizes.bodyHeight)
|
|
7340
|
+
// // console.log('delta', deltaY)
|
|
7341
|
+
// // NW
|
|
7342
|
+
// // else if (Math.abs(deltaX) > 50) {
|
|
7343
|
+
// // this.isTouchScrolling = false
|
|
7344
|
+
// // }
|
|
7345
|
+
// this.currentClientY = event.targetTouches[0].pageY
|
|
7346
|
+
// this.currentTouchtime = (new Date()).getTime()
|
|
7347
|
+
// // end
|
|
7348
|
+
// // delta = Math.min(10, delta)
|
|
7349
|
+
// // delta = Math.max(-10, delta)
|
|
7350
|
+
// if (this.isTouchScrolling === true) {
|
|
7351
|
+
// // this.$scope.scrollTop += (delta / (this.$scope.layout.qHyperCube.qSize.qcy / this.$scope.rowsToLoad / (this.$scope.totalSpaceAvailable / 250)))
|
|
7352
|
+
// if (Math.abs(deltaX) > Math.abs(deltaY) && deltaX > 20) {
|
|
7353
|
+
// // this.scrollX(Math.max(-5, Math.min(5, translatedDeltaX)))
|
|
7354
|
+
// this.scrollX(translatedDeltaX)
|
|
7355
|
+
// }
|
|
7356
|
+
// else if (deltaY > 20) {
|
|
7357
|
+
// // this.scrollY(Math.max(-5, Math.min(5, translatedDeltaY)))
|
|
7358
|
+
// this.scrollY(translatedDeltaY)
|
|
7359
|
+
// }
|
|
7360
|
+
// }
|
|
7289
7361
|
|
|
7290
|
-
|
|
7291
|
-
|
|
7292
|
-
|
|
7293
|
-
|
|
7294
|
-
|
|
7295
|
-
|
|
7296
|
-
|
|
7297
|
-
|
|
7298
|
-
|
|
7299
|
-
|
|
7300
|
-
|
|
7301
|
-
|
|
7302
|
-
|
|
7303
|
-
}
|
|
7304
|
-
}
|
|
7362
|
+
}
|
|
7363
|
+
}
|
|
7364
|
+
|
|
7365
|
+
if (this.scrollDragging === true) {
|
|
7366
|
+
event.preventDefault();
|
|
7367
|
+
|
|
7368
|
+
if (this.scrollDirection === 'y') {
|
|
7369
|
+
var diff = event.targetTouches[0].pageY - this.mouseYStart;
|
|
7370
|
+
this.scrollY(diff);
|
|
7371
|
+
} else if (this.scrollDirection === 'x') {
|
|
7372
|
+
var _diff2 = event.targetTouches[0].pageX - this.mouseXStart;
|
|
7373
|
+
|
|
7374
|
+
this.scrollX(_diff2);
|
|
7305
7375
|
}
|
|
7306
7376
|
}
|
|
7307
7377
|
}
|
|
@@ -7317,19 +7387,44 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7317
7387
|
} // console.log(event.target.classList)
|
|
7318
7388
|
|
|
7319
7389
|
|
|
7320
|
-
if (
|
|
7321
|
-
this.
|
|
7322
|
-
|
|
7323
|
-
|
|
7324
|
-
this.mouseYStart = event.targetTouches[0].pageY;
|
|
7325
|
-
this.mouseXStart = event.targetTouches[0].pageX; // const touchScrollEl = document.getElementById(`${this.elementId}_touchScroller`)
|
|
7326
|
-
// touchScrollEl.classList.remove('hidden')
|
|
7390
|
+
if (event.target.classList.contains('websy-table-touch-scroller')) {
|
|
7391
|
+
if (this.options.virtualScroll === true) {
|
|
7392
|
+
// this.touchStartTime = (new Date()).getTime()
|
|
7393
|
+
this.isTouchScrolling = true; // this.isPerpetual = false
|
|
7327
7394
|
|
|
7328
|
-
|
|
7329
|
-
|
|
7330
|
-
|
|
7331
|
-
this.handleXStart = handleXEl.offsetLeft;
|
|
7395
|
+
this.touchYStart = event.targetTouches[0].pageY;
|
|
7396
|
+
this.touchXStart = event.targetTouches[0].pageX;
|
|
7397
|
+
}
|
|
7332
7398
|
}
|
|
7399
|
+
|
|
7400
|
+
if (event.target.classList.contains('websy-scroll-handle-y')) {
|
|
7401
|
+
// set up the scroll start values
|
|
7402
|
+
this.scrollDragging = true;
|
|
7403
|
+
this.scrollDirection = 'y';
|
|
7404
|
+
var scrollHandleEl = document.getElementById("".concat(this.elementId, "_vScrollHandle"));
|
|
7405
|
+
this.handleYStart = scrollHandleEl.offsetTop;
|
|
7406
|
+
this.mouseYStart = event.targetTouches[0].pageY; // console.log('mouse down', this.handleYStart, this.mouseYStart)
|
|
7407
|
+
// console.log(scrollHandleEl.offsetTop)
|
|
7408
|
+
} else if (event.target.classList.contains('websy-scroll-handle-x')) {
|
|
7409
|
+
if (this.isTouchDevice) {
|
|
7410
|
+
event.preventDefault();
|
|
7411
|
+
}
|
|
7412
|
+
|
|
7413
|
+
this.scrollDragging = true;
|
|
7414
|
+
this.scrollDirection = 'x';
|
|
7415
|
+
|
|
7416
|
+
var _scrollHandleEl3 = document.getElementById("".concat(this.elementId, "_hScrollHandle"));
|
|
7417
|
+
|
|
7418
|
+
this.handleXStart = _scrollHandleEl3.offsetLeft;
|
|
7419
|
+
this.mouseXStart = event.targetTouches[0].pageX;
|
|
7420
|
+
} // // const touchScrollEl = document.getElementById(`${this.elementId}_touchScroller`)
|
|
7421
|
+
// // touchScrollEl.classList.remove('hidden')
|
|
7422
|
+
// const handleYEl = document.getElementById(`${this.elementId}_vScrollHandle`)
|
|
7423
|
+
// this.handleYStart = handleYEl.offsetTop
|
|
7424
|
+
// const handleXEl = document.getElementById(`${this.elementId}_hScrollHandle`)
|
|
7425
|
+
// this.handleXStart = handleXEl.offsetLeft
|
|
7426
|
+
// }
|
|
7427
|
+
|
|
7333
7428
|
}
|
|
7334
7429
|
}, {
|
|
7335
7430
|
key: "hideError",
|
|
@@ -7474,7 +7569,7 @@ var WebsyTable3 = /*#__PURE__*/function () {
|
|
|
7474
7569
|
|
|
7475
7570
|
if (this.hScrollRequired === true) {
|
|
7476
7571
|
hScrollEl.style.left = "".concat(this.sizes.table.width - this.sizes.scrollableWidth, "px");
|
|
7477
|
-
hScrollEl.style.width = "".concat(this.sizes.scrollableWidth - 20, "px");
|
|
7572
|
+
hScrollEl.style.width = "".concat(this.sizes.scrollableWidth - (this.isTouchDevice ? 30 : 20), "px");
|
|
7478
7573
|
hHandleEl.style.width = Math.max(this.options.minHandleSize, this.sizes.scrollableWidth * (this.sizes.scrollableWidth / this.sizes.totalNonPinnedWidth)) + 'px';
|
|
7479
7574
|
} else {
|
|
7480
7575
|
hHandleEl.style.width = '0px';
|
|
@@ -9450,7 +9545,9 @@ var WebsyChart = /*#__PURE__*/function () {
|
|
|
9450
9545
|
key: "removebar",
|
|
9451
9546
|
value: function removebar(key) {
|
|
9452
9547
|
/* global key d3 */
|
|
9453
|
-
|
|
9548
|
+
this.barLayer.selectAll(".bar_".concat(key)).transition(this.transition).style('fill-opacity', 1e-6).remove(); // remove from the brush as well
|
|
9549
|
+
|
|
9550
|
+
this.brushArea.selectAll(".bar_".concat(key)).transition(this.transition).style('fill-opacity', 1e-6).remove();
|
|
9454
9551
|
}
|
|
9455
9552
|
}, {
|
|
9456
9553
|
key: "renderLabels",
|