d3plus

I am trying to inject a partial template in Angular that contains a graph

早过忘川 提交于 2019-12-25 08:26:23
问题 I am creating an Angular application in ASP.NET with partial templates. When I select the menu, and click "Employees", a controller calls a webservice and returns the correct JSON data, and I store it in $scope.message . I've displayed $scope.message on the screen, and everything works. However, I want to feed $scope.message as data source to a D3plus boxplot graph stored in a partial template called employees.html . It does not seem to be working. Perhaps I am making an obvious mistake and

I am trying yo make D3plus accept non-date value for boxplot and reduce space between rows in bootstrap

穿精又带淫゛_ 提交于 2019-12-12 03:47:32
问题 I have a SQL database, and I am building a webform/webservice to extract data using ASP.NET and visualizing with using D3plus. Moreover, I am using bootstrap to structure my webform. I am trying to have two rows, and would like less white space between them. Additionally, the boxplot doesn't work if I am using values other than year (i.e. string building names. I am sure that I only need a small tweak, but can't figure it out. I am currently working on the webservice and would greatly

D3plus boxplots don't appear when I use Angular's directive angular-d3plus

馋奶兔 提交于 2019-12-12 02:39:30
问题 This post is a follow up of: I am trying to inject a partial template in Angular that contains a graph Essentially, I have an Angular app, and I am trying to inject a partial template called "employees.html" when I click "employee" on a dropdown menu. Thanks to previous answers, I can call a d3plus boxplot with an Angualr controller (angular-d3plus.js: https://github.com/mariohmol/angular-d3plus) . I am using the box demo: http://codepen.io/mariomol/pen/vGNQaV just to make it first work.

How can I pass a path to open.window() onclick event in d3plus / javascript?

╄→гoц情女王★ 提交于 2019-12-12 01:44:43
问题 I am trying to build a small application via d3plus.js. The aim is to use network visualisation to show a series of nodes representing pdf files. When the node is clicked a window showing the pdf should occur. I figured out how to use the window.open() function and it works if I write the path directly into the window.open() function (fx "docs/somepdf.pdf"). My problem is now to pass the path string from the sample_data to the window.open function. Can anyone pleas tell me what I am doing