Stacked Column Chart

The Ignite UI for Web Components stacked column chart belongs to a group of category charts and is rendered using a collection of rectangles (IgcStackedFragmentSeriesComponent) that are stacked on top of 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 y-axis, and all negative values are grouped on the negative side of the y-axis. IgcStackedColumnSeriesComponent uses the same concepts of data plotting as IgcStackedBarSeriesComponent but data points are stacked along vertical line (y-axis) rather than along horizontal line (x-axis). In other words, the stacked column chart is rendered like the stacked bar chart but with 90 degrees counter-clockwise rotation.

Demo

The IgcStackedColumnSeriesComponent has its own IgcSeriesComponent collection in which you can place the IgcStackedFragmentSeriesComponent elements. These fragments are what make up the actual rendering of the chart and are the elements that accept the valueMemberPath.

Required Axes

The Web Components data chart component provides various types of axes but only the following types of axes can be used with IgcStackedColumnSeriesComponent.

Required Data

The IgcStackedColumnSeriesComponent has the following data requirements:

Required Modules

Creation of the IgcStackedColumnSeriesComponent requires the following modules:

import { IgcDataChartComponent } from 'igniteui-webcomponents-charts';
import { IgcDataChartCoreModule } from 'igniteui-webcomponents-charts';
import { IgcDataChartCategoryModule } from 'igniteui-webcomponents-charts';
import { IgcDataChartStackedModule } from 'igniteui-webcomponents-charts';
import { IgcStackedFragmentSeriesModule } from 'igniteui-webcomponents-charts';
import { ModuleManager } from 'igniteui-webcomponents-core';

ModuleManager.register(
    IgcDataChartCoreModule,
    IgcDataChartCategoryModule,
    IgcDataChartStackedModule,
    IgcStackedFragmentSeriesModule,
);

This code demonstrates how to create an instance of the Ignite UI for Web Components data chart with IgcStackedColumnSeriesComponent and bind it to a data source.

<igc-data-chart id="chart" width="100%" height="100%">
    <igc-category-x-axis name="xAxis" label="Country">
    </igc-category-x-axis>
    <igc-numeric-y-axis name="yAxis" minimum-value="0">
    </igc-numeric-y-axis>
    <igc-stacked-column-series name="series" x-axis-name="xAxis" y-axis-name="yAxis">
        <igc-stacked-fragment-series name="coal" value-member-path="Coal" title="Coal"></igc-stacked-fragment-series>
        <igc-stacked-fragment-series name="hydro" value-member-path="Hydro" title="Hydro"></igc-stacked-fragment-series>
        <igc-stacked-fragment-series name="nuclear" value-member-path="Nuclear" title="Nuclear"></igc-stacked-fragment-series>
        <igc-stacked-fragment-series name="gas" value-member-path="Gas" title="Gas"></igc-stacked-fragment-series>
        <igc-stacked-fragment-series name="oil" value-member-path="Oil" title="Oil"></igc-stacked-fragment-series>
    </igc-stacked-column-series>
</igc-data-chart>