Stacked Bar Chart
The Ignite UI for Angular stacked bar chart belongs to a group of category charts and is rendered using a collection of rectangles (IgxStackedFragmentSeriesComponent) that are stacked next to each other. Each stacked fragment in the collection represents one visual element in each stack. Each stack can contain both positive and negative values. All positive values are grouped on the positive side of the x-axis, and all negative values are grouped on the negative side of the x-axis. IgxStackedBarSeriesComponent uses the same concepts of data plotting as IgxStackedColumnSeriesComponent but data points are stacked along horizontal line (x-axis) rather than along vertical line (y-axis). In other words, the stacked bar chart is rendered like the stacked column chart but with 90 degrees clockwise rotation.
Demo
The IgxStackedBarSeriesComponent has its own IgxSeriesComponent collection in which you can place the IgxStackedFragmentSeriesComponent elements. These fragments are what make up the actual rendering of the chart and are the elements that accept the valueMemberPath.
Required Axes
The Angular data chart component provides various types of axes but only the following types of axes can be used with IgxStackedBarSeriesComponent.
Required Data
The IgxStackedBarSeriesComponent has the following data requirements:
- The data source must be an array or a list of data items.
- The data source must contain at least one data item otherwise the chart will not render the
IgxStackedBarSeriesComponent. - All data items must contain at least one data column (string or date time) which should be mapped to the
Labelproperty of the category axis (e.g.IgxCategoryYAxisComponent). - All data items must contain at least one numeric data column which should be mapped using the
ValueMemberPathproperty of theIgxStackedFragmentSeriesComponentto be added to theIgxStackedBarSeriesComponent'IgxSeriesComponentcollection.
Required Modules
Creation of the IgxStackedBarSeriesComponent requires the following modules:
// axis' modules:
import { IgxNumericXAxis } from "igniteui-angular-charts/ES5/igx-numeric-x-axis";
import { IgxCategoryYAxis } from "igniteui-angular-charts/ES5/igx-category-y-axis";
// series' modules:
import { IgxStackedBarSeries } from "igniteui-angular-charts/ES5/igx-stacked-bar-series";
// data chart's modules:
import { IgxDataChartCoreModule } from "igniteui-angular-charts/ES5/igx-data-chart-core--module";
import { IgxDataChartCategoryModule } from "igniteui-angular-charts/ES5/igx-data-chart-category--module";
import { IgxDataChartStackedModule } from "igniteui-angular-charts/ES5/igx-data-chart-stacked-module";
@NgModule({
imports: [
// ...
IgxDataChartCoreModule,
IgxDataChartCategoryModule,
IgxDataChartStackedModule
// ...
]
})
Code Example - Stacked Bar Chart
This code demonstrates how to create an instance of the Ignite UI for Angular data chart with IgxStackedBarSeriesComponent and bind it to a data source.
<igx-data-chart #chart height="100%" width="100%" [dataSource]="data">
<igx-numeric-x-axis #xAxis></igx-numeric-x-axis>
<igx-category-y-axis #yAxis label="Country"></igx-category-y-axis>
<igx-stacked-bar-series [xAxis]="xAxis" [yAxis]="yAxis">
<igx-stacked-fragment-series valueMemberPath="Coal"></igx-stacked-fragment-series>
<igx-stacked-fragment-series valueMemberPath="Hydro"></igx-stacked-fragment-series>
<igx-stacked-fragment-series valueMemberPath="Nuclear"></igx-stacked-fragment-series>
<igx-stacked-fragment-series valueMemberPath="Gas"></igx-stacked-fragment-series>
<igx-stacked-fragment-series valueMemberPath="Oil"></igx-stacked-fragment-series>
</igx-stacked-bar-series>
</igx-data-chart>