@carbon/charts-angular 1.8.0 → 1.9.0-rc.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -2
- package/esm2022/carbon-charts-angular.mjs +5 -0
- package/esm2022/index.mjs +14 -0
- package/esm2022/lib/charts/alluvial-chart.component.mjs +32 -0
- package/esm2022/lib/charts/area-chart-stacked.component.mjs +32 -0
- package/esm2022/lib/charts/area-chart.component.mjs +32 -0
- package/esm2022/lib/charts/bar-chart-grouped.component.mjs +32 -0
- package/esm2022/lib/charts/bar-chart-simple.component.mjs +32 -0
- package/esm2022/lib/charts/bar-chart-stacked.component.mjs +32 -0
- package/esm2022/lib/charts/base-chart.component.mjs +75 -0
- package/esm2022/lib/charts/boxplot-chart.component.mjs +32 -0
- package/esm2022/lib/charts/bubble-chart.component.mjs +32 -0
- package/esm2022/lib/charts/bullet-chart.component.mjs +32 -0
- package/esm2022/lib/charts/charts.module.mjs +123 -0
- package/esm2022/lib/charts/choropleth.component.mjs +32 -0
- package/esm2022/lib/charts/circle-pack-chart.component.mjs +32 -0
- package/esm2022/lib/charts/combo-chart.component.mjs +32 -0
- package/esm2022/lib/charts/donut-chart.component.mjs +32 -0
- package/esm2022/lib/charts/gauge-chart.component.mjs +32 -0
- package/esm2022/lib/charts/heatmap-chart.component.mjs +32 -0
- package/esm2022/lib/charts/histogram-chart.component.mjs +32 -0
- package/esm2022/lib/charts/index.mjs +28 -0
- package/esm2022/lib/charts/line-chart.component.mjs +32 -0
- package/esm2022/lib/charts/lollipop-chart.component.mjs +32 -0
- package/esm2022/lib/charts/meter-chart.component.mjs +32 -0
- package/esm2022/lib/charts/pie-chart.component.mjs +32 -0
- package/esm2022/lib/charts/radar-chart.component.mjs +32 -0
- package/esm2022/lib/charts/scatter-chart.component.mjs +32 -0
- package/esm2022/lib/charts/tree-chart.component.mjs +32 -0
- package/esm2022/lib/charts/treemap-chart.component.mjs +32 -0
- package/esm2022/lib/charts/wordcloud-chart.component.mjs +32 -0
- package/esm2022/lib/diagrams/config.mjs +2 -0
- package/esm2022/lib/diagrams/edges/edge.component.mjs +73 -0
- package/esm2022/lib/diagrams/edges/edge.module.mjs +20 -0
- package/esm2022/lib/diagrams/edges/marker/marker.component.mjs +161 -0
- package/esm2022/lib/diagrams/edges/marker/marker.module.mjs +48 -0
- package/esm2022/lib/diagrams/index.mjs +5 -0
- package/esm2022/lib/diagrams/nodes/cards/card-node-column.component.mjs +38 -0
- package/esm2022/lib/diagrams/nodes/cards/card-node-label.component.mjs +28 -0
- package/esm2022/lib/diagrams/nodes/cards/card-node-subtitle.component.mjs +28 -0
- package/esm2022/lib/diagrams/nodes/cards/card-node-title.component.mjs +28 -0
- package/esm2022/lib/diagrams/nodes/cards/card-node.component.mjs +191 -0
- package/esm2022/lib/diagrams/nodes/cards/card-node.module.mjs +44 -0
- package/esm2022/lib/diagrams/nodes/shape/shape-node.component.mjs +241 -0
- package/esm2022/lib/diagrams/nodes/shape/shape-node.module.mjs +20 -0
- package/esm2022/lib/index.mjs +3 -0
- package/fesm2022/carbon-charts-angular.mjs +1728 -0
- package/fesm2022/carbon-charts-angular.mjs.map +1 -0
- package/index.d.ts +5 -38
- package/lib/charts/alluvial-chart.component.d.ts +16 -0
- package/lib/charts/area-chart-stacked.component.d.ts +16 -0
- package/lib/charts/area-chart.component.d.ts +16 -0
- package/lib/charts/bar-chart-grouped.component.d.ts +16 -0
- package/lib/charts/bar-chart-simple.component.d.ts +16 -0
- package/lib/charts/bar-chart-stacked.component.d.ts +16 -0
- package/lib/charts/base-chart.component.d.ts +46 -0
- package/lib/charts/boxplot-chart.component.d.ts +16 -0
- package/lib/charts/bubble-chart.component.d.ts +16 -0
- package/lib/charts/bullet-chart.component.d.ts +16 -0
- package/lib/charts/charts.module.d.ts +33 -0
- package/lib/charts/choropleth.component.d.ts +16 -0
- package/lib/charts/circle-pack-chart.component.d.ts +16 -0
- package/lib/charts/combo-chart.component.d.ts +16 -0
- package/lib/charts/donut-chart.component.d.ts +16 -0
- package/lib/charts/gauge-chart.component.d.ts +16 -0
- package/lib/charts/heatmap-chart.component.d.ts +16 -0
- package/lib/charts/histogram-chart.component.d.ts +16 -0
- package/lib/charts/index.d.ts +27 -0
- package/lib/charts/line-chart.component.d.ts +16 -0
- package/lib/charts/lollipop-chart.component.d.ts +16 -0
- package/lib/charts/meter-chart.component.d.ts +16 -0
- package/lib/charts/pie-chart.component.d.ts +16 -0
- package/lib/charts/radar-chart.component.d.ts +16 -0
- package/lib/charts/scatter-chart.component.d.ts +16 -0
- package/lib/charts/tree-chart.component.d.ts +16 -0
- package/lib/charts/treemap-chart.component.d.ts +16 -0
- package/lib/charts/wordcloud-chart.component.d.ts +16 -0
- package/lib/diagrams/edges/edge.component.d.ts +20 -0
- package/lib/diagrams/edges/edge.module.d.ts +9 -0
- package/lib/diagrams/edges/marker/marker.component.d.ts +52 -0
- package/lib/diagrams/edges/marker/marker.module.d.ts +10 -0
- package/lib/diagrams/index.d.ts +4 -0
- package/lib/diagrams/nodes/cards/card-node-column.component.d.ts +7 -0
- package/lib/diagrams/nodes/cards/card-node-label.component.d.ts +6 -0
- package/lib/diagrams/nodes/cards/card-node-subtitle.component.d.ts +6 -0
- package/lib/diagrams/nodes/cards/card-node-title.component.d.ts +6 -0
- package/lib/diagrams/nodes/cards/card-node.component.d.ts +20 -0
- package/lib/diagrams/nodes/cards/card-node.module.d.ts +18 -0
- package/lib/diagrams/nodes/shape/shape-node.component.d.ts +25 -0
- package/lib/diagrams/nodes/shape/shape-node.module.d.ts +9 -0
- package/lib/index.d.ts +2 -0
- package/package.json +33 -61
- package/styles.css +28264 -0
- package/styles.css.map +1 -0
- package/styles.min.css +1 -0
- package/styles.min.css.map +1 -0
- package/LICENSE.md +0 -201
- package/alluvial-chart.component.d.ts +0 -13
- package/area-chart-stacked.component.d.ts +0 -13
- package/area-chart.component.d.ts +0 -13
- package/bar-chart-grouped.component.d.ts +0 -13
- package/bar-chart-simple.component.d.ts +0 -13
- package/bar-chart-stacked.component.d.ts +0 -13
- package/base-chart.component.d.ts +0 -44
- package/boxplot-chart.component.d.ts +0 -13
- package/bubble-chart.component.d.ts +0 -13
- package/bullet-chart.component.d.ts +0 -13
- package/bundles/carbon-charts-angular.umd.js +0 -2156
- package/bundles/carbon-charts-angular.umd.js.map +0 -1
- package/bundles/carbon-charts-angular.umd.min.js +0 -16
- package/bundles/carbon-charts-angular.umd.min.js.map +0 -1
- package/carbon-charts-angular.d.ts +0 -5
- package/carbon-charts-angular.metadata.json +0 -1
- package/charts.module.d.ts +0 -2
- package/choropleth.component.d.ts +0 -13
- package/circle-pack-chart.component.d.ts +0 -13
- package/combo-chart.component.d.ts +0 -13
- package/diagrams/card-node/card-node-column.component.d.ts +0 -4
- package/diagrams/card-node/card-node-label.component.d.ts +0 -3
- package/diagrams/card-node/card-node-subtitle.component.d.ts +0 -3
- package/diagrams/card-node/card-node-title.component.d.ts +0 -3
- package/diagrams/card-node/card-node.component.d.ts +0 -17
- package/diagrams/card-node/card-node.module.d.ts +0 -8
- package/diagrams/edge/edge.component.d.ts +0 -17
- package/diagrams/edge/edge.module.d.ts +0 -3
- package/diagrams/marker/marker.component.d.ts +0 -37
- package/diagrams/marker/marker.module.d.ts +0 -4
- package/diagrams/shape-node/shape-node.component.d.ts +0 -22
- package/diagrams/shape-node/shape-node.module.d.ts +0 -3
- package/donut-chart.component.d.ts +0 -13
- package/esm2015/alluvial-chart.component.js +0 -33
- package/esm2015/area-chart-stacked.component.js +0 -33
- package/esm2015/area-chart.component.js +0 -36
- package/esm2015/bar-chart-grouped.component.js +0 -33
- package/esm2015/bar-chart-simple.component.js +0 -33
- package/esm2015/bar-chart-stacked.component.js +0 -33
- package/esm2015/base-chart.component.js +0 -137
- package/esm2015/boxplot-chart.component.js +0 -33
- package/esm2015/bubble-chart.component.js +0 -33
- package/esm2015/bullet-chart.component.js +0 -33
- package/esm2015/carbon-charts-angular.js +0 -11
- package/esm2015/charts.module.js +0 -97
- package/esm2015/choropleth.component.js +0 -33
- package/esm2015/circle-pack-chart.component.js +0 -33
- package/esm2015/combo-chart.component.js +0 -33
- package/esm2015/diagrams/card-node/card-node-column.component.js +0 -41
- package/esm2015/diagrams/card-node/card-node-label.component.js +0 -27
- package/esm2015/diagrams/card-node/card-node-subtitle.component.js +0 -27
- package/esm2015/diagrams/card-node/card-node-title.component.js +0 -27
- package/esm2015/diagrams/card-node/card-node.component.js +0 -148
- package/esm2015/diagrams/card-node/card-node.module.js +0 -23
- package/esm2015/diagrams/configs.js +0 -8
- package/esm2015/diagrams/edge/edge.component.js +0 -80
- package/esm2015/diagrams/edge/edge.module.js +0 -19
- package/esm2015/diagrams/marker/marker.component.js +0 -141
- package/esm2015/diagrams/marker/marker.module.js +0 -35
- package/esm2015/diagrams/shape-node/shape-node.component.js +0 -187
- package/esm2015/diagrams/shape-node/shape-node.module.js +0 -19
- package/esm2015/donut-chart.component.js +0 -33
- package/esm2015/gauge-chart.component.js +0 -33
- package/esm2015/heatmap-chart.component.js +0 -33
- package/esm2015/histogram-chart.component.js +0 -33
- package/esm2015/index.js +0 -45
- package/esm2015/line-chart.component.js +0 -33
- package/esm2015/lollipop-chart.component.js +0 -33
- package/esm2015/meter-chart.component.js +0 -33
- package/esm2015/pie-chart.component.js +0 -33
- package/esm2015/radar-chart.component.js +0 -33
- package/esm2015/scatter-chart.component.js +0 -33
- package/esm2015/tree-chart.component.js +0 -33
- package/esm2015/treemap-chart.component.js +0 -33
- package/esm2015/wordcloud-chart.component.js +0 -33
- package/esm5/alluvial-chart.component.js +0 -47
- package/esm5/area-chart-stacked.component.js +0 -47
- package/esm5/area-chart.component.js +0 -47
- package/esm5/bar-chart-grouped.component.js +0 -47
- package/esm5/bar-chart-simple.component.js +0 -47
- package/esm5/bar-chart-stacked.component.js +0 -47
- package/esm5/base-chart.component.js +0 -160
- package/esm5/boxplot-chart.component.js +0 -47
- package/esm5/bubble-chart.component.js +0 -47
- package/esm5/bullet-chart.component.js +0 -47
- package/esm5/carbon-charts-angular.js +0 -11
- package/esm5/charts.module.js +0 -101
- package/esm5/choropleth.component.js +0 -47
- package/esm5/circle-pack-chart.component.js +0 -47
- package/esm5/combo-chart.component.js +0 -47
- package/esm5/diagrams/card-node/card-node-column.component.js +0 -43
- package/esm5/diagrams/card-node/card-node-label.component.js +0 -25
- package/esm5/diagrams/card-node/card-node-subtitle.component.js +0 -25
- package/esm5/diagrams/card-node/card-node-title.component.js +0 -25
- package/esm5/diagrams/card-node/card-node.component.js +0 -86
- package/esm5/diagrams/card-node/card-node.module.js +0 -27
- package/esm5/diagrams/configs.js +0 -8
- package/esm5/diagrams/edge/edge.component.js +0 -64
- package/esm5/diagrams/edge/edge.module.js +0 -23
- package/esm5/diagrams/marker/marker.component.js +0 -188
- package/esm5/diagrams/marker/marker.module.js +0 -39
- package/esm5/diagrams/shape-node/shape-node.component.js +0 -104
- package/esm5/diagrams/shape-node/shape-node.module.js +0 -23
- package/esm5/donut-chart.component.js +0 -47
- package/esm5/gauge-chart.component.js +0 -47
- package/esm5/heatmap-chart.component.js +0 -47
- package/esm5/histogram-chart.component.js +0 -47
- package/esm5/index.js +0 -45
- package/esm5/line-chart.component.js +0 -47
- package/esm5/lollipop-chart.component.js +0 -47
- package/esm5/meter-chart.component.js +0 -47
- package/esm5/pie-chart.component.js +0 -47
- package/esm5/radar-chart.component.js +0 -47
- package/esm5/scatter-chart.component.js +0 -47
- package/esm5/tree-chart.component.js +0 -47
- package/esm5/treemap-chart.component.js +0 -47
- package/esm5/wordcloud-chart.component.js +0 -47
- package/fesm2015/carbon-charts-angular.js +0 -1722
- package/fesm2015/carbon-charts-angular.js.map +0 -1
- package/fesm5/carbon-charts-angular.js +0 -1924
- package/fesm5/carbon-charts-angular.js.map +0 -1
- package/gauge-chart.component.d.ts +0 -13
- package/heatmap-chart.component.d.ts +0 -13
- package/histogram-chart.component.d.ts +0 -13
- package/line-chart.component.d.ts +0 -13
- package/lollipop-chart.component.d.ts +0 -13
- package/meter-chart.component.d.ts +0 -13
- package/pie-chart.component.d.ts +0 -13
- package/radar-chart.component.d.ts +0 -13
- package/scatter-chart.component.d.ts +0 -13
- package/tree-chart.component.d.ts +0 -13
- package/treemap-chart.component.d.ts +0 -13
- package/wordcloud-chart.component.d.ts +0 -13
- /package/{diagrams/configs.d.ts → lib/diagrams/config.d.ts} +0 -0
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"__symbolic":"module","version":4,"metadata":{"ChartsModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":30,"character":1},"arguments":[{"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":31,"character":11}],"declarations":[{"__symbolic":"reference","name":"BaseChart"},{"__symbolic":"reference","name":"AlluvialChartComponent"},{"__symbolic":"reference","name":"AreaChartComponent"},{"__symbolic":"reference","name":"ɵa"},{"__symbolic":"reference","name":"StackedAreaChartComponent"},{"__symbolic":"reference","name":"SimpleBarChartComponent"},{"__symbolic":"reference","name":"GroupedBarChartComponent"},{"__symbolic":"reference","name":"StackedBarChartComponent"},{"__symbolic":"reference","name":"BoxplotChartComponent"},{"__symbolic":"reference","name":"BubbleChartComponent"},{"__symbolic":"reference","name":"BulletChartComponent"},{"__symbolic":"reference","name":"DonutChartComponent"},{"__symbolic":"reference","name":"GaugeChartComponent"},{"__symbolic":"reference","name":"HeatmapChartComponent"},{"__symbolic":"reference","name":"HistogramChartComponent"},{"__symbolic":"reference","name":"LineChartComponent"},{"__symbolic":"reference","name":"LollipopChartComponent"},{"__symbolic":"reference","name":"PieChartComponent"},{"__symbolic":"reference","name":"ScatterChartComponent"},{"__symbolic":"reference","name":"MeterChartComponent"},{"__symbolic":"reference","name":"RadarChartComponent"},{"__symbolic":"reference","name":"ComboChartComponent"},{"__symbolic":"reference","name":"TreeChartComponent"},{"__symbolic":"reference","name":"TreemapChartComponent"},{"__symbolic":"reference","name":"CirclePackChartComponent"},{"__symbolic":"reference","name":"WordCloudChartComponent"}],"exports":[{"__symbolic":"reference","name":"BaseChart"},{"__symbolic":"reference","name":"AlluvialChartComponent"},{"__symbolic":"reference","name":"AreaChartComponent"},{"__symbolic":"reference","name":"ɵa"},{"__symbolic":"reference","name":"StackedAreaChartComponent"},{"__symbolic":"reference","name":"SimpleBarChartComponent"},{"__symbolic":"reference","name":"GroupedBarChartComponent"},{"__symbolic":"reference","name":"StackedBarChartComponent"},{"__symbolic":"reference","name":"BoxplotChartComponent"},{"__symbolic":"reference","name":"BubbleChartComponent"},{"__symbolic":"reference","name":"BulletChartComponent"},{"__symbolic":"reference","name":"DonutChartComponent"},{"__symbolic":"reference","name":"GaugeChartComponent"},{"__symbolic":"reference","name":"HeatmapChartComponent"},{"__symbolic":"reference","name":"HistogramChartComponent"},{"__symbolic":"reference","name":"LineChartComponent"},{"__symbolic":"reference","name":"LollipopChartComponent"},{"__symbolic":"reference","name":"PieChartComponent"},{"__symbolic":"reference","name":"ScatterChartComponent"},{"__symbolic":"reference","name":"MeterChartComponent"},{"__symbolic":"reference","name":"RadarChartComponent"},{"__symbolic":"reference","name":"ComboChartComponent"},{"__symbolic":"reference","name":"TreeChartComponent"},{"__symbolic":"reference","name":"TreemapChartComponent"},{"__symbolic":"reference","name":"CirclePackChartComponent"},{"__symbolic":"reference","name":"WordCloudChartComponent"}]}]}],"members":{}},"BaseChart":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-base-chart","template":""}]}],"members":{"__ctor__":[{"__symbolic":"constructor","parameters":[{"__symbolic":"reference","module":"@angular/core","name":"ElementRef","line":19,"character":35}]}],"data":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":24,"character":2}}]}],"options":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":42,"character":2}}]}],"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":60,"character":2}}]}],"height":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":65,"character":2}}]}],"chartRef":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"ViewChild","line":70,"character":2},"arguments":["nChart"]}]}],"ngOnInit":[{"__symbolic":"method"}],"ngAfterViewInit":[{"__symbolic":"method"}]}},"AreaChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-area-chart","template":"\n\t\t<div #nChart class=\"ibm-chart-container\">\n\t\t</div>\n\t"}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"StackedAreaChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-stacked-area-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"SimpleBarChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-simple-bar-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"GroupedBarChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-grouped-bar-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"StackedBarChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-stacked-bar-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"BoxplotChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-boxplot-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"BubbleChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-bubble-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"BulletChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-bullet-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"DonutChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-donut-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"GaugeChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-gauge-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"HistogramChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-histogram-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"LineChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-line-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"LollipopChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-lollipop-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"PieChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-pie-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"ScatterChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-scatter-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"MeterChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":13,"character":1},"arguments":[{"selector":"ibm-meter-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"RadarChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-radar-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"ComboChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":13,"character":1},"arguments":[{"selector":"ibm-combo-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"TreeChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-tree-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"TreemapChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-treemap-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"CirclePackChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-circle-pack-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"WordCloudChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-wordcloud-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"AlluvialChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-alluvial-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"HeatmapChartComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"ibm-heatmap-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}},"CardNodeComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"ibm-diagram-card-node","template":"\n\t\t<ng-container [ngSwitch]=\"component\">\n\t\t\t<xhtml:div\n\t\t\t\t*ngSwitchCase=\"'div'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'border-color': color,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:div>\n\n\t\t\t<xhtml:button\n\t\t\t\t*ngSwitchCase=\"'button'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'border-color': color,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(click)=\"click.emit($event)\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:button>\n\n\t\t\t<xhtml:a\n\t\t\t\t*ngSwitchCase=\"'a'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[attr.href]=\"href\"\n\t\t\t\t[ngStyle]=\"{ 'border-color': color, position: position }\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:a>\n\t\t</ng-container>\n\t\t<ng-template #nodeTemplate>\n\t\t\t<ng-content></ng-content>\n\t\t</ng-template>\n\t"}]}],"members":{"as":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":75,"character":2}}]}],"href":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":76,"character":2}}]}],"color":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":77,"character":2}}]}],"stacked":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":78,"character":2}}]}],"position":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":79,"character":2}}]}],"click":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":81,"character":2}}]}],"mouseEnter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":82,"character":2}}]}],"mouseOver":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":83,"character":2}}]}],"mouseOut":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":84,"character":2}}]}],"mouseLeave":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":85,"character":2}}]}],"mouseMove":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":86,"character":2}}]}],"ngOnInit":[{"__symbolic":"method"}]}},"CardNodeColumnComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"ibm-diagram-card-node-column","template":"\n\t\t<xhtml:div>\n\t\t\t<ng-content></ng-content>\n\t\t</xhtml:div>\n\t"}]}],"members":{"farsideColumn":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":12,"character":2}}]}],"class":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"HostBinding","line":14,"character":2},"arguments":["class"]}]}]}},"CardNodeLabelComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"ibm-diagram-card-node-label","template":"\n\t<xhtml:label [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:label>\n\t"}]}],"members":{}},"CardNodeSubtitleComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"ibm-diagram-card-node-subtitle","template":"\n\t<xhtml:div [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:div>\n\t"}]}],"members":{}},"CardNodeTitleComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":3,"character":1},"arguments":[{"selector":"ibm-diagram-card-node-title","template":"\n\t<xhtml:div [ngClass]=\"namespace\">\n\t\t<ng-content></ng-content>\n\t</xhtml:div>\n\t"}]}],"members":{}},"CardNodeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":12,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"CardNodeComponent"},{"__symbolic":"reference","name":"CardNodeColumnComponent"},{"__symbolic":"reference","name":"CardNodeLabelComponent"},{"__symbolic":"reference","name":"CardNodeSubtitleComponent"},{"__symbolic":"reference","name":"CardNodeTitleComponent"}],"exports":[{"__symbolic":"reference","name":"CardNodeComponent"},{"__symbolic":"reference","name":"CardNodeColumnComponent"},{"__symbolic":"reference","name":"CardNodeLabelComponent"},{"__symbolic":"reference","name":"CardNodeSubtitleComponent"},{"__symbolic":"reference","name":"CardNodeTitleComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":15,"character":11}]}]}],"members":{}},"EdgeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":5,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"EdgeComponent"}],"exports":[{"__symbolic":"reference","name":"EdgeComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":8,"character":11}]}]}],"members":{}},"EdgeComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":9,"character":1},"arguments":[{"selector":"[ibm-graph-edge]","template":"\n\t<svg:g [ngClass]=\"[namespace, variant ? namespace + '--' + variant : '']\">\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__container'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t/>\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__outer'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t/>\n\t\t<svg:path\n\t\t\t[ngClass]=\"namespace + '__inner'\"\n\t\t\t[attr.d]=\"path ? path : straight(source, target)\"\n\t\t\t[ngStyle]=\"{'stroke': color}\"\n\t\t\t[attr.marker-start]=\"markerStart ? 'url(#' + markerStart + ')' : ''\"\n\t\t\t[attr.marker-end]=\"markerEnd ? 'url(#' + markerEnd + ')' : ''\"\n\t\t/>\n\t</svg:g>\n\t"}]}],"members":{"color":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":33,"character":2}}]}],"markerEnd":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":34,"character":2}}]}],"markerStart":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":35,"character":2}}]}],"source":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":36,"character":2}}]}],"target":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":37,"character":2}}]}],"variant":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":38,"character":2}}]}],"path":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":39,"character":2}}]}]}},"MarkerComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":26,"character":1},"arguments":[{"selector":"[ibm-graph-marker]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"d":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":31,"character":2}}]}],"color":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":32,"character":2}}]}],"id":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":33,"character":2}}]}],"orient":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":34,"character":2}}]}],"height":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":35,"character":2}}]}],"width":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":36,"character":2}}]}],"refX":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":37,"character":2}}]}],"refY":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":38,"character":2}}]}],"position":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":39,"character":2}}]}]}},"MarkerArrowLeftComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"MarkerComponent"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":56,"character":1},"arguments":[{"selector":"[ibm-graph-marker-arrow-left]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"ngOnInit":[{"__symbolic":"method"}]}},"MarkerArrowRightComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"MarkerComponent"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":58,"character":1},"arguments":[{"selector":"[ibm-graph-marker-arrow-right]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"ngOnInit":[{"__symbolic":"method"}]}},"MarkerShapeNodeComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"MarkerComponent"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":60,"character":1},"arguments":[{"selector":"[ibm-graph-marker-circle]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"ngOnInit":[{"__symbolic":"method"}]}},"MarkerDiamondComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"MarkerComponent"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":62,"character":1},"arguments":[{"selector":"[ibm-graph-marker-diamond]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"ngOnInit":[{"__symbolic":"method"}]}},"MarkerSquareComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"MarkerComponent"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":64,"character":1},"arguments":[{"selector":"[ibm-graph-marker-square]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"ngOnInit":[{"__symbolic":"method"}]}},"MarkerTeeComponent":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"MarkerComponent"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":66,"character":1},"arguments":[{"selector":"[ibm-graph-marker-tee]","template":"\n<svg:marker\n\t[ngClass]=\"namespace\"\n\t[attr.markerHeight]=\"height\"\n\t[attr.markerWidth]=\"width\"\n\t[attr.orient]=\"orient\"\n\t[attr.id]=\"id\"\n\t[attr.refX]=\"refX\"\n\t[attr.refY]=\"refY\"\n\tmarkerUnits=\"userSpaceOnUse\">\n\t<svg:path [attr.d]=\"d\" [ngStyle]=\"{'fill': color}\" ></svg:path>\n</svg:marker>\n"}]}],"members":{"ngOnInit":[{"__symbolic":"method"}]}},"MarkerModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":21,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"MarkerComponent"},{"__symbolic":"reference","name":"MarkerArrowLeftComponent"},{"__symbolic":"reference","name":"MarkerArrowRightComponent"},{"__symbolic":"reference","name":"MarkerShapeNodeComponent"},{"__symbolic":"reference","name":"MarkerDiamondComponent"},{"__symbolic":"reference","name":"MarkerSquareComponent"},{"__symbolic":"reference","name":"MarkerTeeComponent"}],"exports":[{"__symbolic":"reference","name":"MarkerComponent"},{"__symbolic":"reference","name":"MarkerArrowLeftComponent"},{"__symbolic":"reference","name":"MarkerArrowRightComponent"},{"__symbolic":"reference","name":"MarkerShapeNodeComponent"},{"__symbolic":"reference","name":"MarkerDiamondComponent"},{"__symbolic":"reference","name":"MarkerSquareComponent"},{"__symbolic":"reference","name":"MarkerTeeComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":40,"character":11}]}]}],"members":{}},"ShapeNodeModule":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"NgModule","line":5,"character":1},"arguments":[{"declarations":[{"__symbolic":"reference","name":"ShapeNodeComponent"}],"exports":[{"__symbolic":"reference","name":"ShapeNodeComponent"}],"imports":[{"__symbolic":"reference","module":"@angular/common","name":"CommonModule","line":8,"character":11}]}]}],"members":{}},"ShapeNodeComponent":{"__symbolic":"class","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":11,"character":1},"arguments":[{"selector":"ibm-diagram-shape-node","template":"\n\t\t<ng-container [ngSwitch]=\"component\">\n\t\t\t<xhtml:div\n\t\t\t\t*ngSwitchCase=\"'div'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:div>\n\n\t\t\t<xhtml:button\n\t\t\t\t*ngSwitchCase=\"'button'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(click)=\"click.emit($event)\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:button>\n\n\t\t\t<xhtml:a\n\t\t\t\t*ngSwitchCase=\"'a'\"\n\t\t\t\t[ngClass]=\"[\n\t\t\t\t\tnamespace,\n\t\t\t\t\tstacked ? namespace + '--stacked' : '',\n\t\t\t\t\tshape ? namespace + '--' + shape : '',\n\t\t\t\t\tnamespace + '--' + component\n\t\t\t\t]\"\n\t\t\t\t[attr.href]=\"href\"\n\t\t\t\t[ngStyle]=\"{\n\t\t\t\t\t'height.px': size,\n\t\t\t\t\t'width.px': size,\n\t\t\t\t\tposition: position\n\t\t\t\t}\"\n\t\t\t\t(mouseenter)=\"mouseEnter.emit($event)\"\n\t\t\t\t(mouseover)=\"mouseOver.emit($event)\"\n\t\t\t\t(mouseout)=\"mouseOut.emit($event)\"\n\t\t\t\t(mouseleave)=\"mouseLeave.emit($event)\"\n\t\t\t\t(mousemove)=\"mouseMove.emit($event)\"\n\t\t\t\ttabindex=\"0\"\n\t\t\t>\n\t\t\t\t<ng-container *ngTemplateOutlet=\"nodeTemplate\"></ng-container>\n\t\t\t</xhtml:a>\n\t\t</ng-container>\n\n\t\t<ng-template #nodeTemplate>\n\t\t\t<div *ngIf=\"renderIcon\" attr.class=\"{{ namespace + '__icon' }}\">\n\t\t\t\t<ng-container *ngTemplateOutlet=\"renderIcon\"></ng-container>\n\t\t\t</div>\n\t\t\t<div\n\t\t\t\tattr.class=\"{{ namespace + '__body' }}\"\n\t\t\t\t[ngStyle]=\"{ position: bodyPosition }\"\n\t\t\t>\n\t\t\t\t<div attr.class=\"{{ namespace + '__title' }}\">{{ title }}</div>\n\t\t\t\t<div attr.class=\"{{ namespace + '__subtitle' }}\">\n\t\t\t\t\t{{ subtitle }}\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t</ng-template>\n\t"}]}],"members":{"as":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":104,"character":2}}]}],"href":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":105,"character":2}}]}],"renderIcon":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":106,"character":2}}]}],"size":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":107,"character":2}}]}],"stacked":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":108,"character":2}}]}],"shape":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":109,"character":2}}]}],"subtitle":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":110,"character":2}}]}],"title":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":111,"character":2}}]}],"position":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":112,"character":2}}]}],"bodyPosition":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Input","line":113,"character":2}}]}],"click":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":115,"character":2}}]}],"mouseEnter":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":116,"character":2}}]}],"mouseOver":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":117,"character":2}}]}],"mouseOut":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":118,"character":2}}]}],"mouseLeave":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":119,"character":2}}]}],"mouseMove":[{"__symbolic":"property","decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Output","line":120,"character":2}}]}],"ngOnInit":[{"__symbolic":"method"}]}},"ɵa":{"__symbolic":"class","extends":{"__symbolic":"reference","name":"BaseChart"},"decorators":[{"__symbolic":"call","expression":{"__symbolic":"reference","module":"@angular/core","name":"Component","line":14,"character":1},"arguments":[{"selector":"EXPERIMENTAL-ibm-choropleth-chart","template":""}]}],"members":{"ngAfterViewInit":[{"__symbolic":"method"}]}}},"origins":{"ChartsModule":"./charts.module","BaseChart":"./base-chart.component","AreaChartComponent":"./area-chart.component","StackedAreaChartComponent":"./area-chart-stacked.component","SimpleBarChartComponent":"./bar-chart-simple.component","GroupedBarChartComponent":"./bar-chart-grouped.component","StackedBarChartComponent":"./bar-chart-stacked.component","BoxplotChartComponent":"./boxplot-chart.component","BubbleChartComponent":"./bubble-chart.component","BulletChartComponent":"./bullet-chart.component","DonutChartComponent":"./donut-chart.component","GaugeChartComponent":"./gauge-chart.component","HistogramChartComponent":"./histogram-chart.component","LineChartComponent":"./line-chart.component","LollipopChartComponent":"./lollipop-chart.component","PieChartComponent":"./pie-chart.component","ScatterChartComponent":"./scatter-chart.component","MeterChartComponent":"./meter-chart.component","RadarChartComponent":"./radar-chart.component","ComboChartComponent":"./combo-chart.component","TreeChartComponent":"./tree-chart.component","TreemapChartComponent":"./treemap-chart.component","CirclePackChartComponent":"./circle-pack-chart.component","WordCloudChartComponent":"./wordcloud-chart.component","AlluvialChartComponent":"./alluvial-chart.component","HeatmapChartComponent":"./heatmap-chart.component","CardNodeComponent":"./diagrams/card-node/card-node.component","CardNodeColumnComponent":"./diagrams/card-node/card-node-column.component","CardNodeLabelComponent":"./diagrams/card-node/card-node-label.component","CardNodeSubtitleComponent":"./diagrams/card-node/card-node-subtitle.component","CardNodeTitleComponent":"./diagrams/card-node/card-node-title.component","CardNodeModule":"./diagrams/card-node/card-node.module","EdgeModule":"./diagrams/edge/edge.module","EdgeComponent":"./diagrams/edge/edge.component","MarkerComponent":"./diagrams/marker/marker.component","MarkerArrowLeftComponent":"./diagrams/marker/marker.component","MarkerArrowRightComponent":"./diagrams/marker/marker.component","MarkerShapeNodeComponent":"./diagrams/marker/marker.component","MarkerDiamondComponent":"./diagrams/marker/marker.component","MarkerSquareComponent":"./diagrams/marker/marker.component","MarkerTeeComponent":"./diagrams/marker/marker.component","MarkerModule":"./diagrams/marker/marker.module","ShapeNodeModule":"./diagrams/shape-node/shape-node.module","ShapeNodeComponent":"./diagrams/shape-node/shape-node.component","ɵa":"./choropleth.component"},"importAs":"@carbon/charts-angular"}
|
package/charts.module.d.ts
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit } from "@angular/core";
|
|
2
|
-
import { BaseChart } from "./base-chart.component";
|
|
3
|
-
/**
|
|
4
|
-
* Wrapper around `Choropleth` in carbon charts library
|
|
5
|
-
*
|
|
6
|
-
* Most functions just call their equivalent from the chart library.
|
|
7
|
-
*/
|
|
8
|
-
export declare class EXPERIMENTAL_ChoroplethChartComponent extends BaseChart implements AfterViewInit {
|
|
9
|
-
/**
|
|
10
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
11
|
-
*/
|
|
12
|
-
ngAfterViewInit(): void;
|
|
13
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit } from "@angular/core";
|
|
2
|
-
import { BaseChart } from "./base-chart.component";
|
|
3
|
-
/**
|
|
4
|
-
* Wrapper around `BubbleChart` in carbon charts library
|
|
5
|
-
*
|
|
6
|
-
* Most functions just call their equivalent from the chart library.
|
|
7
|
-
*/
|
|
8
|
-
export declare class CirclePackChartComponent extends BaseChart implements AfterViewInit {
|
|
9
|
-
/**
|
|
10
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
11
|
-
*/
|
|
12
|
-
ngAfterViewInit(): void;
|
|
13
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit } from "@angular/core";
|
|
2
|
-
import { BaseChart } from "./base-chart.component";
|
|
3
|
-
/**
|
|
4
|
-
* Wrapper around `ComboChart` in carbon charts library
|
|
5
|
-
*
|
|
6
|
-
* Most functions just call their equivalent from the chart library.
|
|
7
|
-
*/
|
|
8
|
-
export declare class ComboChartComponent extends BaseChart implements AfterViewInit {
|
|
9
|
-
/**
|
|
10
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
11
|
-
*/
|
|
12
|
-
ngAfterViewInit(): void;
|
|
13
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
-
export declare class CardNodeComponent implements OnInit {
|
|
3
|
-
as: string;
|
|
4
|
-
href: string;
|
|
5
|
-
color: any;
|
|
6
|
-
stacked: any;
|
|
7
|
-
position: string;
|
|
8
|
-
click: EventEmitter<any>;
|
|
9
|
-
mouseEnter: EventEmitter<any>;
|
|
10
|
-
mouseOver: EventEmitter<any>;
|
|
11
|
-
mouseOut: EventEmitter<any>;
|
|
12
|
-
mouseLeave: EventEmitter<any>;
|
|
13
|
-
mouseMove: EventEmitter<any>;
|
|
14
|
-
namespace: string;
|
|
15
|
-
component: string;
|
|
16
|
-
ngOnInit(): void;
|
|
17
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { CardNodeComponent } from "./card-node.component";
|
|
2
|
-
import { CardNodeColumnComponent } from "./card-node-column.component";
|
|
3
|
-
import { CardNodeLabelComponent } from "./card-node-label.component";
|
|
4
|
-
import { CardNodeSubtitleComponent } from "./card-node-subtitle.component";
|
|
5
|
-
import { CardNodeTitleComponent } from "./card-node-title.component";
|
|
6
|
-
export { CardNodeComponent, CardNodeColumnComponent, CardNodeLabelComponent, CardNodeSubtitleComponent, CardNodeTitleComponent };
|
|
7
|
-
export declare class CardNodeModule {
|
|
8
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
interface Coordinates {
|
|
2
|
-
x: number;
|
|
3
|
-
y: number;
|
|
4
|
-
}
|
|
5
|
-
export declare class EdgeComponent {
|
|
6
|
-
color: string;
|
|
7
|
-
markerEnd: string;
|
|
8
|
-
markerStart: string;
|
|
9
|
-
source: Coordinates;
|
|
10
|
-
target: Coordinates;
|
|
11
|
-
variant: "dash-sm" | "dash-md" | "dash-lg" | "dash-xl" | "double" | "tunnel";
|
|
12
|
-
path: string;
|
|
13
|
-
pathClasses: any;
|
|
14
|
-
namespace: string;
|
|
15
|
-
straight: (source: any, target: any) => string;
|
|
16
|
-
}
|
|
17
|
-
export {};
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { OnInit } from "@angular/core";
|
|
2
|
-
export declare class MarkerComponent {
|
|
3
|
-
d: string;
|
|
4
|
-
color: string;
|
|
5
|
-
id: string;
|
|
6
|
-
orient: string | number;
|
|
7
|
-
height: string | number;
|
|
8
|
-
width: string | number;
|
|
9
|
-
refX: string | number;
|
|
10
|
-
refY: string | number;
|
|
11
|
-
position: "start" | "end";
|
|
12
|
-
namespace: string;
|
|
13
|
-
setAttributes: ({ d, id, height, width }: {
|
|
14
|
-
d: any;
|
|
15
|
-
id: any;
|
|
16
|
-
height: any;
|
|
17
|
-
width: any;
|
|
18
|
-
}) => void;
|
|
19
|
-
}
|
|
20
|
-
export declare class MarkerArrowLeftComponent extends MarkerComponent implements OnInit {
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
}
|
|
23
|
-
export declare class MarkerArrowRightComponent extends MarkerComponent implements OnInit {
|
|
24
|
-
ngOnInit(): void;
|
|
25
|
-
}
|
|
26
|
-
export declare class MarkerShapeNodeComponent extends MarkerComponent implements OnInit {
|
|
27
|
-
ngOnInit(): void;
|
|
28
|
-
}
|
|
29
|
-
export declare class MarkerDiamondComponent extends MarkerComponent implements OnInit {
|
|
30
|
-
ngOnInit(): void;
|
|
31
|
-
}
|
|
32
|
-
export declare class MarkerSquareComponent extends MarkerComponent implements OnInit {
|
|
33
|
-
ngOnInit(): void;
|
|
34
|
-
}
|
|
35
|
-
export declare class MarkerTeeComponent extends MarkerComponent implements OnInit {
|
|
36
|
-
ngOnInit(): void;
|
|
37
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { MarkerComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerShapeNodeComponent, MarkerDiamondComponent, MarkerSquareComponent, MarkerTeeComponent } from "./marker.component";
|
|
2
|
-
export { MarkerComponent, MarkerArrowLeftComponent, MarkerArrowRightComponent, MarkerShapeNodeComponent, MarkerDiamondComponent, MarkerSquareComponent, MarkerTeeComponent };
|
|
3
|
-
export declare class MarkerModule {
|
|
4
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { EventEmitter, TemplateRef, OnInit } from '@angular/core';
|
|
2
|
-
export declare class ShapeNodeComponent implements OnInit {
|
|
3
|
-
as: string;
|
|
4
|
-
href: string;
|
|
5
|
-
renderIcon: TemplateRef<any>;
|
|
6
|
-
size: number;
|
|
7
|
-
stacked: boolean;
|
|
8
|
-
shape: 'circle' | 'square' | 'rounded-square';
|
|
9
|
-
subtitle: string;
|
|
10
|
-
title: string;
|
|
11
|
-
position: string;
|
|
12
|
-
bodyPosition: string;
|
|
13
|
-
click: EventEmitter<any>;
|
|
14
|
-
mouseEnter: EventEmitter<any>;
|
|
15
|
-
mouseOver: EventEmitter<any>;
|
|
16
|
-
mouseOut: EventEmitter<any>;
|
|
17
|
-
mouseLeave: EventEmitter<any>;
|
|
18
|
-
mouseMove: EventEmitter<any>;
|
|
19
|
-
namespace: string;
|
|
20
|
-
component: string;
|
|
21
|
-
ngOnInit(): void;
|
|
22
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit } from "@angular/core";
|
|
2
|
-
import { BaseChart } from "./base-chart.component";
|
|
3
|
-
/**
|
|
4
|
-
* Wrapper around `DonutChart` in carbon charts library
|
|
5
|
-
*
|
|
6
|
-
* Most functions just call their equivalent from the chart library.
|
|
7
|
-
*/
|
|
8
|
-
export declare class DonutChartComponent extends BaseChart implements AfterViewInit {
|
|
9
|
-
/**
|
|
10
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
11
|
-
*/
|
|
12
|
-
ngAfterViewInit(): void;
|
|
13
|
-
}
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: alluvial-chart.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Component } from "@angular/core";
|
|
7
|
-
import { BaseChart } from "./base-chart.component";
|
|
8
|
-
import { AlluvialChart } from "@carbon/charts";
|
|
9
|
-
/**
|
|
10
|
-
* Wrapper around `Alluvial` in carbon charts library
|
|
11
|
-
*
|
|
12
|
-
* Most functions just call their equivalent from the chart library.
|
|
13
|
-
*/
|
|
14
|
-
export class AlluvialChartComponent extends BaseChart {
|
|
15
|
-
/**
|
|
16
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
ngAfterViewInit() {
|
|
20
|
-
this.chart = new AlluvialChart(this.elementRef.nativeElement, {
|
|
21
|
-
data: this.data,
|
|
22
|
-
options: this.options
|
|
23
|
-
});
|
|
24
|
-
Object.assign(this, this.chart);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
AlluvialChartComponent.decorators = [
|
|
28
|
-
{ type: Component, args: [{
|
|
29
|
-
selector: "ibm-alluvial-chart",
|
|
30
|
-
template: ``
|
|
31
|
-
}] }
|
|
32
|
-
];
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYWxsdXZpYWwtY2hhcnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGNhcmJvbi9jaGFydHMtYW5ndWxhci8iLCJzb3VyY2VzIjpbImFsbHV2aWFsLWNoYXJ0LmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFDTixTQUFTLEVBRVQsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBRW5ELE9BQU8sRUFBRSxhQUFhLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7O0FBVy9DLE1BQU0sT0FBTyxzQkFBdUIsU0FBUSxTQUFTOzs7OztJQUlwRCxlQUFlO1FBQ2QsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLGFBQWEsQ0FDN0IsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLEVBQzdCO1lBQ0MsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO1lBQ2YsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPO1NBQ3JCLENBQ0QsQ0FBQztRQUVGLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNqQyxDQUFDOzs7WUFsQkQsU0FBUyxTQUFDO2dCQUNWLFFBQVEsRUFBRSxvQkFBb0I7Z0JBQzlCLFFBQVEsRUFBRSxFQUFFO2FBQ1oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuXHRDb21wb25lbnQsXG5cdEFmdGVyVmlld0luaXRcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuaW1wb3J0IHsgQmFzZUNoYXJ0IH0gZnJvbSBcIi4vYmFzZS1jaGFydC5jb21wb25lbnRcIjtcblxuaW1wb3J0IHsgQWxsdXZpYWxDaGFydCB9IGZyb20gXCJAY2FyYm9uL2NoYXJ0c1wiO1xuXG4vKipcbiAqIFdyYXBwZXIgYXJvdW5kIGBBbGx1dmlhbGAgaW4gY2FyYm9uIGNoYXJ0cyBsaWJyYXJ5XG4gKlxuICogTW9zdCBmdW5jdGlvbnMganVzdCBjYWxsIHRoZWlyIGVxdWl2YWxlbnQgZnJvbSB0aGUgY2hhcnQgbGlicmFyeS5cbiAqL1xuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiBcImlibS1hbGx1dmlhbC1jaGFydFwiLFxuXHR0ZW1wbGF0ZTogYGBcbn0pXG5leHBvcnQgY2xhc3MgQWxsdXZpYWxDaGFydENvbXBvbmVudCBleHRlbmRzIEJhc2VDaGFydCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xuXHQvKipcblx0ICogUnVucyBhZnRlciB2aWV3IGluaXQgdG8gY3JlYXRlIGEgY2hhcnQsIGF0dGFjaCBpdCB0byBgZWxlbWVudFJlZmAgYW5kIGRyYXcgaXQuXG5cdCAqL1xuXHRuZ0FmdGVyVmlld0luaXQoKSB7XG5cdFx0dGhpcy5jaGFydCA9IG5ldyBBbGx1dmlhbENoYXJ0KFxuXHRcdFx0dGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsXG5cdFx0XHR7XG5cdFx0XHRcdGRhdGE6IHRoaXMuZGF0YSxcblx0XHRcdFx0b3B0aW9uczogdGhpcy5vcHRpb25zXG5cdFx0XHR9XG5cdFx0KTtcblxuXHRcdE9iamVjdC5hc3NpZ24odGhpcywgdGhpcy5jaGFydCk7XG5cdH1cbn1cbiJdfQ==
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: area-chart-stacked.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Component } from "@angular/core";
|
|
7
|
-
import { BaseChart } from "./base-chart.component";
|
|
8
|
-
import { StackedAreaChart } from "@carbon/charts";
|
|
9
|
-
/**
|
|
10
|
-
* Wrapper around `StackedAreaChart` in carbon charts library
|
|
11
|
-
*
|
|
12
|
-
* Most functions just call their equivalent from the chart library.
|
|
13
|
-
*/
|
|
14
|
-
export class StackedAreaChartComponent extends BaseChart {
|
|
15
|
-
/**
|
|
16
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
ngAfterViewInit() {
|
|
20
|
-
this.chart = new StackedAreaChart(this.elementRef.nativeElement, {
|
|
21
|
-
data: this.data,
|
|
22
|
-
options: this.options
|
|
23
|
-
});
|
|
24
|
-
Object.assign(this, this.chart);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
StackedAreaChartComponent.decorators = [
|
|
28
|
-
{ type: Component, args: [{
|
|
29
|
-
selector: "ibm-stacked-area-chart",
|
|
30
|
-
template: ``
|
|
31
|
-
}] }
|
|
32
|
-
];
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJlYS1jaGFydC1zdGFja2VkLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiJuZzovL0BjYXJib24vY2hhcnRzLWFuZ3VsYXIvIiwic291cmNlcyI6WyJhcmVhLWNoYXJ0LXN0YWNrZWQuY29tcG9uZW50LnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiI7Ozs7O0FBQUEsT0FBTyxFQUNOLFNBQVMsRUFFVCxNQUFNLGVBQWUsQ0FBQztBQUV2QixPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sd0JBQXdCLENBQUM7QUFFbkQsT0FBTyxFQUFFLGdCQUFnQixFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7OztBQVdsRCxNQUFNLE9BQU8seUJBQTBCLFNBQVEsU0FBUzs7Ozs7SUFJdkQsZUFBZTtRQUNkLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxnQkFBZ0IsQ0FDaEMsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLEVBQzdCO1lBQ0MsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO1lBQ2YsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPO1NBQ3JCLENBQ0QsQ0FBQztRQUVGLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNqQyxDQUFDOzs7WUFsQkQsU0FBUyxTQUFDO2dCQUNWLFFBQVEsRUFBRSx3QkFBd0I7Z0JBQ2xDLFFBQVEsRUFBRSxFQUFFO2FBQ1oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuXHRDb21wb25lbnQsXG5cdEFmdGVyVmlld0luaXRcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuaW1wb3J0IHsgQmFzZUNoYXJ0IH0gZnJvbSBcIi4vYmFzZS1jaGFydC5jb21wb25lbnRcIjtcblxuaW1wb3J0IHsgU3RhY2tlZEFyZWFDaGFydCB9IGZyb20gXCJAY2FyYm9uL2NoYXJ0c1wiO1xuXG4vKipcbiAqIFdyYXBwZXIgYXJvdW5kIGBTdGFja2VkQXJlYUNoYXJ0YCBpbiBjYXJib24gY2hhcnRzIGxpYnJhcnlcbiAqXG4gKiBNb3N0IGZ1bmN0aW9ucyBqdXN0IGNhbGwgdGhlaXIgZXF1aXZhbGVudCBmcm9tIHRoZSBjaGFydCBsaWJyYXJ5LlxuICovXG5AQ29tcG9uZW50KHtcblx0c2VsZWN0b3I6IFwiaWJtLXN0YWNrZWQtYXJlYS1jaGFydFwiLFxuXHR0ZW1wbGF0ZTogYGBcbn0pXG5leHBvcnQgY2xhc3MgU3RhY2tlZEFyZWFDaGFydENvbXBvbmVudCBleHRlbmRzIEJhc2VDaGFydCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xuXHQvKipcblx0ICogUnVucyBhZnRlciB2aWV3IGluaXQgdG8gY3JlYXRlIGEgY2hhcnQsIGF0dGFjaCBpdCB0byBgZWxlbWVudFJlZmAgYW5kIGRyYXcgaXQuXG5cdCAqL1xuXHRuZ0FmdGVyVmlld0luaXQoKSB7XG5cdFx0dGhpcy5jaGFydCA9IG5ldyBTdGFja2VkQXJlYUNoYXJ0KFxuXHRcdFx0dGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsXG5cdFx0XHR7XG5cdFx0XHRcdGRhdGE6IHRoaXMuZGF0YSxcblx0XHRcdFx0b3B0aW9uczogdGhpcy5vcHRpb25zXG5cdFx0XHR9XG5cdFx0KTtcblxuXHRcdE9iamVjdC5hc3NpZ24odGhpcywgdGhpcy5jaGFydCk7XG5cdH1cbn1cbiJdfQ==
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: area-chart.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Component } from "@angular/core";
|
|
7
|
-
import { BaseChart } from "./base-chart.component";
|
|
8
|
-
import { AreaChart } from "@carbon/charts";
|
|
9
|
-
/**
|
|
10
|
-
* Wrapper around `AreaChart` in carbon charts library
|
|
11
|
-
*
|
|
12
|
-
* Most functions just call their equivalent from the chart library.
|
|
13
|
-
*/
|
|
14
|
-
export class AreaChartComponent extends BaseChart {
|
|
15
|
-
/**
|
|
16
|
-
* Runs after view init to create a chart, attach it to `chartRef` and draw it.
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
ngAfterViewInit() {
|
|
20
|
-
this.chart = new AreaChart(this.chartRef.nativeElement, {
|
|
21
|
-
data: this.data,
|
|
22
|
-
options: this.options
|
|
23
|
-
});
|
|
24
|
-
Object.assign(this, this.chart);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
AreaChartComponent.decorators = [
|
|
28
|
-
{ type: Component, args: [{
|
|
29
|
-
selector: "ibm-area-chart",
|
|
30
|
-
template: `
|
|
31
|
-
<div #nChart class="ibm-chart-container">
|
|
32
|
-
</div>
|
|
33
|
-
`
|
|
34
|
-
}] }
|
|
35
|
-
];
|
|
36
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYXJlYS1jaGFydC5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AY2FyYm9uL2NoYXJ0cy1hbmd1bGFyLyIsInNvdXJjZXMiOlsiYXJlYS1jaGFydC5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQ04sU0FBUyxFQUVULE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUVuRCxPQUFPLEVBQUUsU0FBUyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7OztBQWMzQyxNQUFNLE9BQU8sa0JBQW1CLFNBQVEsU0FBUzs7Ozs7SUFJaEQsZUFBZTtRQUNkLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxTQUFTLENBQ3pCLElBQUksQ0FBQyxRQUFRLENBQUMsYUFBYSxFQUMzQjtZQUNDLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtZQUNmLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTztTQUNyQixDQUNELENBQUM7UUFFRixNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDakMsQ0FBQzs7O1lBckJELFNBQVMsU0FBQztnQkFDVixRQUFRLEVBQUUsZ0JBQWdCO2dCQUMxQixRQUFRLEVBQUU7OztFQUdUO2FBQ0QiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuXHRDb21wb25lbnQsXG5cdEFmdGVyVmlld0luaXRcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuaW1wb3J0IHsgQmFzZUNoYXJ0IH0gZnJvbSBcIi4vYmFzZS1jaGFydC5jb21wb25lbnRcIjtcblxuaW1wb3J0IHsgQXJlYUNoYXJ0IH0gZnJvbSBcIkBjYXJib24vY2hhcnRzXCI7XG5cbi8qKlxuICogV3JhcHBlciBhcm91bmQgYEFyZWFDaGFydGAgaW4gY2FyYm9uIGNoYXJ0cyBsaWJyYXJ5XG4gKlxuICogTW9zdCBmdW5jdGlvbnMganVzdCBjYWxsIHRoZWlyIGVxdWl2YWxlbnQgZnJvbSB0aGUgY2hhcnQgbGlicmFyeS5cbiAqL1xuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiBcImlibS1hcmVhLWNoYXJ0XCIsXG5cdHRlbXBsYXRlOiBgXG5cdFx0PGRpdiAjbkNoYXJ0IGNsYXNzPVwiaWJtLWNoYXJ0LWNvbnRhaW5lclwiPlxuXHRcdDwvZGl2PlxuXHRgXG59KVxuZXhwb3J0IGNsYXNzIEFyZWFDaGFydENvbXBvbmVudCBleHRlbmRzIEJhc2VDaGFydCBpbXBsZW1lbnRzIEFmdGVyVmlld0luaXQge1xuXHQvKipcblx0ICogUnVucyBhZnRlciB2aWV3IGluaXQgdG8gY3JlYXRlIGEgY2hhcnQsIGF0dGFjaCBpdCB0byBgY2hhcnRSZWZgIGFuZCBkcmF3IGl0LlxuXHQgKi9cblx0bmdBZnRlclZpZXdJbml0KCkge1xuXHRcdHRoaXMuY2hhcnQgPSBuZXcgQXJlYUNoYXJ0KFxuXHRcdFx0dGhpcy5jaGFydFJlZi5uYXRpdmVFbGVtZW50LFxuXHRcdFx0e1xuXHRcdFx0XHRkYXRhOiB0aGlzLmRhdGEsXG5cdFx0XHRcdG9wdGlvbnM6IHRoaXMub3B0aW9uc1xuXHRcdFx0fVxuXHRcdCk7XG5cblx0XHRPYmplY3QuYXNzaWduKHRoaXMsIHRoaXMuY2hhcnQpO1xuXHR9XG59XG4iXX0=
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: bar-chart-grouped.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Component } from "@angular/core";
|
|
7
|
-
import { BaseChart } from "./base-chart.component";
|
|
8
|
-
import { GroupedBarChart } from "@carbon/charts";
|
|
9
|
-
/**
|
|
10
|
-
* Wrapper around `GroupedBarChart` in carbon charts library
|
|
11
|
-
*
|
|
12
|
-
* Most functions just call their equivalent from the chart library.
|
|
13
|
-
*/
|
|
14
|
-
export class GroupedBarChartComponent extends BaseChart {
|
|
15
|
-
/**
|
|
16
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
ngAfterViewInit() {
|
|
20
|
-
this.chart = new GroupedBarChart(this.elementRef.nativeElement, {
|
|
21
|
-
data: this.data,
|
|
22
|
-
options: this.options
|
|
23
|
-
});
|
|
24
|
-
Object.assign(this, this.chart);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
GroupedBarChartComponent.decorators = [
|
|
28
|
-
{ type: Component, args: [{
|
|
29
|
-
selector: "ibm-grouped-bar-chart",
|
|
30
|
-
template: ``
|
|
31
|
-
}] }
|
|
32
|
-
];
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyLWNoYXJ0LWdyb3VwZWQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGNhcmJvbi9jaGFydHMtYW5ndWxhci8iLCJzb3VyY2VzIjpbImJhci1jaGFydC1ncm91cGVkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFDTixTQUFTLEVBRVQsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBRW5ELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7O0FBV2pELE1BQU0sT0FBTyx3QkFBeUIsU0FBUSxTQUFTOzs7OztJQUl0RCxlQUFlO1FBQ2QsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLGVBQWUsQ0FDL0IsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLEVBQzdCO1lBQ0MsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO1lBQ2YsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPO1NBQ3JCLENBQ0QsQ0FBQztRQUVGLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNqQyxDQUFDOzs7WUFsQkQsU0FBUyxTQUFDO2dCQUNWLFFBQVEsRUFBRSx1QkFBdUI7Z0JBQ2pDLFFBQVEsRUFBRSxFQUFFO2FBQ1oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuXHRDb21wb25lbnQsXG5cdEFmdGVyVmlld0luaXRcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuaW1wb3J0IHsgQmFzZUNoYXJ0IH0gZnJvbSBcIi4vYmFzZS1jaGFydC5jb21wb25lbnRcIjtcblxuaW1wb3J0IHsgR3JvdXBlZEJhckNoYXJ0IH0gZnJvbSBcIkBjYXJib24vY2hhcnRzXCI7XG5cbi8qKlxuICogV3JhcHBlciBhcm91bmQgYEdyb3VwZWRCYXJDaGFydGAgaW4gY2FyYm9uIGNoYXJ0cyBsaWJyYXJ5XG4gKlxuICogTW9zdCBmdW5jdGlvbnMganVzdCBjYWxsIHRoZWlyIGVxdWl2YWxlbnQgZnJvbSB0aGUgY2hhcnQgbGlicmFyeS5cbiAqL1xuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiBcImlibS1ncm91cGVkLWJhci1jaGFydFwiLFxuXHR0ZW1wbGF0ZTogYGBcbn0pXG5leHBvcnQgY2xhc3MgR3JvdXBlZEJhckNoYXJ0Q29tcG9uZW50IGV4dGVuZHMgQmFzZUNoYXJ0IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XG5cdC8qKlxuXHQgKiBSdW5zIGFmdGVyIHZpZXcgaW5pdCB0byBjcmVhdGUgYSBjaGFydCwgYXR0YWNoIGl0IHRvIGBlbGVtZW50UmVmYCBhbmQgZHJhdyBpdC5cblx0ICovXG5cdG5nQWZ0ZXJWaWV3SW5pdCgpIHtcblx0XHR0aGlzLmNoYXJ0ID0gbmV3IEdyb3VwZWRCYXJDaGFydChcblx0XHRcdHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LFxuXHRcdFx0e1xuXHRcdFx0XHRkYXRhOiB0aGlzLmRhdGEsXG5cdFx0XHRcdG9wdGlvbnM6IHRoaXMub3B0aW9uc1xuXHRcdFx0fVxuXHRcdCk7XG5cblx0XHRPYmplY3QuYXNzaWduKHRoaXMsIHRoaXMuY2hhcnQpO1xuXHR9XG59XG4iXX0=
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: bar-chart-simple.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Component } from "@angular/core";
|
|
7
|
-
import { BaseChart } from "./base-chart.component";
|
|
8
|
-
import { SimpleBarChart } from "@carbon/charts";
|
|
9
|
-
/**
|
|
10
|
-
* Wrapper around `SimpleBarChart` in carbon charts library
|
|
11
|
-
*
|
|
12
|
-
* Most functions just call their equivalent from the chart library.
|
|
13
|
-
*/
|
|
14
|
-
export class SimpleBarChartComponent extends BaseChart {
|
|
15
|
-
/**
|
|
16
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
ngAfterViewInit() {
|
|
20
|
-
this.chart = new SimpleBarChart(this.elementRef.nativeElement, {
|
|
21
|
-
data: this.data,
|
|
22
|
-
options: this.options
|
|
23
|
-
});
|
|
24
|
-
Object.assign(this, this.chart);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
SimpleBarChartComponent.decorators = [
|
|
28
|
-
{ type: Component, args: [{
|
|
29
|
-
selector: "ibm-simple-bar-chart",
|
|
30
|
-
template: ``
|
|
31
|
-
}] }
|
|
32
|
-
];
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyLWNoYXJ0LXNpbXBsZS5jb21wb25lbnQuanMiLCJzb3VyY2VSb290Ijoibmc6Ly9AY2FyYm9uL2NoYXJ0cy1hbmd1bGFyLyIsInNvdXJjZXMiOlsiYmFyLWNoYXJ0LXNpbXBsZS5jb21wb25lbnQudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6Ijs7Ozs7QUFBQSxPQUFPLEVBQ04sU0FBUyxFQUVULE1BQU0sZUFBZSxDQUFDO0FBRXZCLE9BQU8sRUFBRSxTQUFTLEVBQUUsTUFBTSx3QkFBd0IsQ0FBQztBQUVuRCxPQUFPLEVBQUUsY0FBYyxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7Ozs7OztBQVdoRCxNQUFNLE9BQU8sdUJBQXdCLFNBQVEsU0FBUzs7Ozs7SUFJckQsZUFBZTtRQUNkLElBQUksQ0FBQyxLQUFLLEdBQUcsSUFBSSxjQUFjLENBQzlCLElBQUksQ0FBQyxVQUFVLENBQUMsYUFBYSxFQUM3QjtZQUNDLElBQUksRUFBRSxJQUFJLENBQUMsSUFBSTtZQUNmLE9BQU8sRUFBRSxJQUFJLENBQUMsT0FBTztTQUNyQixDQUNELENBQUM7UUFFRixNQUFNLENBQUMsTUFBTSxDQUFDLElBQUksRUFBRSxJQUFJLENBQUMsS0FBSyxDQUFDLENBQUM7SUFDakMsQ0FBQzs7O1lBbEJELFNBQVMsU0FBQztnQkFDVixRQUFRLEVBQUUsc0JBQXNCO2dCQUNoQyxRQUFRLEVBQUUsRUFBRTthQUNaIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHtcblx0Q29tcG9uZW50LFxuXHRBZnRlclZpZXdJbml0XG59IGZyb20gXCJAYW5ndWxhci9jb3JlXCI7XG5cbmltcG9ydCB7IEJhc2VDaGFydCB9IGZyb20gXCIuL2Jhc2UtY2hhcnQuY29tcG9uZW50XCI7XG5cbmltcG9ydCB7IFNpbXBsZUJhckNoYXJ0IH0gZnJvbSBcIkBjYXJib24vY2hhcnRzXCI7XG5cbi8qKlxuICogV3JhcHBlciBhcm91bmQgYFNpbXBsZUJhckNoYXJ0YCBpbiBjYXJib24gY2hhcnRzIGxpYnJhcnlcbiAqXG4gKiBNb3N0IGZ1bmN0aW9ucyBqdXN0IGNhbGwgdGhlaXIgZXF1aXZhbGVudCBmcm9tIHRoZSBjaGFydCBsaWJyYXJ5LlxuICovXG5AQ29tcG9uZW50KHtcblx0c2VsZWN0b3I6IFwiaWJtLXNpbXBsZS1iYXItY2hhcnRcIixcblx0dGVtcGxhdGU6IGBgXG59KVxuZXhwb3J0IGNsYXNzIFNpbXBsZUJhckNoYXJ0Q29tcG9uZW50IGV4dGVuZHMgQmFzZUNoYXJ0IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XG5cdC8qKlxuXHQgKiBSdW5zIGFmdGVyIHZpZXcgaW5pdCB0byBjcmVhdGUgYSBjaGFydCwgYXR0YWNoIGl0IHRvIGBlbGVtZW50UmVmYCBhbmQgZHJhdyBpdC5cblx0ICovXG5cdG5nQWZ0ZXJWaWV3SW5pdCgpIHtcblx0XHR0aGlzLmNoYXJ0ID0gbmV3IFNpbXBsZUJhckNoYXJ0KFxuXHRcdFx0dGhpcy5lbGVtZW50UmVmLm5hdGl2ZUVsZW1lbnQsXG5cdFx0XHR7XG5cdFx0XHRcdGRhdGE6IHRoaXMuZGF0YSxcblx0XHRcdFx0b3B0aW9uczogdGhpcy5vcHRpb25zXG5cdFx0XHR9XG5cdFx0KTtcblxuXHRcdE9iamVjdC5hc3NpZ24odGhpcywgdGhpcy5jaGFydCk7XG5cdH1cbn1cbiJdfQ==
|
|
@@ -1,33 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* @fileoverview added by tsickle
|
|
3
|
-
* Generated from: bar-chart-stacked.component.ts
|
|
4
|
-
* @suppress {checkTypes,constantProperty,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc
|
|
5
|
-
*/
|
|
6
|
-
import { Component } from "@angular/core";
|
|
7
|
-
import { BaseChart } from "./base-chart.component";
|
|
8
|
-
import { StackedBarChart } from "@carbon/charts";
|
|
9
|
-
/**
|
|
10
|
-
* Wrapper around `StackedBarChart` in carbon charts library
|
|
11
|
-
*
|
|
12
|
-
* Most functions just call their equivalent from the chart library.
|
|
13
|
-
*/
|
|
14
|
-
export class StackedBarChartComponent extends BaseChart {
|
|
15
|
-
/**
|
|
16
|
-
* Runs after view init to create a chart, attach it to `elementRef` and draw it.
|
|
17
|
-
* @return {?}
|
|
18
|
-
*/
|
|
19
|
-
ngAfterViewInit() {
|
|
20
|
-
this.chart = new StackedBarChart(this.elementRef.nativeElement, {
|
|
21
|
-
data: this.data,
|
|
22
|
-
options: this.options
|
|
23
|
-
});
|
|
24
|
-
Object.assign(this, this.chart);
|
|
25
|
-
}
|
|
26
|
-
}
|
|
27
|
-
StackedBarChartComponent.decorators = [
|
|
28
|
-
{ type: Component, args: [{
|
|
29
|
-
selector: "ibm-stacked-bar-chart",
|
|
30
|
-
template: ``
|
|
31
|
-
}] }
|
|
32
|
-
];
|
|
33
|
-
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiYmFyLWNoYXJ0LXN0YWNrZWQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6Im5nOi8vQGNhcmJvbi9jaGFydHMtYW5ndWxhci8iLCJzb3VyY2VzIjpbImJhci1jaGFydC1zdGFja2VkLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiOzs7OztBQUFBLE9BQU8sRUFDTixTQUFTLEVBRVQsTUFBTSxlQUFlLENBQUM7QUFFdkIsT0FBTyxFQUFFLFNBQVMsRUFBRSxNQUFNLHdCQUF3QixDQUFDO0FBRW5ELE9BQU8sRUFBRSxlQUFlLEVBQUUsTUFBTSxnQkFBZ0IsQ0FBQzs7Ozs7O0FBV2pELE1BQU0sT0FBTyx3QkFBeUIsU0FBUSxTQUFTOzs7OztJQUl0RCxlQUFlO1FBQ2QsSUFBSSxDQUFDLEtBQUssR0FBRyxJQUFJLGVBQWUsQ0FDL0IsSUFBSSxDQUFDLFVBQVUsQ0FBQyxhQUFhLEVBQzdCO1lBQ0MsSUFBSSxFQUFFLElBQUksQ0FBQyxJQUFJO1lBQ2YsT0FBTyxFQUFFLElBQUksQ0FBQyxPQUFPO1NBQ3JCLENBQ0QsQ0FBQztRQUVGLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxFQUFFLElBQUksQ0FBQyxLQUFLLENBQUMsQ0FBQztJQUNqQyxDQUFDOzs7WUFsQkQsU0FBUyxTQUFDO2dCQUNWLFFBQVEsRUFBRSx1QkFBdUI7Z0JBQ2pDLFFBQVEsRUFBRSxFQUFFO2FBQ1oiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQge1xuXHRDb21wb25lbnQsXG5cdEFmdGVyVmlld0luaXRcbn0gZnJvbSBcIkBhbmd1bGFyL2NvcmVcIjtcblxuaW1wb3J0IHsgQmFzZUNoYXJ0IH0gZnJvbSBcIi4vYmFzZS1jaGFydC5jb21wb25lbnRcIjtcblxuaW1wb3J0IHsgU3RhY2tlZEJhckNoYXJ0IH0gZnJvbSBcIkBjYXJib24vY2hhcnRzXCI7XG5cbi8qKlxuICogV3JhcHBlciBhcm91bmQgYFN0YWNrZWRCYXJDaGFydGAgaW4gY2FyYm9uIGNoYXJ0cyBsaWJyYXJ5XG4gKlxuICogTW9zdCBmdW5jdGlvbnMganVzdCBjYWxsIHRoZWlyIGVxdWl2YWxlbnQgZnJvbSB0aGUgY2hhcnQgbGlicmFyeS5cbiAqL1xuQENvbXBvbmVudCh7XG5cdHNlbGVjdG9yOiBcImlibS1zdGFja2VkLWJhci1jaGFydFwiLFxuXHR0ZW1wbGF0ZTogYGBcbn0pXG5leHBvcnQgY2xhc3MgU3RhY2tlZEJhckNoYXJ0Q29tcG9uZW50IGV4dGVuZHMgQmFzZUNoYXJ0IGltcGxlbWVudHMgQWZ0ZXJWaWV3SW5pdCB7XG5cdC8qKlxuXHQgKiBSdW5zIGFmdGVyIHZpZXcgaW5pdCB0byBjcmVhdGUgYSBjaGFydCwgYXR0YWNoIGl0IHRvIGBlbGVtZW50UmVmYCBhbmQgZHJhdyBpdC5cblx0ICovXG5cdG5nQWZ0ZXJWaWV3SW5pdCgpIHtcblx0XHR0aGlzLmNoYXJ0ID0gbmV3IFN0YWNrZWRCYXJDaGFydChcblx0XHRcdHRoaXMuZWxlbWVudFJlZi5uYXRpdmVFbGVtZW50LFxuXHRcdFx0e1xuXHRcdFx0XHRkYXRhOiB0aGlzLmRhdGEsXG5cdFx0XHRcdG9wdGlvbnM6IHRoaXMub3B0aW9uc1xuXHRcdFx0fVxuXHRcdCk7XG5cblx0XHRPYmplY3QuYXNzaWduKHRoaXMsIHRoaXMuY2hhcnQpO1xuXHR9XG59XG4iXX0=
|