Nvd3

A reusable chart library for d3.js

NVD3 Documentation

This page lists out all options available to the charts and is generated programatically using the new options object model. All options can be called as functions on the chart object to get the option vaue (if no argument given) or to set the value. Alternatively, you can use the options() method on the chart object and pass in a dictionary of the option names and values to set them all at once.

Example:
            var chart = nv.models.pieChart();
            chart.width(500);
            chart.title('stuff').titleOffset(-10);
            chart.options({height: 500, donut: true});
        

Shortcuts to Charts and Chart Parts

[ toggle all ]