1.1.3 • Published 2 months ago

@byu-oit/line-chart v1.1.3

Weekly downloads
43
License
Apache-2.0
Repository
github
Last release
2 months ago

line-chart

Generate a line chart in svg format to be used as an API response.

example output

Single Value

svg output svg output

Muliple Values

svg output svg output

Custom colors with optional legend

svg output svg output

usage

import lineChart from '@byu-oit/line-chart'

const myData = [10, 12, 14, 24, 38]
const myDataLabels = ['A', 'B', 'C', 'D', 'E']
const chartSvg = lineChart({data: myData, labels: myDataLabels})

parameter definition

The line chart function takes a single configuration parameter.

keytyperequired?description
dataArray of Numbers, or 2 Dimensional Array of NumbersrequiredAn array of values to chart. For example, if you want to chart visits per day, your data could be [104, 78, 120, 88] with labels of ['May 13', 'May 14', 'May 15', 'May 16']. The values may themselves be arrays, but must all have the same length.
labelsArray of StringsrequiredAn array of string labels corresponding by index to the associated data element.
legendLabelsstring labelsoptionalAn array of labels for the line colors. For example, you could chart visits per day, with each browser in a different color.
colorsArray of StringsoptionalSupply custom colors for the lines.
1.1.3

2 months ago

1.1.2

3 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.0

5 years ago