Skip to content
This repository has been archived by the owner on Nov 15, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
33 lines (30 loc) · 1.19 KB

README.md

File metadata and controls

executable file
·
33 lines (30 loc) · 1.19 KB

angular-areaspline Build Status

Simple areaspline chart directive. Uses d3's area chart.

Usage

Markup

As an element:

<areaspline
	data="{string}"
	width="{float}"
	height="{float}"
	transition="{bool}">
</areaspline>

As an attribute:

<div
	areaspline
	data="{string}"
	width="{float}"
	height="{float}"
	transition="{bool}">
</div>

Parameters

Param Type Required Default Details
data string yes none Angular expression from which to get the data. Expects an array of numbers, e.g. [ 1, 2, 3, ...]
transition bool no false If true, an animated transition will be performed when the chart's data is updated.
width float no 'auto' Gets passed directly to the SVG for sizing purposes. If not given, the width will resize when the window is resized or a 'resizeAreaSpline' event is fired.
height float no 'auto' Gets passed directly to the SVG for sizing purposes. If not given, the height will resize when the window is resized or a 'resizeAreaSpline' event is fired.