# Bar Chart
A bar chart provides a way of showing data values represented as vertical bars.
# Importing
For code splitting optimizations, Charts are exported separately and must be imported as shown here:
import { CiBarChart } from '@ci/stratus-components/build/charts'
# Basic Usage
Data to chart can be passed throught data
prop and any additional options can be passed by options
prop. All options will be merged with basic options from bar chart. See Chart.js docs (opens new window) for more information about how to use bar charts.
# Stacked chart
Multiple datasets can be stacked by passing custom options in options
prop.
# 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.
# 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
.