Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-06 Thread Marco Bernasocchi
Just speculating, have you tried instead of using a custom qgs widget to promote a QWidget to one of the custom widget? I used this in the past for using my own widgets in my plugins. An example here [1] Ciao [1] http://bit.ly/2dOuDcs On 6 October 2016 15:26:33 CEST, C Hamilton wrote: >> >

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-06 Thread C Hamilton
> > > One other thing for windows in the file PlotDialog.ui where it has the > > following: > > > > > > > >QgsColorButtonV2 > >QToolButton > >qgscolorbuttonv2.h > >1 > > > > . . . > > > > Every time you see ...h it needs to be changed to > > qgis.gui > > > first time I hear

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-04 Thread matteo
Calvin, > This is on a windows 7 laptop using the OSGeo4W 64-bit network installer. I > currently am using the latest QGIS 2.16.3 64-bit. From the OSGeo4W Setup I > installed python-pip. From the shell I then did 'pip install plotly'. > During the install I got errors and doing a Google search it

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-03 Thread C Hamilton
This is on a windows 7 laptop using the OSGeo4W 64-bit network installer. I currently am using the latest QGIS 2.16.3 64-bit. From the OSGeo4W Setup I installed python-pip. From the shell I then did 'pip install plotly'. During the install I got errors and doing a Google search it appears that I ne

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-03 Thread Paolo Cavallini
Hi, Il 01/10/2016 21:11, C Hamilton ha scritto: > Paolo, > > I would be interested in helping out their efforts because it matches > some of the analysis needs that I am trying to solve. Based on my > concerns can you tell me whether we can use plotly or do we need to use > a different D3 library

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-03 Thread matteo
Hi Gino, thanks for the answer.. > 1 and 2 are not hard to obtain yep I'm aware that it is not hard (it is for me ;) but this is another issue) > 3 depend on what would be the canvas integration, a graph as html > annotation? would it be a canvas Item? I don't know I was just thinking about th

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-03 Thread Luigi Pirelli
hi matteo, 1 and 2 are not hard to obtain 3 depend on what would be the canvas integration, a graph as html annotation? would it be a canvas Item? Luigi Pirelli ** * Boundless QGIS Support/Development:

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-03 Thread matteo
Hi Calvin, I had some time to deepen in the list of D3 libraries you have listen: >1. *d3pie* (http://d3pie.org/) - This is a very attractive pie chart and >I like it, but it has only 7 contributors on GitHub and seems to be >stagnant. if I understand it well, this allows just the p

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-03 Thread matteo
Calvin, that's pretty strange.. Obviously it is super alpha version, but it works for me.. which OS do you have? Did you install plotly package via pip? Thanks for the feedbacks Matteo ___ Qgis-developer mailing list Qgis-developer@lists.osgeo.org Lis

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-01 Thread Alessandro Pasotti
Calvin, Did you consider that if the library is pure Python (no binaries) and there are no licensing issues, it can be easily packaged and shipped within the plugin? This approach is currently used by many plugins (GeoServer explorer is one of those). Il 01/ott/2016 21:11, "C Hamilton" ha scrit

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-01 Thread C Hamilton
Paolo, Sorry for a repeat but I forgot to do a reply all to include qgis-developer. I have no problem installing plotly. For me it is straight forward. My concern is will QGIS then be shipped with plotly or can plotly be combined with the plugin itself. My concern is for the end user. For many in

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-01 Thread C Hamilton
Matteo, I did try it, but the plots do not display for me in the webview. From the logs I was able to see where it was saving the file and was able to display it in the web browser. Thanks On Fri, Sep 30, 2016 at 6:04 PM, Matteo Ghetta wrote: > Hi Calvin, > > well thanks to the complete refact

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-10-01 Thread Paolo Cavallini
Hi, Il 30/09/2016 20:58, C Hamilton ha scritto: > My main concern is it is dependent upon a python library that is not a > part of the QGIS distribution. In principle this is not a big issue: packages can be added to osgeo4w (I assume you're talking about Windows, because in Linux installing it

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-09-30 Thread Thomas Gratier
Hi, Did you ever try Vega https://vega.github.io/vega/? As stated, "With Vega, you can describe the visual appearance and interactive behavior of a visualization in a JSON format, and generate views using HTML5 Canvas or SVG." You can see a sandbox to try it http://vega.github.io/vega-editor/?mod

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-09-30 Thread Matteo Ghetta
Hi Calvin, well thanks to the complete refactoring code made by Micheal and Etienne the ui is completely changed. Just clone the last version of the repository and try it. No more external tmp file. The plots are directly shown inside a webview. Moreover the plot is interactive with the map cava

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-09-30 Thread C Hamilton
Matteo, I was able to sort of get it running. It does not appear to be able to display in the QGIS window. I am not sure if it was suppose to or not, but I saw where it was saving the temporary file and was able to view it in a web browser. I had to make some small changes to the one .ui file to m

Re: [Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-09-30 Thread Luigi Pirelli
Hi Calvin give a look also to: https://dc-js.github.io/dc.js/ Luigi Pirelli ** * Boundless QGIS Support/Development: lpirelli AT boundlessgeo DOT com * LinkedIn: https://www.linkedin.com/in/luigipirell

[Qgis-developer] QGIS D3 DataVis Plugin Status Report

2016-09-30 Thread C Hamilton
I thought I would share my recent accomplishments and my planned development activities on the d3datavis plugin. The overall goal is to produce a number of different charts for QGIS data analysis that can be displayed in a web page. So far I have one visualization and that is the D3 Circular Date/T