evui 3.4.94 → 3.4.95
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/dist/evui.common.js
CHANGED
|
@@ -11160,7 +11160,7 @@ module.exports = exports;
|
|
|
11160
11160
|
/***/ "9224":
|
|
11161
11161
|
/***/ (function(module) {
|
|
11162
11162
|
|
|
11163
|
-
module.exports = JSON.parse("{\"a\":\"3.4.
|
|
11163
|
+
module.exports = JSON.parse("{\"a\":\"3.4.95\"}");
|
|
11164
11164
|
|
|
11165
11165
|
/***/ }),
|
|
11166
11166
|
|
|
@@ -41698,6 +41698,11 @@ var element_line_Line = /*#__PURE__*/function () {
|
|
|
41698
41698
|
ctx.lineJoin = 'round';
|
|
41699
41699
|
ctx.lineWidth = lineWidth;
|
|
41700
41700
|
ctx.strokeStyle = helpers_util.colorStringToRgba(mainColor, mainColorOpacity);
|
|
41701
|
+
|
|
41702
|
+
if (this.segments) {
|
|
41703
|
+
ctx.setLineDash(this.segments);
|
|
41704
|
+
}
|
|
41705
|
+
|
|
41701
41706
|
var endPoint = chartRect.y2 - labelOffset.bottom;
|
|
41702
41707
|
var x;
|
|
41703
41708
|
var y;
|
|
@@ -41770,7 +41775,12 @@ var element_line_Line = /*#__PURE__*/function () {
|
|
|
41770
41775
|
|
|
41771
41776
|
return curr;
|
|
41772
41777
|
}, this.data[0]);
|
|
41773
|
-
ctx.stroke();
|
|
41778
|
+
ctx.stroke();
|
|
41779
|
+
|
|
41780
|
+
if (this.segments) {
|
|
41781
|
+
ctx.setLineDash([]);
|
|
41782
|
+
} // draw fill
|
|
41783
|
+
|
|
41774
41784
|
|
|
41775
41785
|
if (this.fill && this.data.length) {
|
|
41776
41786
|
var _this$fill;
|