I am using nvd3 with angular directives to plot some data. It used to work fine, however now I noticed that the plot disappeared, or rather reduced to a very thin line. The data is coming in and the plot is being displayed but it is barely visible.…
I would like to create strings such as "Monday, Tuesday, Wednesday" etc for my x-axis in my nvd3 line chart below. How would I make the x-axis have a string/label instead of being numeric, in the below code:
$scope.options2 = {
chart: {
…
I am using the combination of Angular material and NVD3 while investigating why tooltips are not visible for me.
I have chopped and cloned the example provided from http://krispo.github.io/angular-nvd3/#/quickstart to plunker and it is something…
I'm trying to get a box plot going where my Y axis is going to be Dates. I have tried to strip down to the bare minimum and I only see "No Data Available".
Here is the plunker
$scope.data = [{
label: "Sample A",
…
Working original Plunkr: http://plnkr.co/edit/nHSMF2?p=preview
My forked Plunkr: http://plnkr.co/edit/4Ecqif?p=preview
I'm playing with the Angular-nvd3 charting lib. Here is their original multiChart example with several line and area graphs. I…
In the ios emulator for ionic I can see the various stackedAreaCharts using angular-nvd3 directives I am drawing. I get the following error only in the emulator, but not when I run the app using ionic serve on localhost.
Error: undefined is not an…
I am trying to get a responsive nvd3 chart inside of an angular material grid.
It seems to be working ok after I resize the window but does not go to the correct size at the initial load.
My approach was to wrap the nvd3 directive inside of a…
usage - Angular NVD3
LineChart
I am getting milliseconds, converting them to ('%H:%M') format to display on x-axis.
xAxis: {
tickFormat: function(d) {
return d3.time.format('%H:%M')(new Date(d));
},
The above works…
Why is it that when there are only a few values in an NVD3 scatterplot, the tick spacing spreads out immensely? I would think the ticks should be independent of the number of values, but that doesn't seem to be the case.
Compare this plunker with…
I'm using Angular-nvD3. I have a simple chart that looks like this:
HTML:
JS:
$scope.options = {
chart: {
type: 'pieChart',
height: 450,
x: function (d) {…
I am looking for the best way to set nvd3 chart x domain to represent given period of time in real time line chart - for example last hour.
In other words - I am adding new data (y is numeric value, x is timestamp) every second and I want x axis to…
I am newbie to Restangular and using angular-nvd3 charts api.
I have RestService which is returning Json response in below format.
3 Different line will be plotted on single graphs.
Key - Name like A, B , C
Values - milliseconds, order/sec
x-axis -…
I want to create a chart with both points and lines, as in the image below.
I have tried multichart with type: 'line' + 'barchart', and it seems to work.
But when I specify 'scatter' + 'line' no scatter data shows up.
Is it possible to do this…
I'm trying to use linePlusBarWithFocusChart (angular-nvd3) in my application but i faced with the following problem - I cannot set initial range in the bottom chart (for example, i need to display values for a specific year in the upper chart and…
By default scale of x axis is calculated from values. This gives uneven distance between two adjasted points. Like for example if I have an array of values like [1,2,5], there will be different distance on x axis for point, and also x axis labels…