Bar Chart - Material

The Bar Charts components helps you to simply create a beautiful bar chart for displaying the data.


Reports Bar Chart

Props Information

NameTypeDefaultDescription
idstringbar-chartUsed to set an id for the chart.
heightstring, number170Used to set a height for the chart.
chart*objectUsed to set the chart data. It should be an object that contains the `labels` and `datasets` keys.
  1. The `labels` should be an array.
  2. The `datasets` should be an object with the following keys:
    1. `label` of type string.
    2. `data` of type array.
It is a required prop.

Horizontal Bar Chart

Pro

Props Information

NameTypeDefaultDescription
idstringchart-barUsed to set an id for the chart.
heightstring, number3000Used to set a height for the chart.
chart*objectUsed to set the chart data. It should be an object that contains the `labels` and `datasets` keys.
  1. The `labels` should be an array.
  2. The `datasets` should be an object with the following keys:
    1. `label` of type string.
    2. `data` of type array.
It is a required prop.