Top "Nvd3.js" questions

NVD3.

d3.js & nvd3.js -- How to set y-axis range

I'm trying to set the y-axis range of the chart from 1-100. Consulted the API documentation and found a possible …

javascript d3.js nvd3.js
NVD3, Clear svg before loading new chart

I have several different NVD3 charts that I call upon in the same svg. I use buttons to call functions, …

d3.js charts nvd3.js
How do I display dates on the x-axis for nvd3 / d3.js?

I'm using nvd3, but I think this is a general d3.js question about time scale and formatting. I've created …

d3.js nvd3.js
D3js: When to use .datum() and .data()?

I often see .datum when an area chart is used. For example: svg = d3.select("#viz").append("svg").datum(data) …

d3.js nvd3.js
Calling angularjs scope function from href

I am using a library which appends a href element onto an tag. On this link I need to make …

javascript angularjs href nvd3.js
nvd3 piechart.js - How to edit the tooltip?

I'm using nvd3's piechart.js component to generate a piechart on my site. The provided .js file includes several …

javascript tooltip d3.js pie-chart nvd3.js
How do I change the legend position in a NVD3 chart?

Does anyone know how to reposition the legend in a NVD3 chart relative to the graph itself? It is on …

charts d3.js legend nvd3.js
how to set height and width of nvd3 chart

I'm trying to set the width and height of a nvd3 multi bar chart programmatically using chart.width(600); chart.height(400); …

nvd3.js
How to customize color in pie chart of NVD3

I am trying to use NVD3 http://nvd3.org/livecode/#codemirrorNav a pie chart. But i want to change the …

javascript d3.js nvd3.js
How to add a click event on nvd3.js graph

I am using nvd3.js and trying to add a click event d3.selectAll(".nv-bar").on('click', function () {console.log("…

events d3.js nvd3.js