scichart 2.0.2185 → 2.0.2186
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.
|
@@ -87,19 +87,19 @@ var CursorModifier = /** @class */ (function (_super) {
|
|
|
87
87
|
/**
|
|
88
88
|
* Gets or sets the xAxis label text color as an HTML Color code
|
|
89
89
|
*/
|
|
90
|
-
_this.xAxisLabelStroke =
|
|
90
|
+
_this.xAxisLabelStroke = undefined;
|
|
91
91
|
/**
|
|
92
92
|
* Gets or sets the xAxis label fill as an HTML Color code.
|
|
93
93
|
*/
|
|
94
|
-
_this.xAxisLabelFill =
|
|
94
|
+
_this.xAxisLabelFill = undefined;
|
|
95
95
|
/**
|
|
96
96
|
* Gets or sets the xAxis label text color as an HTML Color code
|
|
97
97
|
*/
|
|
98
|
-
_this.yAxisLabelStroke =
|
|
98
|
+
_this.yAxisLabelStroke = undefined;
|
|
99
99
|
/**
|
|
100
100
|
* Gets or sets the xAxis label fill as an HTML Color code.
|
|
101
101
|
*/
|
|
102
|
-
_this.yAxisLabelFill =
|
|
102
|
+
_this.yAxisLabelFill = undefined;
|
|
103
103
|
/**
|
|
104
104
|
* Gets or sets the legend X offset
|
|
105
105
|
*/
|
|
@@ -172,8 +172,8 @@ var CursorModifier = /** @class */ (function (_super) {
|
|
|
172
172
|
var yAxisLabelFill = this.yAxisLabelFill ? this.yAxisLabelFill : this.axisLabelFill;
|
|
173
173
|
var xAxisLabelStroke = this.xAxisLabelStroke ? this.xAxisLabelStroke : this.axisLabelStroke;
|
|
174
174
|
var yAxisLabelStroke = this.yAxisLabelStroke ? this.yAxisLabelStroke : this.axisLabelStroke;
|
|
175
|
-
this.xLineAnnotation = this.newLineAnnotation(xAxisLabelFill,
|
|
176
|
-
this.yLineAnnotation = this.newLineAnnotation(
|
|
175
|
+
this.xLineAnnotation = this.newLineAnnotation(xAxisLabelFill, xAxisLabelStroke);
|
|
176
|
+
this.yLineAnnotation = this.newLineAnnotation(yAxisLabelFill, yAxisLabelStroke);
|
|
177
177
|
this.tooltipAnnotation = new CursorTooltipSvgAnnotation_1.CursorTooltipSvgAnnotation({
|
|
178
178
|
cursorModifier: this,
|
|
179
179
|
xCoordinateMode: AnnotationBase_1.ECoordinateMode.Pixel,
|