@carbon/charts-angular 0.41.62 → 0.41.66

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.
@@ -1,6 +1,6 @@
1
1
  import { Component, ElementRef, Input, ViewChild, NgModule } from '@angular/core';
2
2
  import { CommonModule } from '@angular/common';
3
- import { AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreemapChart, WordCloudChart } from '@carbon/charts';
3
+ import { AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreemapChart, CirclePackChart, WordCloudChart } from '@carbon/charts';
4
4
 
5
5
  /**
6
6
  * @fileoverview added by tsickle
@@ -681,6 +681,36 @@ TreemapChartComponent.decorators = [
681
681
  }] }
682
682
  ];
683
683
 
684
+ /**
685
+ * @fileoverview added by tsickle
686
+ * Generated from: circle-pack-chart.component.ts
687
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
688
+ */
689
+ /**
690
+ * Wrapper around `BubbleChart` in carbon charts library
691
+ *
692
+ * Most functions just call their equivalent from the chart library.
693
+ */
694
+ class CirclePackChartComponent extends BaseChart {
695
+ /**
696
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
697
+ * @return {?}
698
+ */
699
+ ngAfterViewInit() {
700
+ this.chart = new CirclePackChart(this.elementRef.nativeElement, {
701
+ data: this.data,
702
+ options: this.options
703
+ });
704
+ Object.assign(this, this.chart);
705
+ }
706
+ }
707
+ CirclePackChartComponent.decorators = [
708
+ { type: Component, args: [{
709
+ selector: "ibm-circle-pack-chart",
710
+ template: ``
711
+ }] }
712
+ ];
713
+
684
714
  /**
685
715
  * @fileoverview added by tsickle
686
716
  * Generated from: wordcloud-chart.component.ts
@@ -741,6 +771,7 @@ ChartsModule.decorators = [
741
771
  RadarChartComponent,
742
772
  ComboChartComponent,
743
773
  TreemapChartComponent,
774
+ CirclePackChartComponent,
744
775
  WordCloudChartComponent,
745
776
  ],
746
777
  exports: [
@@ -763,7 +794,8 @@ ChartsModule.decorators = [
763
794
  RadarChartComponent,
764
795
  ComboChartComponent,
765
796
  TreemapChartComponent,
766
- WordCloudChartComponent,
797
+ CirclePackChartComponent,
798
+ WordCloudChartComponent
767
799
  ],
768
800
  },] }
769
801
  ];
@@ -780,5 +812,5 @@ ChartsModule.decorators = [
780
812
  * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
781
813
  */
782
814
 
