/angularjs-nvd3-directives

Angular.js directives for nvd3.js

Primary LanguageJavaScriptApache License 2.0Apache-2.0

##Angular.js Directives for nvd3.js, d3.js charts

=========================

Build Status Dependencies Status devDependency Status Coverage Status Bitdeli Badge

Line Charts

<nvd3-line-chart
    data="exampleData"
    width="600"
    height="350"
    showXAxis="true"
    showYAxis="true"
    xAxisTickFormat="xAxisTickFormat_Date_Format()"
    yAxisTickFormat="yAxisFormatFunction()">
</nvd3-line-chart>

Stacked Area Charts

<nvd3-stacked-area-chart
    data="exampleData"
    width="600"
    height="350"
    showXAxis="true"
    showYAxis="true"
    xAxisTickFormat="xAxisTickFormat()">
</nvd3-stacked-area-chart>

More Examples