@unovis/angular 1.2.1-beta.0 → 1.2.1-beta.2
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/lib/bundles/unovis-angular.umd.js +2 -2
- package/dist/lib/bundles/unovis-angular.umd.js.map +1 -1
- package/dist/lib/esm2015/containers/single-container/single-container.component.js +2 -2
- package/dist/lib/esm2015/containers/xy-container/xy-container.component.js +2 -2
- package/dist/lib/fesm2015/unovis-angular.js +2 -2
- package/dist/lib/fesm2015/unovis-angular.js.map +1 -1
- package/dist/lib/package.json +2 -2
- package/package.json +2 -2
- package/dist/LICENSE +0 -193
- package/dist/README.md +0 -66
- package/dist/package.json +0 -71
|
@@ -439,7 +439,7 @@
|
|
|
439
439
|
/** Animation duration of all the components within the container. Default: `undefined` */
|
|
440
440
|
this.duration = undefined;
|
|
441
441
|
/** Margins. Default: `{ top: 0, bottom: 0, left: 0, right: 0 }` */
|
|
442
|
-
this.margin = { top:
|
|
442
|
+
this.margin = { top: 0, bottom: 0, left: 0, right: 0 };
|
|
443
443
|
/** Padding. Default: `{ top: 0, bottom: 0, left: 0, right: 0 }` */
|
|
444
444
|
this.padding = {};
|
|
445
445
|
/** Enables automatic calculation of chart margins based on the size of the axes. Default: `true` */
|
|
@@ -600,7 +600,7 @@
|
|
|
600
600
|
var VisSingleContainerComponent = /** @class */ (function () {
|
|
601
601
|
function VisSingleContainerComponent() {
|
|
602
602
|
/** Margins. Default: `{ top: 0, bottom: 0, left: 0, right: 0 }` */
|
|
603
|
-
this.margin = { top:
|
|
603
|
+
this.margin = { top: 0, bottom: 0, left: 0, right: 0 };
|
|
604
604
|
}
|
|
605
605
|
VisSingleContainerComponent.prototype.ngAfterViewInit = function () {
|
|
606
606
|
this.chart = new ts.SingleContainer(this.containerRef.nativeElement, this.getConfig(), this.data);
|