783
- export { BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, ChartsModule, ComboChartComponent, DonutChartComponent, GaugeChartComponent, GroupedBarChartComponent, LineChartComponent, LollipopChartComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreemapChartComponent, WordCloudChartComponent, AreaChartComponent as ɵa };
815
+ export { BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, GaugeChartComponent, GroupedBarChartComponent, LineChartComponent, LollipopChartComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreemapChartComponent, WordCloudChartComponent, AreaChartComponent as ɵa };
784
816
  //# sourceMappingURL=carbon-charts-angular.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"carbon-charts-angular.js","sources":["ng://@carbon/charts-angular/base-chart.component.ts","ng://@carbon/charts-angular/area-chart.component.ts","ng://@carbon/charts-angular/area-chart-stacked.component.ts","ng://@carbon/charts-angular/bar-chart-simple.component.ts","ng://@carbon/charts-angular/bar-chart-grouped.component.ts","ng://@carbon/charts-angular/bar-chart-stacked.component.ts","ng://@carbon/charts-angular/boxplot-chart.component.ts","ng://@carbon/charts-angular/bubble-chart.component.ts","ng://@carbon/charts-angular/bullet-chart.component.ts","ng://@carbon/charts-angular/donut-chart.component.ts","ng://@carbon/charts-angular/gauge-chart.component.ts","ng://@carbon/charts-angular/line-chart.component.ts","ng://@carbon/charts-angular/lollipop-chart.component.ts","ng://@carbon/charts-angular/pie-chart.component.ts","ng://@carbon/charts-angular/scatter-chart.component.ts","ng://@carbon/charts-angular/meter-chart.component.ts","ng://@carbon/charts-angular/radar-chart.component.ts","ng://@carbon/charts-angular/combo-chart.component.ts","ng://@carbon/charts-angular/treemap-chart.component.ts","ng://@carbon/charts-angular/wordcloud-chart.component.ts","ng://@carbon/charts-angular/charts.module.ts"],"sourcesContent":["import {\n\tComponent,\n\tInput,\n\tViewChild,\n\tOnInit,\n\tAfterViewInit,\n\tElementRef\n} from \"@angular/core\";\n\n/**\n * Wrapper around `BaseChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-base-chart\",\n\ttemplate: ``\n})\nexport class BaseChart implements AfterViewInit, OnInit {\n\tconstructor(protected elementRef: ElementRef) {}\n\n\t/**\n\t * Data passed to charts library for displaying\n\t */\n\t@Input() set data(newData) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst dataExistsAlready = this._data !== null && this._data !== undefined;\n\n\t\tthis._data = newData;\n\n\t\tif (dataExistsAlready) {\n\t\t\tthis.chart.model.setData(newData);\n\t\t}\n\t}\n\n\tget data() {\n\t\treturn this._data;\n\t}\n\n\t/**\n\t * Options passed to charts library\n\t */\n\t@Input() set options(newOptions) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst optionsExistAlready = this._options !== null && this._options !== undefined;\n\n\t\tthis._options = newOptions;\n\n\t\tif (optionsExistAlready) {\n\t\t\tthis.chart.model.setOptions(newOptions);\n\t\t}\n\t}\n\n\tget options() {\n\t\treturn this._options;\n\t}\n\n\t/**\n\t * Chart width\n\t */\n\t@Input() width: any;\n\n\t/**\n\t * Chart height\n\t */\n\t@Input() height: any;\n\n\t/**\n\t * Chart container element ref\n\t */\n\t@ViewChild(\"nChart\") chartRef;\n\n\t/**\n\t * Chart object instance\n\t *\n\t * You can use this to do whatever you would normally do with a chart if you used\n\t * charts library directly.\n\t */\n\tchart;\n\n\tprivate _data: any;\n\tprivate _options: any;\n\n\tngOnInit() {\n\t\t// Width prop is mandatory for the wrappers\n\t\tif (this.width) {\n\t\t\tthis.options.width = this.width;\n\t\t}\n\n\t\t// Height prop is mandatory for the wrappers\n\t\tif (this.height) {\n\t\t\tthis.options.height = this.height;\n\t\t}\n\t}\n\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tconsole.log(\"You need to implement your own `ngAfterViewInit()` function\");\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `AreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-area-chart\",\n\ttemplate: `\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t`\n})\nexport class AreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AreaChart(\n\t\t\tthis.chartRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedAreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedAreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-area-chart\",\n\ttemplate: ``\n})\nexport class StackedAreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedAreaChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { SimpleBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `SimpleBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-simple-bar-chart\",\n\ttemplate: ``\n})\nexport class SimpleBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new SimpleBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GroupedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GroupedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-grouped-bar-chart\",\n\ttemplate: ``\n})\nexport class GroupedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GroupedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-bar-chart\",\n\ttemplate: ``\n})\nexport class StackedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BoxplotChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BoxplotChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-boxplot-chart\",\n\ttemplate: ``\n})\nexport class BoxplotChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BoxplotChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BubbleChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bubble-chart\",\n\ttemplate: ``\n})\nexport class BubbleChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BubbleChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BulletChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BulletChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bullet-chart\",\n\ttemplate: ``\n})\nexport class BulletChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BulletChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { DonutChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `DonutChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-donut-chart\",\n\ttemplate: ``\n})\nexport class DonutChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new DonutChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GaugeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GaugeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-gauge-chart\",\n\ttemplate: ``\n})\nexport class GaugeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GaugeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LineChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LineChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-line-chart\",\n\ttemplate: ``\n})\nexport class LineChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LineChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LollipopChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LollipopChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-lollipop-chart\",\n\ttemplate: ``\n})\nexport class LollipopChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LollipopChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { PieChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `PieChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-pie-chart\",\n\ttemplate: ``\n})\nexport class PieChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new PieChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { ScatterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ScatterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-scatter-chart\",\n\ttemplate: ``\n})\nexport class ScatterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ScatterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { MeterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `MeterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-meter-chart\",\n\ttemplate: ``\n})\nexport class MeterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new MeterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { RadarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `RadarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-radar-chart\",\n\ttemplate: ``\n})\nexport class RadarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new RadarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { ComboChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ComboChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-combo-chart\",\n\ttemplate: ``\n})\nexport class ComboChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ComboChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreemapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreemapChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-treemap-chart\",\n\ttemplate: ``\n})\nexport class TreemapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreemapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { WordCloudChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `WordCloudChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-wordcloud-chart\",\n\ttemplate: ``\n})\nexport class WordCloudChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new WordCloudChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BaseChart } from './base-chart.component';\nimport { AreaChartComponent } from './area-chart.component';\nimport { StackedAreaChartComponent } from './area-chart-stacked.component';\nimport { SimpleBarChartComponent } from './bar-chart-simple.component';\nimport { GroupedBarChartComponent } from './bar-chart-grouped.component';\nimport { StackedBarChartComponent } from './bar-chart-stacked.component';\nimport { BoxplotChartComponent } from './boxplot-chart.component';\nimport { BubbleChartComponent } from './bubble-chart.component';\nimport { BulletChartComponent } from './bullet-chart.component';\nimport { DonutChartComponent } from './donut-chart.component';\nimport { GaugeChartComponent } from './gauge-chart.component';\nimport { LineChartComponent } from './line-chart.component';\nimport { LollipopChartComponent } from './lollipop-chart.component';\nimport { PieChartComponent } from './pie-chart.component';\nimport { ScatterChartComponent } from './scatter-chart.component';\nimport { MeterChartComponent } from './meter-chart.component';\nimport { RadarChartComponent } from './radar-chart.component';\nimport { ComboChartComponent } from './combo-chart.component';\nimport { TreemapChartComponent } from './treemap-chart.component';\nimport { WordCloudChartComponent } from './wordcloud-chart.component';\n\n@NgModule({\n\timports: [CommonModule],\n\tdeclarations: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n\texports: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n})\nexport class ChartsModule {}\n"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"carbon-charts-angular.js","sources":["ng://@carbon/charts-angular/base-chart.component.ts","ng://@carbon/charts-angular/area-chart.component.ts","ng://@carbon/charts-angular/area-chart-stacked.component.ts","ng://@carbon/charts-angular/bar-chart-simple.component.ts","ng://@carbon/charts-angular/bar-chart-grouped.component.ts","ng://@carbon/charts-angular/bar-chart-stacked.component.ts","ng://@carbon/charts-angular/boxplot-chart.component.ts","ng://@carbon/charts-angular/bubble-chart.component.ts","ng://@carbon/charts-angular/bullet-chart.component.ts","ng://@carbon/charts-angular/donut-chart.component.ts","ng://@carbon/charts-angular/gauge-chart.component.ts","ng://@carbon/charts-angular/line-chart.component.ts","ng://@carbon/charts-angular/lollipop-chart.component.ts","ng://@carbon/charts-angular/pie-chart.component.ts","ng://@carbon/charts-angular/scatter-chart.component.ts","ng://@carbon/charts-angular/meter-chart.component.ts","ng://@carbon/charts-angular/radar-chart.component.ts","ng://@carbon/charts-angular/combo-chart.component.ts","ng://@carbon/charts-angular/treemap-chart.component.ts","ng://@carbon/charts-angular/circle-pack-chart.component.ts","ng://@carbon/charts-angular/wordcloud-chart.component.ts","ng://@carbon/charts-angular/charts.module.ts"],"sourcesContent":["import {\n\tComponent,\n\tInput,\n\tViewChild,\n\tOnInit,\n\tAfterViewInit,\n\tElementRef\n} from \"@angular/core\";\n\n/**\n * Wrapper around `BaseChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-base-chart\",\n\ttemplate: ``\n})\nexport class BaseChart implements AfterViewInit, OnInit {\n\tconstructor(protected elementRef: ElementRef) {}\n\n\t/**\n\t * Data passed to charts library for displaying\n\t */\n\t@Input() set data(newData) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst dataExistsAlready = this._data !== null && this._data !== undefined;\n\n\t\tthis._data = newData;\n\n\t\tif (dataExistsAlready) {\n\t\t\tthis.chart.model.setData(newData);\n\t\t}\n\t}\n\n\tget data() {\n\t\treturn this._data;\n\t}\n\n\t/**\n\t * Options passed to charts library\n\t */\n\t@Input() set options(newOptions) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst optionsExistAlready = this._options !== null && this._options !== undefined;\n\n\t\tthis._options = newOptions;\n\n\t\tif (optionsExistAlready) {\n\t\t\tthis.chart.model.setOptions(newOptions);\n\t\t}\n\t}\n\n\tget options() {\n\t\treturn this._options;\n\t}\n\n\t/**\n\t * Chart width\n\t */\n\t@Input() width: any;\n\n\t/**\n\t * Chart height\n\t */\n\t@Input() height: any;\n\n\t/**\n\t * Chart container element ref\n\t */\n\t@ViewChild(\"nChart\") chartRef;\n\n\t/**\n\t * Chart object instance\n\t *\n\t * You can use this to do whatever you would normally do with a chart if you used\n\t * charts library directly.\n\t */\n\tchart;\n\n\tprivate _data: any;\n\tprivate _options: any;\n\n\tngOnInit() {\n\t\t// Width prop is mandatory for the wrappers\n\t\tif (this.width) {\n\t\t\tthis.options.width = this.width;\n\t\t}\n\n\t\t// Height prop is mandatory for the wrappers\n\t\tif (this.height) {\n\t\t\tthis.options.height = this.height;\n\t\t}\n\t}\n\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tconsole.log(\"You need to implement your own `ngAfterViewInit()` function\");\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `AreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-area-chart\",\n\ttemplate: `\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t`\n})\nexport class AreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AreaChart(\n\t\t\tthis.chartRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedAreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedAreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-area-chart\",\n\ttemplate: ``\n})\nexport class StackedAreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedAreaChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { SimpleBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `SimpleBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-simple-bar-chart\",\n\ttemplate: ``\n})\nexport class SimpleBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new SimpleBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GroupedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GroupedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-grouped-bar-chart\",\n\ttemplate: ``\n})\nexport class GroupedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GroupedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-bar-chart\",\n\ttemplate: ``\n})\nexport class StackedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BoxplotChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BoxplotChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-boxplot-chart\",\n\ttemplate: ``\n})\nexport class BoxplotChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BoxplotChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BubbleChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bubble-chart\",\n\ttemplate: ``\n})\nexport class BubbleChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BubbleChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BulletChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BulletChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bullet-chart\",\n\ttemplate: ``\n})\nexport class BulletChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BulletChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { DonutChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `DonutChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-donut-chart\",\n\ttemplate: ``\n})\nexport class DonutChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new DonutChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GaugeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GaugeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-gauge-chart\",\n\ttemplate: ``\n})\nexport class GaugeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GaugeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LineChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LineChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-line-chart\",\n\ttemplate: ``\n})\nexport class LineChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LineChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LollipopChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LollipopChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-lollipop-chart\",\n\ttemplate: ``\n})\nexport class LollipopChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LollipopChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { PieChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `PieChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-pie-chart\",\n\ttemplate: ``\n})\nexport class PieChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new PieChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { ScatterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ScatterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-scatter-chart\",\n\ttemplate: ``\n})\nexport class ScatterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ScatterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { MeterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `MeterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-meter-chart\",\n\ttemplate: ``\n})\nexport class MeterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new MeterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { RadarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `RadarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-radar-chart\",\n\ttemplate: ``\n})\nexport class RadarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new RadarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { ComboChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ComboChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-combo-chart\",\n\ttemplate: ``\n})\nexport class ComboChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ComboChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreemapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreemapChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-treemap-chart\",\n\ttemplate: ``\n})\nexport class TreemapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreemapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { CirclePackChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-circle-pack-chart\",\n\ttemplate: ``\n})\nexport class CirclePackChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new CirclePackChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { WordCloudChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `WordCloudChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-wordcloud-chart\",\n\ttemplate: ``\n})\nexport class WordCloudChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new WordCloudChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BaseChart } from './base-chart.component';\nimport { AreaChartComponent } from './area-chart.component';\nimport { StackedAreaChartComponent } from './area-chart-stacked.component';\nimport { SimpleBarChartComponent } from './bar-chart-simple.component';\nimport { GroupedBarChartComponent } from './bar-chart-grouped.component';\nimport { StackedBarChartComponent } from './bar-chart-stacked.component';\nimport { BoxplotChartComponent } from './boxplot-chart.component';\nimport { BubbleChartComponent } from './bubble-chart.component';\nimport { BulletChartComponent } from './bullet-chart.component';\nimport { DonutChartComponent } from './donut-chart.component';\nimport { GaugeChartComponent } from './gauge-chart.component';\nimport { LineChartComponent } from './line-chart.component';\nimport { LollipopChartComponent } from './lollipop-chart.component';\nimport { PieChartComponent } from './pie-chart.component';\nimport { ScatterChartComponent } from './scatter-chart.component';\nimport { MeterChartComponent } from './meter-chart.component';\nimport { RadarChartComponent } from './radar-chart.component';\nimport { ComboChartComponent } from './combo-chart.component';\nimport { TreemapChartComponent } from './treemap-chart.component';\nimport { CirclePackChartComponent } from './circle-pack-chart.component';\nimport { WordCloudChartComponent } from './wordcloud-chart.component';\n\n@NgModule({\n\timports: [CommonModule],\n\tdeclarations: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n\texports: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent\n\t],\n})\nexport class ChartsModule {}\n"],"names":[],"mappings":"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"}
