@oicl/openbridge-webcomponents 2.0.0-next.74 → 2.0.0-next.75

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.
@@ -219237,13 +219237,10 @@ let ObcIndicatorGraph = class extends i$4 {
219237
219237
  if (!this.uplot) {
219238
219238
  return;
219239
219239
  }
219240
- const stroke = this._getStrokeColor();
219241
- this.uplot.setSeries(1, {
219242
- // @ts-expect-error - stroke is not a property of the Series interface
219243
- stroke,
219244
- width: this._getStrokeWidth(),
219245
- points: { show: false }
219246
- });
219240
+ const series = this.uplot.series[1];
219241
+ series.stroke = () => this._getStrokeColor();
219242
+ series.width = this._getStrokeWidth();
219243
+ this.uplot.redraw();
219247
219244
  }
219248
219245
  updateY() {
219249
219246
  if (!this.uplot) {