axidio-styleguide-library1-v2 0.1.65 → 0.1.66

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.
@@ -7261,27 +7261,26 @@ class HorizontalBarsWithScrollZoomComponent extends ComponentUniqueId {
7261
7261
  .attr('transform', 'translate(' + xScale.bandwidth() / 2 + ',' + height + ')')
7262
7262
  .call(d3.axisBottom(xScale).tickSize(-height).tickFormat(''))
7263
7263
  .style('stroke-dasharray', '5 5')
7264
- .style('color', 'var(--chart-grid-color, #999999)')
7264
+ .style('color', '#999999')
7265
+ // .style("opacity", "0.5")
7265
7266
  .call((g) => g.select('.domain').remove());
7266
7267
  }
7267
7268
  /**
7268
7269
  * used to draw y-axis grid
7269
7270
  */
7270
7271
  if (self.chartConfiguration.yAxisGrid) {
7271
- // svg
7272
- // .append('g')
7273
- // .attr('class', 'grid')
7274
- // .call(
7275
- // d3
7276
- // .axisLeft(yScale)
7277
- // .ticks(self.chartConfiguration.numberOfYTicks)
7278
- // .tickSize(-width)
7279
- // .tickFormat('')
7280
- // )
7281
- // // Remove hardcoded colors and use CSS variables
7282
- // .style('color', 'var(--chart-grid-color)')
7283
- // .style('opacity', '1')
7284
- // // .call((g) => g.select('.domain').remove());
7272
+ svg
7273
+ .append('g')
7274
+ .attr('class', 'grid')
7275
+ .call(d3
7276
+ .axisLeft(yScale)
7277
+ .ticks(self.chartConfiguration.numberOfYTicks)
7278
+ .tickSize(-width)
7279
+ .tickFormat(''))
7280
+ // Remove hardcoded colors and use CSS variables
7281
+ .style('color', 'var(--chart-grid-color)')
7282
+ .style('opacity', '1');
7283
+ // .call((g) => g.select('.domain').remove());
7285
7284
  }
7286
7285
  var layer = svg
7287
7286
  .selectAll('.layer')