I am trying to create a line charts which covers points of {x: someX, y: someY}. But, it's not covering all of my points, and maxes out when y is 783.
Here is a picture of what's going on:
The airlines on the bottom should have the line covering…
Am using angular2 nvd3 charts. I have an issue with scaling on y-axis. I have y values like 623.10, 631.60, 629.10, 633.50, 631.80, 623.40 etc.,
and in options am doing something like
yAxis: {
tickFormat: function(d) {
return…
Is it possible to apply gradient color to area(filled-line) charts in nvd3.
I have seen a workaround in d3 charts, using the svg object.
But is there a simpler way to do this, or any hack to get the same done?
I am trying to choose the best technology for plotting a rich graph which should contain a mix with few charts types like Line Chart, Scatter Chart, Bar Chart, Candlestick and other inside one canvas.
Currently I'm looking at Angular 2 NVD3 labrary…
I am trying to use my own data in a nvD3 stacked area chart. The sample data format from the Angular nvD3 site has a format like this:
[{
"key":"Series 1",
"values":[[1025409600000,0],[1028088000000,-6.3382185140371]]
},
{
…
I need to implement guage chart and I am using NVD3 for that.
https://github.com/enplore/nvd3-charts
I tried to import js files mentioned in above link
but getting the following error,
GET http://[ip]/nodejs/bower_components/nvd3/build/gaugeChart.js…
Hi everyone I have a pie chart made with nvd3 and when graph.data=[] it doenst show anything.. I want to display a simple message like "No data to show"
View:
…
I have a line chart with a margin between the lowest and highest price and the chart borders. I don't want the ticks touching the top and the bottom of the chart, so I used forceY to achieve…
I have a nvd3 angular candlestick chart that displays hardcoded data just fine. But when I point it another data source (socket.io), it doesn't display anymore.
I get my data from a socket here
$scope.getdata = function () {
…
I am using angular-nvd3 to draw charts.
Is there an option do draw bar chart with an x-axis like this?
***
*** ***
*** *** ***
*** *** *** ***
*** *** *** ***
| *** | *** | *** …
No matter how much I change the margin. The dates get cut off. I am trying to show a 7 date range, but the last date gets cut off. Any ideas, to work around this?
My code:
vm.lineChartOptions = {
chart: {
type: 'lineChart',
…
Currently I am using angular-nvd3 graphing to display data. However, the stacked area chart nvd3 graph type is cutting off the numbers and axis labels. The template graph can be viewed here. The y-axis numbers and label is the main concern. Below is…
I'm working with NVD3 charts with angular2 following this link. I'm getting line chart fine. In line chart on mouse over tooltip gets shown on Yaxis 3 points.
YAxis have Line lines so three points we need a display on somewhere in the page.We tried…
I want to change the "Events" key shape from circle to square but rather do so via angular-nvd3 or nvd3 api instead of selecting using d3 and changing it after the chart renders..
so far couldn't find how to do it
I am showing custom tooltip with percent values in Angular NVD3 pie chart. plunker link
`https://plnkr.co/edit/Tv544U?p=preview`
tooltip shows correct values in percent. But if I deselect any legend, chart is redrawn excluding that item. I…