@tetacom/ng-components 1.0.19 → 1.0.20
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.
|
@@ -12094,7 +12094,11 @@ class ChartOptions {
|
|
|
12094
12094
|
this.gridLines = options?.gridLines == null ? true : options.gridLines;
|
|
12095
12095
|
this.width = options?.width;
|
|
12096
12096
|
this.height = options?.height;
|
|
12097
|
-
this.legend = {
|
|
12097
|
+
this.legend = {
|
|
12098
|
+
visible: true,
|
|
12099
|
+
type: LegendType.swatches,
|
|
12100
|
+
...options?.legend,
|
|
12101
|
+
};
|
|
12098
12102
|
this.bounds = { ...this.bounds, ...options?.bounds };
|
|
12099
12103
|
this.annotations = options?.annotations;
|
|
12100
12104
|
}
|