@@ -1,7 +1,7 @@
1
1
  import { Component, ElementRef, Input, ViewChild, NgModule } from '@angular/core';
2
2
  import { CommonModule } from '@angular/common';
3
3
  import { __extends } from 'tslib';
4
- import { AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreemapChart, WordCloudChart } from '@carbon/charts';
4
+ import { AreaChart, StackedAreaChart, SimpleBarChart, GroupedBarChart, StackedBarChart, BoxplotChart, BubbleChart, BulletChart, DonutChart, GaugeChart, LineChart, LollipopChart, PieChart, ScatterChart, MeterChart, RadarChart, ComboChart, TreemapChart, CirclePackChart, WordCloudChart } from '@carbon/charts';
5
5
 
6
6
  /**
7
7
  * @fileoverview added by tsickle
@@ -917,6 +917,48 @@ var TreemapChartComponent = /** @class */ (function (_super) {
917
917
  return TreemapChartComponent;
918
918
  }(BaseChart));
919
919
 
920
+ /**
921
+ * @fileoverview added by tsickle
922
+ * Generated from: circle-pack-chart.component.ts
923
+ * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
924
+ */
925
+ /**
926
+ * Wrapper around `BubbleChart` in carbon charts library
927
+ *
928
+ * Most functions just call their equivalent from the chart library.
929
+ */
930
+ var CirclePackChartComponent = /** @class */ (function (_super) {
931
+ __extends(CirclePackChartComponent, _super);
932
+ function CirclePackChartComponent() {
933
+ return _super !== null && _super.apply(this, arguments) || this;
934
+ }
935
+ /**
936
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
937
+ */
938
+ /**
939
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
940
+ * @return {?}
941
+ */
942
+ CirclePackChartComponent.prototype.ngAfterViewInit = /**
943
+ * Runs after view init to create a chart, attach it to `elementRef` and draw it.
944
+ * @return {?}
945
+ */
946
+ function () {
947
+ this.chart = new CirclePackChart(this.elementRef.nativeElement, {
948
+ data: this.data,
949
+ options: this.options
950
+ });
951
+ Object.assign(this, this.chart);
952
+ };
953
+ CirclePackChartComponent.decorators = [
954
+ { type: Component, args: [{
955
+ selector: "ibm-circle-pack-chart",
956
+ template: ""
957
+ }] }
958
+ ];
959
+ return CirclePackChartComponent;
960
+ }(BaseChart));
961
+
920
962
  /**
921
963
  * @fileoverview added by tsickle
922
964
  * Generated from: wordcloud-chart.component.ts
@@ -990,6 +1032,7 @@ var ChartsModule = /** @class */ (function () {
990
1032
  RadarChartComponent,
991
1033
  ComboChartComponent,
992
1034
  TreemapChartComponent,
1035
+ CirclePackChartComponent,
993
1036
  WordCloudChartComponent,
994
1037
  ],
995
1038
  exports: [
@@ -1012,7 +1055,8 @@ var ChartsModule = /** @class */ (function () {
1012
1055
  RadarChartComponent,
1013
1056
  ComboChartComponent,
1014
1057
  TreemapChartComponent,
1015
- WordCloudChartComponent,
1058
+ CirclePackChartComponent,
1059
+ WordCloudChartComponent
1016
1060
  ],
1017
1061
  },] }
