igniteui-webcomponents-charts 7.1.1-beta.3 → 7.1.1-beta.4
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.
|
@@ -63,6 +63,7 @@ export declare class AnnotationLayerProxy extends Base implements IAnnotationLay
|
|
|
63
63
|
setCollisionMode(a: Series, b: CalloutCollisionMode): void;
|
|
64
64
|
setUseItemColorForFill(a: Series, b: boolean): void;
|
|
65
65
|
setUseItemColorForOutline(a: Series, b: boolean): void;
|
|
66
|
+
invalidateCalloutContent(a: Series): void;
|
|
66
67
|
setCalloutStrokeThickness(a: Series, b: number): void;
|
|
67
68
|
setUseAutoContrastingLabelColors(a: Series, b: boolean): void;
|
|
68
69
|
setCalloutBackground(a: Series, b: Brush): void;
|
|
@@ -3334,7 +3334,17 @@ class DomainChart extends Base {
|
|
|
3334
3334
|
this.y = this.ae(this.ad);
|
|
3335
3335
|
break;
|
|
3336
3336
|
case "ActualBrushes":
|
|
3337
|
-
this.wp((d) =>
|
|
3337
|
+
this.wp((d) => {
|
|
3338
|
+
d.ag = this.x;
|
|
3339
|
+
d.p2();
|
|
3340
|
+
}, true, a);
|
|
3341
|
+
if (this.gw || this.gv) {
|
|
3342
|
+
this.vw((d) => {
|
|
3343
|
+
if (this.cg.isCalloutLayer(d)) {
|
|
3344
|
+
this.cg.invalidateCalloutContent(d);
|
|
3345
|
+
}
|
|
3346
|
+
});
|
|
3347
|
+
}
|
|
3338
3348
|
break;
|
|
3339
3349
|
case "ActualOutlines":
|
|
3340
3350
|
this.wp((d) => d.aj = this.y, true, a);
|
|
@@ -3078,6 +3078,7 @@ export interface IAnnotationLayerProxy {
|
|
|
3078
3078
|
resetUserAnnotationLayer(a: Series): void;
|
|
3079
3079
|
setUseItemColorForFill(a: Series, b: boolean): void;
|
|
3080
3080
|
setUseItemColorForOutline(a: Series, b: boolean): void;
|
|
3081
|
+
invalidateCalloutContent(a: Series): void;
|
|
3081
3082
|
setUseAutoContrastingLabelColors(a: Series, b: boolean): void;
|
|
3082
3083
|
setCalloutStrokeThickness(a: Series, b: number): void;
|
|
3083
3084
|
setCalloutBackground(a: Series, b: Brush): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-charts",
|
|
3
|
-
"version": "7.1.1-beta.
|
|
3
|
+
"version": "7.1.1-beta.4",
|
|
4
4
|
"description": "Ignite UI Web Components charting components for building rich data visualizations using TypeScript APIs.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-charts",
|
|
6
6
|
"keywords": [
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"tslib": "^2.3.1"
|
|
37
37
|
},
|
|
38
38
|
"peerDependencies": {
|
|
39
|
-
"igniteui-webcomponents-core": "7.1.1-beta.
|
|
39
|
+
"igniteui-webcomponents-core": "7.1.1-beta.4"
|
|
40
40
|
},
|
|
41
41
|
"sideEffects": [
|
|
42
42
|
"./esm2022/lib/category-chart-entrypoint.js",
|