Line Charts
The Line Charts components helps you to simply create a beautiful line chart for displaying the data.
The below codes are editable and you can modify them the way you want directly from your browser, please use the green button or the ctrl + s to save the changes.
Default Line Chart
// Material Dashboard 2 React Examples
import DefaultLineChart from "examples/Charts/LineCharts/DefaultLineChart";
Default Line Chart
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| icon | { color: ["primary", "secondary", "info", "success", "warning", "error", "light", "dark"], component: node } | { color: "info", component: "" } | Used to set an icon for the chart. | 
| title | string | "" | Used to set a title for the chart. | 
| description | nodestring | "" | Used to set a description for the chart. | 
| height | numberstring | 19.125rem | Used to set a heightfor the chart. | 
| chart* | object | Used to set the chart data. It should be an objectthat contains the `labels` and `datasets` keys and these keys should be anarray.
 | 
Gradient Line Chart
PRO
// Material Dashboard 2 PRO React Examples
import GradientLineChart from "examples/Charts/LineCharts/GradientLineChart";
Gradient Line Chart
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| icon | { color: ["primary", "secondary", "info", "success", "warning", "error", "light", "dark"], component: node } | { color: "info", component: "" } | Used to set an icon for the chart. | 
| title | string | "" | Used to set a title for the chart. | 
| description | nodestring | "" | Used to set a description for the chart. | 
| height | numberstring | 19.125rem | Used to set a heightfor the chart. | 
| chart* | object | Used to set the chart data. It should be an objectthat contains the `labels` and `datasets` keys and these keys should be anarray.
 | 
Progress Line Chart
PRO
// Material Dashboard 2 PRO React Examples
import ProgressLineChart from "examples/Charts/LineCharts/ProgressLineChart";
480
60%
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| colors | 'primary''secondary''info''success''warning''error''dark' | info | Used to set the chart color. | 
| icon* | node | Used to set the chart icon. Its a required prop. | |
| title* | string | Used to set the chart title. Its a required prop. | |
| count | numberstring | 0 | Used to set the total count of items under the title of the chart. | 
| progress* | number | Used to set the chart progress bar percentage value. | |
| height | numberstring | 6.25rem | Used to set a heightfor the chart. | 
| chart* | object | Used to set the chart data. It should be an objectthat contains the `labels` and `data` keys and these keys should be anarray. Its a required prop. | 
Reports Line Chart
// Material Dashboard 2 React Examples
import ReportsLineChart from "examples/Charts/LineCharts/ReportsLineChart";
Completed Tasks
Props Information
| Name | Type | Default | Description | 
|---|---|---|---|
| color | 'primary''secondary''info''success''warning''error''dark' | dark | Used to set the color of the chart. | 
| title* | string | Used to set the title of the chart. Its a required prop. | |
| description | nodestring | "" | Used to set a description for the chart. | 
| date* | string | "" | Used to set a date for the chart. | 
| chart* | object | Used to set the chart data. It should be an objectthat contains the `labels` and `datasets` keys.
 |