@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.
@@ -11029,6 +11029,7 @@ class TetaChart {
11029
11029
  .attr('y2', this._height -
11030
11030
  this._options.bounds.top -
11031
11031
  this._options.bounds.bottom)
11032
+ .style('display', (d) => (d?.resizable ? 'unset' : 'none'))
11032
11033
  .attr('transform', `translate(0, ${this._options.bounds.top})`)
11033
11034
  .style('stroke-width', 8)
11034
11035
  .style('stroke', 'rgba(0, 0, 0, 0)')
@@ -11082,6 +11083,7 @@ class TetaChart {
11082
11083
  .data(axis.options.plotBands)
11083
11084
  .join('line')
11084
11085
  .attr('class', 'drag-right')
11086
+ .style('display', (d) => (d?.resizable ? 'unset' : 'none'))
11085
11087
  .attr('x1', (d) => x(d.to))
11086
11088
  .attr('x2', (d) => x(d.to))
11087
11089
  .attr('y1', 0)