@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.
- package/bundle/openbridge-webcomponents.bundle.js +4 -7
- package/bundle/openbridge-webcomponents.bundle.js.map +1 -1
- package/dist/navigation-instruments/indicator-graph/indicator-graph.d.ts.map +1 -1
- package/dist/navigation-instruments/indicator-graph/indicator-graph.js +4 -7
- package/dist/navigation-instruments/indicator-graph/indicator-graph.js.map +1 -1
- package/package.json +1 -1
|
@@ -219237,13 +219237,10 @@ let ObcIndicatorGraph = class extends i$4 {
|
|
|
219237
219237
|
if (!this.uplot) {
|
|
219238
219238
|
return;
|
|
219239
219239
|
}
|
|
219240
|
-
const
|
|
219241
|
-
this.
|
|
219242
|
-
|
|
219243
|
-
|
|
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) {
|