1018
1062
  ];
@@ -1031,5 +1075,5 @@ var ChartsModule = /** @class */ (function () {
1031
1075
  * @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
1032
1076
  */
1033
1077
 
1034
- export { BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, ChartsModule, ComboChartComponent, DonutChartComponent, GaugeChartComponent, GroupedBarChartComponent, LineChartComponent, LollipopChartComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreemapChartComponent, WordCloudChartComponent, AreaChartComponent as ɵa };
1078
+ export { BaseChart, BoxplotChartComponent, BubbleChartComponent, BulletChartComponent, ChartsModule, CirclePackChartComponent, ComboChartComponent, DonutChartComponent, GaugeChartComponent, GroupedBarChartComponent, LineChartComponent, LollipopChartComponent, MeterChartComponent, PieChartComponent, RadarChartComponent, ScatterChartComponent, SimpleBarChartComponent, StackedAreaChartComponent, StackedBarChartComponent, TreemapChartComponent, WordCloudChartComponent, AreaChartComponent as ɵa };
1035
1079
  //# sourceMappingURL=carbon-charts-angular.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"carbon-charts-angular.js","sources":["ng://@carbon/charts-angular/base-chart.component.ts","ng://@carbon/charts-angular/area-chart.component.ts","ng://@carbon/charts-angular/area-chart-stacked.component.ts","ng://@carbon/charts-angular/bar-chart-simple.component.ts","ng://@carbon/charts-angular/bar-chart-grouped.component.ts","ng://@carbon/charts-angular/bar-chart-stacked.component.ts","ng://@carbon/charts-angular/boxplot-chart.component.ts","ng://@carbon/charts-angular/bubble-chart.component.ts","ng://@carbon/charts-angular/bullet-chart.component.ts","ng://@carbon/charts-angular/donut-chart.component.ts","ng://@carbon/charts-angular/gauge-chart.component.ts","ng://@carbon/charts-angular/line-chart.component.ts","ng://@carbon/charts-angular/lollipop-chart.component.ts","ng://@carbon/charts-angular/pie-chart.component.ts","ng://@carbon/charts-angular/scatter-chart.component.ts","ng://@carbon/charts-angular/meter-chart.component.ts","ng://@carbon/charts-angular/radar-chart.component.ts","ng://@carbon/charts-angular/combo-chart.component.ts","ng://@carbon/charts-angular/treemap-chart.component.ts","ng://@carbon/charts-angular/wordcloud-chart.component.ts","ng://@carbon/charts-angular/charts.module.ts"],"sourcesContent":["import {\n\tComponent,\n\tInput,\n\tViewChild,\n\tOnInit,\n\tAfterViewInit,\n\tElementRef\n} from \"@angular/core\";\n\n/**\n * Wrapper around `BaseChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-base-chart\",\n\ttemplate: ``\n})\nexport class BaseChart implements AfterViewInit, OnInit {\n\tconstructor(protected elementRef: ElementRef) {}\n\n\t/**\n\t * Data passed to charts library for displaying\n\t */\n\t@Input() set data(newData) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst dataExistsAlready = this._data !== null && this._data !== undefined;\n\n\t\tthis._data = newData;\n\n\t\tif (dataExistsAlready) {\n\t\t\tthis.chart.model.setData(newData);\n\t\t}\n\t}\n\n\tget data() {\n\t\treturn this._data;\n\t}\n\n\t/**\n\t * Options passed to charts library\n\t */\n\t@Input() set options(newOptions) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst optionsExistAlready = this._options !== null && this._options !== undefined;\n\n\t\tthis._options = newOptions;\n\n\t\tif (optionsExistAlready) {\n\t\t\tthis.chart.model.setOptions(newOptions);\n\t\t}\n\t}\n\n\tget options() {\n\t\treturn this._options;\n\t}\n\n\t/**\n\t * Chart width\n\t */\n\t@Input() width: any;\n\n\t/**\n\t * Chart height\n\t */\n\t@Input() height: any;\n\n\t/**\n\t * Chart container element ref\n\t */\n\t@ViewChild(\"nChart\") chartRef;\n\n\t/**\n\t * Chart object instance\n\t *\n\t * You can use this to do whatever you would normally do with a chart if you used\n\t * charts library directly.\n\t */\n\tchart;\n\n\tprivate _data: any;\n\tprivate _options: any;\n\n\tngOnInit() {\n\t\t// Width prop is mandatory for the wrappers\n\t\tif (this.width) {\n\t\t\tthis.options.width = this.width;\n\t\t}\n\n\t\t// Height prop is mandatory for the wrappers\n\t\tif (this.height) {\n\t\t\tthis.options.height = this.height;\n\t\t}\n\t}\n\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tconsole.log(\"You need to implement your own `ngAfterViewInit()` function\");\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `AreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-area-chart\",\n\ttemplate: `\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t`\n})\nexport class AreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AreaChart(\n\t\t\tthis.chartRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedAreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedAreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-area-chart\",\n\ttemplate: ``\n})\nexport class StackedAreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedAreaChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { SimpleBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `SimpleBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-simple-bar-chart\",\n\ttemplate: ``\n})\nexport class SimpleBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new SimpleBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GroupedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GroupedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-grouped-bar-chart\",\n\ttemplate: ``\n})\nexport class GroupedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GroupedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-bar-chart\",\n\ttemplate: ``\n})\nexport class StackedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BoxplotChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BoxplotChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-boxplot-chart\",\n\ttemplate: ``\n})\nexport class BoxplotChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BoxplotChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BubbleChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bubble-chart\",\n\ttemplate: ``\n})\nexport class BubbleChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BubbleChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BulletChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BulletChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bullet-chart\",\n\ttemplate: ``\n})\nexport class BulletChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BulletChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { DonutChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `DonutChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-donut-chart\",\n\ttemplate: ``\n})\nexport class DonutChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new DonutChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GaugeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GaugeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-gauge-chart\",\n\ttemplate: ``\n})\nexport class GaugeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GaugeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LineChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LineChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-line-chart\",\n\ttemplate: ``\n})\nexport class LineChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LineChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LollipopChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LollipopChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-lollipop-chart\",\n\ttemplate: ``\n})\nexport class LollipopChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LollipopChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { PieChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `PieChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-pie-chart\",\n\ttemplate: ``\n})\nexport class PieChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new PieChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { ScatterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ScatterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-scatter-chart\",\n\ttemplate: ``\n})\nexport class ScatterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ScatterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { MeterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `MeterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-meter-chart\",\n\ttemplate: ``\n})\nexport class MeterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new MeterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { RadarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `RadarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-radar-chart\",\n\ttemplate: ``\n})\nexport class RadarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new RadarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { ComboChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ComboChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-combo-chart\",\n\ttemplate: ``\n})\nexport class ComboChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ComboChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreemapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreemapChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-treemap-chart\",\n\ttemplate: ``\n})\nexport class TreemapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreemapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { WordCloudChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `WordCloudChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-wordcloud-chart\",\n\ttemplate: ``\n})\nexport class WordCloudChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new WordCloudChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BaseChart } from './base-chart.component';\nimport { AreaChartComponent } from './area-chart.component';\nimport { StackedAreaChartComponent } from './area-chart-stacked.component';\nimport { SimpleBarChartComponent } from './bar-chart-simple.component';\nimport { GroupedBarChartComponent } from './bar-chart-grouped.component';\nimport { StackedBarChartComponent } from './bar-chart-stacked.component';\nimport { BoxplotChartComponent } from './boxplot-chart.component';\nimport { BubbleChartComponent } from './bubble-chart.component';\nimport { BulletChartComponent } from './bullet-chart.component';\nimport { DonutChartComponent } from './donut-chart.component';\nimport { GaugeChartComponent } from './gauge-chart.component';\nimport { LineChartComponent } from './line-chart.component';\nimport { LollipopChartComponent } from './lollipop-chart.component';\nimport { PieChartComponent } from './pie-chart.component';\nimport { ScatterChartComponent } from './scatter-chart.component';\nimport { MeterChartComponent } from './meter-chart.component';\nimport { RadarChartComponent } from './radar-chart.component';\nimport { ComboChartComponent } from './combo-chart.component';\nimport { TreemapChartComponent } from './treemap-chart.component';\nimport { WordCloudChartComponent } from './wordcloud-chart.component';\n\n@NgModule({\n\timports: [CommonModule],\n\tdeclarations: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n\texports: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n})\nexport class ChartsModule {}\n"],"names":["tslib_1.__extends"],"mappings":"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"}
1
+ {"version":3,"file":"carbon-charts-angular.js","sources":["ng://@carbon/charts-angular/base-chart.component.ts","ng://@carbon/charts-angular/area-chart.component.ts","ng://@carbon/charts-angular/area-chart-stacked.component.ts","ng://@carbon/charts-angular/bar-chart-simple.component.ts","ng://@carbon/charts-angular/bar-chart-grouped.component.ts","ng://@carbon/charts-angular/bar-chart-stacked.component.ts","ng://@carbon/charts-angular/boxplot-chart.component.ts","ng://@carbon/charts-angular/bubble-chart.component.ts","ng://@carbon/charts-angular/bullet-chart.component.ts","ng://@carbon/charts-angular/donut-chart.component.ts","ng://@carbon/charts-angular/gauge-chart.component.ts","ng://@carbon/charts-angular/line-chart.component.ts","ng://@carbon/charts-angular/lollipop-chart.component.ts","ng://@carbon/charts-angular/pie-chart.component.ts","ng://@carbon/charts-angular/scatter-chart.component.ts","ng://@carbon/charts-angular/meter-chart.component.ts","ng://@carbon/charts-angular/radar-chart.component.ts","ng://@carbon/charts-angular/combo-chart.component.ts","ng://@carbon/charts-angular/treemap-chart.component.ts","ng://@carbon/charts-angular/circle-pack-chart.component.ts","ng://@carbon/charts-angular/wordcloud-chart.component.ts","ng://@carbon/charts-angular/charts.module.ts"],"sourcesContent":["import {\n\tComponent,\n\tInput,\n\tViewChild,\n\tOnInit,\n\tAfterViewInit,\n\tElementRef\n} from \"@angular/core\";\n\n/**\n * Wrapper around `BaseChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-base-chart\",\n\ttemplate: ``\n})\nexport class BaseChart implements AfterViewInit, OnInit {\n\tconstructor(protected elementRef: ElementRef) {}\n\n\t/**\n\t * Data passed to charts library for displaying\n\t */\n\t@Input() set data(newData) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst dataExistsAlready = this._data !== null && this._data !== undefined;\n\n\t\tthis._data = newData;\n\n\t\tif (dataExistsAlready) {\n\t\t\tthis.chart.model.setData(newData);\n\t\t}\n\t}\n\n\tget data() {\n\t\treturn this._data;\n\t}\n\n\t/**\n\t * Options passed to charts library\n\t */\n\t@Input() set options(newOptions) {\n\t\t// If data already exists, that means the chart has been initialized\n\t\tconst optionsExistAlready = this._options !== null && this._options !== undefined;\n\n\t\tthis._options = newOptions;\n\n\t\tif (optionsExistAlready) {\n\t\t\tthis.chart.model.setOptions(newOptions);\n\t\t}\n\t}\n\n\tget options() {\n\t\treturn this._options;\n\t}\n\n\t/**\n\t * Chart width\n\t */\n\t@Input() width: any;\n\n\t/**\n\t * Chart height\n\t */\n\t@Input() height: any;\n\n\t/**\n\t * Chart container element ref\n\t */\n\t@ViewChild(\"nChart\") chartRef;\n\n\t/**\n\t * Chart object instance\n\t *\n\t * You can use this to do whatever you would normally do with a chart if you used\n\t * charts library directly.\n\t */\n\tchart;\n\n\tprivate _data: any;\n\tprivate _options: any;\n\n\tngOnInit() {\n\t\t// Width prop is mandatory for the wrappers\n\t\tif (this.width) {\n\t\t\tthis.options.width = this.width;\n\t\t}\n\n\t\t// Height prop is mandatory for the wrappers\n\t\tif (this.height) {\n\t\t\tthis.options.height = this.height;\n\t\t}\n\t}\n\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tconsole.log(\"You need to implement your own `ngAfterViewInit()` function\");\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { AreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `AreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-area-chart\",\n\ttemplate: `\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t`\n})\nexport class AreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `chartRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new AreaChart(\n\t\t\tthis.chartRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedAreaChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedAreaChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-area-chart\",\n\ttemplate: ``\n})\nexport class StackedAreaChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedAreaChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { SimpleBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `SimpleBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-simple-bar-chart\",\n\ttemplate: ``\n})\nexport class SimpleBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new SimpleBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GroupedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GroupedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-grouped-bar-chart\",\n\ttemplate: ``\n})\nexport class GroupedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GroupedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { StackedBarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `StackedBarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-stacked-bar-chart\",\n\ttemplate: ``\n})\nexport class StackedBarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new StackedBarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BoxplotChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BoxplotChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-boxplot-chart\",\n\ttemplate: ``\n})\nexport class BoxplotChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BoxplotChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BubbleChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bubble-chart\",\n\ttemplate: ``\n})\nexport class BubbleChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BubbleChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { BulletChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BulletChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-bullet-chart\",\n\ttemplate: ``\n})\nexport class BulletChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new BulletChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { DonutChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `DonutChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-donut-chart\",\n\ttemplate: ``\n})\nexport class DonutChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new DonutChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { GaugeChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `GaugeChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-gauge-chart\",\n\ttemplate: ``\n})\nexport class GaugeChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new GaugeChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LineChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LineChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-line-chart\",\n\ttemplate: ``\n})\nexport class LineChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LineChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { LollipopChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `LollipopChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-lollipop-chart\",\n\ttemplate: ``\n})\nexport class LollipopChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new LollipopChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { PieChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `PieChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-pie-chart\",\n\ttemplate: ``\n})\nexport class PieChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new PieChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { ScatterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ScatterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-scatter-chart\",\n\ttemplate: ``\n})\nexport class ScatterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ScatterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { MeterChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `MeterChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-meter-chart\",\n\ttemplate: ``\n})\nexport class MeterChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new MeterChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { RadarChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `RadarChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-radar-chart\",\n\ttemplate: ``\n})\nexport class RadarChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new RadarChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\nimport { ComboChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `ComboChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-combo-chart\",\n\ttemplate: ``\n})\nexport class ComboChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new ComboChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { TreemapChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `TreemapChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-treemap-chart\",\n\ttemplate: ``\n})\nexport class TreemapChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new TreemapChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { CirclePackChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `BubbleChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-circle-pack-chart\",\n\ttemplate: ``\n})\nexport class CirclePackChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new CirclePackChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import {\n\tComponent,\n\tAfterViewInit\n} from \"@angular/core\";\n\nimport { BaseChart } from \"./base-chart.component\";\n\nimport { WordCloudChart } from \"@carbon/charts\";\n\n/**\n * Wrapper around `WordCloudChart` in carbon charts library\n *\n * Most functions just call their equivalent from the chart library.\n */\n@Component({\n\tselector: \"ibm-wordcloud-chart\",\n\ttemplate: ``\n})\nexport class WordCloudChartComponent extends BaseChart implements AfterViewInit {\n\t/**\n\t * Runs after view init to create a chart, attach it to `elementRef` and draw it.\n\t */\n\tngAfterViewInit() {\n\t\tthis.chart = new WordCloudChart(\n\t\t\tthis.elementRef.nativeElement,\n\t\t\t{\n\t\t\t\tdata: this.data,\n\t\t\t\toptions: this.options\n\t\t\t}\n\t\t);\n\n\t\tObject.assign(this, this.chart);\n\t}\n}\n","import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { BaseChart } from './base-chart.component';\nimport { AreaChartComponent } from './area-chart.component';\nimport { StackedAreaChartComponent } from './area-chart-stacked.component';\nimport { SimpleBarChartComponent } from './bar-chart-simple.component';\nimport { GroupedBarChartComponent } from './bar-chart-grouped.component';\nimport { StackedBarChartComponent } from './bar-chart-stacked.component';\nimport { BoxplotChartComponent } from './boxplot-chart.component';\nimport { BubbleChartComponent } from './bubble-chart.component';\nimport { BulletChartComponent } from './bullet-chart.component';\nimport { DonutChartComponent } from './donut-chart.component';\nimport { GaugeChartComponent } from './gauge-chart.component';\nimport { LineChartComponent } from './line-chart.component';\nimport { LollipopChartComponent } from './lollipop-chart.component';\nimport { PieChartComponent } from './pie-chart.component';\nimport { ScatterChartComponent } from './scatter-chart.component';\nimport { MeterChartComponent } from './meter-chart.component';\nimport { RadarChartComponent } from './radar-chart.component';\nimport { ComboChartComponent } from './combo-chart.component';\nimport { TreemapChartComponent } from './treemap-chart.component';\nimport { CirclePackChartComponent } from './circle-pack-chart.component';\nimport { WordCloudChartComponent } from './wordcloud-chart.component';\n\n@NgModule({\n\timports: [CommonModule],\n\tdeclarations: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent,\n\t],\n\texports: [\n\t\tBaseChart,\n\t\tAreaChartComponent,\n\t\tStackedAreaChartComponent,\n\t\tSimpleBarChartComponent,\n\t\tGroupedBarChartComponent,\n\t\tStackedBarChartComponent,\n\t\tBoxplotChartComponent,\n\t\tBubbleChartComponent,\n\t\tBulletChartComponent,\n\t\tDonutChartComponent,\n\t\tGaugeChartComponent,\n\t\tLineChartComponent,\n\t\tLollipopChartComponent,\n\t\tPieChartComponent,\n\t\tScatterChartComponent,\n\t\tMeterChartComponent,\n\t\tRadarChartComponent,\n\t\tComboChartComponent,\n\t\tTreemapChartComponent,\n\t\tCirclePackChartComponent,\n\t\tWordCloudChartComponent\n\t],\n})\nexport class ChartsModule {}\n"],"names":["tslib_1.__extends"],"mappings":"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"}
package/index.d.ts CHANGED
@@ -17,4 +17,5 @@ export * from "./meter-chart.component";
17
17
  export * from "./radar-chart.component";
18
18
  export * from "./combo-chart.component";
19
19
  export * from "./treemap-chart.component";
20
+ export * from "./circle-pack-chart.component";
20
21
  export * from "./wordcloud-chart.component";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carbon/charts-angular",
3
- "version": "0.41.62",
3
+ "version": "0.41.66",
4
4
  "description": "Carbon charting components for Angular",
5
5
  "main": "bundles/carbon-charts-angular.umd.js",
6
6
  "repository": {
@@ -34,7 +34,7 @@
34
34
  "scss"
35
35
  ],
36
36
  "dependencies": {
37
- "@carbon/charts": "^0.41.62",
37
+ "@carbon/charts": "^0.41.66",
38
38
  "@carbon/telemetry": "0.0.0-alpha.6",
39
39
  "tslib": "^1.9.0"
40
40
  },