@tetacom/ng-components 1.0.15 → 1.0.16
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.
|
@@ -11117,6 +11117,7 @@ class TetaChart {
|
|
|
11117
11117
|
.attr('y2', this._height -
|
|
11118
11118
|
this._options.bounds.top -
|
|
11119
11119
|
this._options.bounds.bottom)
|
|
11120
|
+
.style('display', (d) => ((d === null || d === void 0 ? void 0 : d.resizable) ? 'unset' : 'none'))
|
|
11120
11121
|
.attr('transform', `translate(0, ${this._options.bounds.top})`)
|
|
11121
11122
|
.style('stroke-width', 8)
|
|
11122
11123
|
.style('stroke', 'rgba(0, 0, 0, 0)')
|
|
@@ -11171,6 +11172,7 @@ class TetaChart {
|
|
|
11171
11172
|
.data(axis.options.plotBands)
|
|
11172
11173
|
.join('line')
|
|
11173
11174
|
.attr('class', 'drag-right')
|
|
11175
|
+
.style('display', (d) => ((d === null || d === void 0 ? void 0 : d.resizable) ? 'unset' : 'none'))
|
|
11174
11176
|
.attr('x1', (d) => x(d.to))
|
|
11175
11177
|
.attr('x2', (d) => x(d.to))
|
|
11176
11178
|
.attr('y1', 0)
|