Example of Range Column in Angular Chart Component

This sample demonstrates the Range Column series, highlighting the maximum and minimum temperature changes in the Contiguous U.S. for the year 2024 over different months.

Contiguous U.S. Average Temperature in 2024Source: ncei.noaa.gov

In this example, you can see how to render and configure the range column chart. The range column chart is used to display a range of data by plotting two y-values per data point. The two y-values are used as the upper and lower bounds of a column.

Tooltip is enabled in this example. To see the tooltip in action, hover over a point or tap on a point in touch-enabled devices.

Injecting Module

Chart component features are segregated into individual feature-wise modules. To use RangeColumn feature, we need to inject RangeColumnSeriesService into the @NgModule.providers section.

More information about the range column series can be found in this documentation section.