# Area Chart

An area chart has a similar styling with line chart, but with gradient coloring on the area below the lines.

# Importing

For code splitting optimizations, Charts are exported separately and must be imported as shown here:

import { CiAreaChart } from '@ci/stratus-components/build/charts'

# Basic Usage

To use this component different importing approach needs to be used. Please see this page for more information.

# Multiple data points

Supply more datasets object to generate more visual data points:

# Custom colors

To have each dataset have unique color we can use util called ColorFactory by passing colorSet of colors inside constructor and using it inside our format function, that adds color to datasets.

# Supplying custom options

Chart options can be passed into the :options prop and will be merged with the default options. See the options object documentation (opens new window) for a complete list of configurable options. Here is an example of configuring the tooltip's text with ChartJsHelpers that is available in the Utils module:

# Loading State

Pass a boolean into the loading prop to add a loading state to the component. The boolean hides chart datasets.data. This can be useful if you need to fetch data asynchronously

# No data text

To change text that is displayed when dataset is empty use prop noDataText by default it is set to No data to display.

Last Updated: 6/3/2024, 9:04:35 AM