None
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Go to file
Tyler Wolf c0db335539 Merge branch 'development' of https://github.com/novus/nvd3 into development
Conflicts:
	nv.d3.min.js
11 years ago
deprecated Merge branch 'development' of https://github.com/novus/nvd3 into development 11 years ago
examples Bumping to version 1.1.7b, due to removal of with-3d-shadow from tooltips. 11 years ago
lib added colorbrewer.js to lib 11 years ago
src Merge branch 'development' of https://github.com/novus/nvd3 into development 11 years ago
test Fixing issue #219. Moving the jitter logic to after the scatter point's scale 11 years ago
.gitignore add grunt, see more in README.md about how to use intstall and use grunt 11 years ago
.jshintrc add grunt, see more in README.md about how to use intstall and use grunt 11 years ago
GruntFile.js add grunt, see more in README.md about how to use intstall and use grunt 11 years ago
LICENSE.md Changing License to Apache v2 12 years ago
Makefile Merge branch 'understandable-error-messages-from-uglifyjs' of https://github.com/motin/nvd3 into development 11 years ago
README.md Making default transitionDuration=250 for multibar. Rebuilding nv.d3.js 11 years ago
build.bat Getting stuff ready to be cleaned, moving stuff that will be deleted into the deprecated folder 12 years ago
nv.d3.js Merge branch 'development' of https://github.com/novus/nvd3 into development 11 years ago
nv.d3.min.js Merge branch 'development' of https://github.com/novus/nvd3 into development 11 years ago
package.json add grunt, see more in README.md about how to use intstall and use grunt 11 years ago

README.md

Please see Novus' official statement on nvd3 with an explanation, apology, and commitment to its permanent status as an open-source project. http://nvd3.org/statement.html

nvd3 - v1.1.x-beta

Release notes for version 1.1 beta

  • Line charts now have a new tooltip option available. This new tooltip displays all series information at once, and shows up anywhere your mouse moves. To enable, set useInteractiveGuideline to true. See examples in the test/ directory for how this tooltip works.
  • New test pages have been created for various kinds of charts. They live in the test/ directory. The goal of these test pages is to aid in regression testing coverage when changes are made to charts.
  • Pie charts accept data in a different way, and if you update to version 1.1, your pie charts will likely break. See the pie chart examples for how data should be properly passed in. It's a very simple change.
  • Pie charts can now accept a 'labelType' property.
  • Tooltip transitions are turned off by default, if you update to the latest nv.d3.css. To bring them back, add a 'with-transitions' CSS class to the containing chart DIV.
  • Stacked area charts have transitions again. Duration is controlled via a 'transitionDuration' property.
  • Line, cumulative, scatter, multi bar and discrete bar charts also have the 'transitionDuration' property.
  • Issue #127: Adding ability to override individual scatter plot point colors.
  • Issue #216: Exposing xRange and yRange overrides for all charts.
  • Issue #168: Adding legend.radioButtonMode(). When set to true, legend click behavior will match those of radio buttons.

Overview

A reusable chart library for d3.js.

NVD3 may change from its current state, but will always try to follow the style of d3.js.

You can also check out the examples page


Current development focus

  • Error bars in bar charts
  • Unifying common API functions between charts
  • Bug fixes all around

Installation Instructions

d3.v3.js is a dependency of nv.d3.js. Be sure to include in in your project, then:
Add a script tag to include nv.d3.js OR nv.d3.min.js in your project.
Also add a link to the nv.d3.css file.

See wiki -> Documentation for more detail


If one of the existing models doesn't meet your needs, fork the project, implement the model and an example using it, send us a pull request, for consideration for inclusion in the project.

We cannot honor all pull requests, but we will review all of them.

Please do not aggregate pull requests. Aggregated pull requests are actually more difficult to review.

We are currently changing our branch structure so that master will be gauranteed stable. In addition, there is now a "development" branch. This branch reflects the latest changes to nvd3 and is not necessarily stable.


Minifying your fork:

The Makefile requires UglifyJS.

The easiest way to install is to install via npm. Run npm install uglify-js from your home directory, then add the output from npm bin into your path so that you have access to uglifyjs from the command line (remember to restart your terminal window when adding to the path.)

Once you have uglifyjs command available, running make from your fork's root directory will rebuild both nv.d3.js and nv.d3.min.js.

Without UglifyJS, you won't get the minified version when running make.

use grunt

You can use grunt insteadof makefile to build js file. See more about grunt. Nodejs must be installed before you can use grunt. Run npm install in root dir to install grunt and it's dependencies.

Then, you can use these commands:

grunt # build nv.d3.js
grunt production # build nv.d3.js and nv.d3.min.js
grunt watch # watch file changes in src/, and rebuild nv.d3.js, it's very helpful when delevop nvd3
grunt lint # run jshint on src/**/*.js

**We ask that you DO NOT minify pull requests... If you need to minify please build pull request in separate branch, and merge and minify in your master.

Supported Browsers

  • Chrome latest version (preferred)
  • Firefox latest version
  • Safari latest version
  • Internet Explorer 9 and 10
  • (unofficially) Opera 15+.