Line Charts - Soft UI

Our Vue Line Chart examples are perfect to show trends and perform comparative analysis. See below:


Default Line Chart

Use the following example to create a simple and versatile line chart for your website.

Props Information

Name Type Default Description
id string chart-line Used to set an id for the chart.
chart* object Used 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.

Gradient Line Chart

Pro

Use the following example to create eye-catching line charts for your website.

Props Information

Name Type Default Description
id* string Used to set an id for the chart. It is a required prop.
title string Used to set a title for the chart.
description string Used to set a description for the chart.
height string 300 Used to set a height for the chart.
chart* object Used 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.