I want to make the transition/animation effect when selecting/unselecting items longer, I'm trying to set the duration parameter of nvd3 pie chart to be something long like 10 seconds (or 10000 ms) but it has no effect on the pie chart,
I tried…
I am currently working with NVD3 using Angular Directive (angular-nvd3). I have a very simple line chart with very simple data.
Everything is working fine, at the beginning.
However if you decide to turn off (disable) one set of data the error…
I'm using the Angular-NVD3 library to show some line charts, I've seen that I can set an "area" property to 'true' in the data so that the area of the graph will be colored.
{
values: [/** some data **/],
key: 'Cosine Wave',
color:…
I'm using angular-nvd3 directive for making a custom line chart display counting number of guest in specific period time range as follow :
current Time - 2 --> current Time : will be display as straight line
current Time --> current Time + 2 :…
I believe I have a problem that may be fairly easily addressed via something that I am missing, but I can't seem to see what the actual issue is. I have an application that returns 5000 points (5 array elements of 1000 x,y points) every second that…
I have an app that creates discrete bar charts. For some odd reason (which seems to be an internal error in the library), the y-axis scales to a data value which has the LOWEST number of integers in the value. For example, one data set has (1750,…
I have been trying to define a function in scope and trigger it when button is clicked in the tooltip. Here is the code that I have been working on in plnkr Clickable tooltips. I have modified plnkr code in the link as…
I'm working on an AngularJS 1.5.3 project , and I use Angular-nvd3(1.0.7). I have met 2 problems:
1,When I'm using a discreteBarChart , I need to assign different color to every column,like this:(seems the picture can't display , you can imaging it…
How to add margin to legends for nvd3 charts. I'm following https://github.com/krispo/angular-nvd3/blob/gh-pages/js/lineChart.js they have given events for legends but not shown any example related to legend margins. I have tried like
chart: {
…
I have a scenario where i need to show top 5 values for each date (each date data may differ).
Issue scenario : For date 10th sep i have got response (top 5 -> Samsung Electronics, Lg, Apple, Amazon, Murata) now for the next day i.e 11th sep i have…
I am using ng2-nvd3 to plot a scatter. I fetch the data and create the data object in the good format. Then I create the option to display the chart.
The points are properly displayed but I have big black circle instead of having normal circle. See…
I have a graph who can have one set of data or multiples set of data. I need to check every stateChange and triggered the callback (he make actions that I need to make at every changes).
here is my graph :
scope.options = {
chart: {
…
I have a filter which filters data for an NVD3 bubble chart.
When no data or some data is filtered, the chart works perfectly well.
However, when I filter all of the data out of the chart, the chart totally disappears. When this happens, even…
I found some zoom functions for angular 1.x nvd3 chart. but I don't really know how to access them via the options in angular 2 nvd3 chart?
Based on the nvd3 website there's a zooming functionality – chart: { zoom: {} }, I've placed it in my ng2…
Is there a way to add legends to a sunburst NVD3 chart? I'm doing this and it's currently not working.
chart = nv.models.sunburstChart()
.showTooltipPercent(true)
.color(d3.scale.category20c())
.showLabels(false)
…