# Line Chart

A line chart provides a way of showing data values represented as lines.

# Importing

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

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

# Basic Usage

Use the data prop to pass in your datasets and labels. See the chart.js docs (opens new window) for more information.

Use the options prop to pass options to your chart. These will be merged with the Line Chart's default options. See the chart.js docs (opens new window) 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