Line Chart

Line charts connect a series of data points using a line, and are commonly used to show data trends over time.

Status

PublishedElement can be used in production
PublishedElement can be used in production
Angular
Angular
In backlogElement is in backlog
React
React
In backlogElement is in backlog
Documentation
PublishedElement can be used in production

Contents

Anatomy

Line charts are comprised of the following eight elements:

  1. Header: includes the chart’s title and optional subtitle. Subtitles are used to provide additional context if it’s necessary to do so.
  2. Y-axis information: includes a label and values. The label represents how data is measured, while its values are the incremental measurements, or scale, for plotted data.
  3. X-axis information: includes a label and values. The label is the categorical reference over which data is measured, while its values are the intervals in which those measurements occur. Commonly, the x-axis represents time.
  4. Legend: uses markers and labels to define their respective series, represented by lines, within the chart.
  5. Data point: shown visually using the point element, and represents a single piece of data on a line.
  6. Line: lines connect a series of data points.
  7. Plot area: shown as a grid within the line chart, where data is displayed.
  8. Container: houses the chart and all accompanying elements including the legend. The container aligns to grid to determine the chart’s size within in.

Contents