5.12 - 5.18:
--
You received this message because you are subscribed to the Google Groups "OpenWISP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openwisp+u...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/openwisp/c521c135-9bbf-42bf-907c-94d5e4f6cef2%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
5.12 - 5.18:
--
You received this message because you are subscribed to the Google Groups "OpenWISP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openwisp+u...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/openwisp/788682e5-853a-4d67-8502-9045d9d81099%40googlegroups.com.
5.26 - 6.1:fix issues:- fixed #67: https://github.com/KuTuGu/netjsongraph.js/commit/6153c3b667fdfa22fa6c4d1659bea848ae41df1a- fixed #68: https://github.com/KuTuGu/netjsongraph.js/commit/f2f3a42649cf16a638c1fad7bbb72376d48ea820- fixed #69: https://github.com/KuTuGu/netjsongraph.js/commit/eabf5e830216f1a94b1882ffe391e998120414c2some new examples:- [NetJSON dataParse Demo](https://kutugu.github.io/NetJSONDemo/examples/netjson-dateParse.html)
- [NetJSON updateData realtime Demo](https://kutugu.github.io/NetJSONDemo/examples/netjson-updateData.html)
- [NetJSON switch render mode Demo](https://kutugu.github.io/NetJSONDemo/examples/netjson-switchRenderMode.html)
- [NetJSON switch graph mode Demo](https://kutugu.github.io/NetJSONDemo/examples/netjson-switchGraphMode.html)
- [NetJSON search elements Demo](https://kutugu.github.io/NetJSONDemo/examples/netjson-searchElements.html)
> I do not understand what this does exactly. Where is the date shown?The date dom is just shown at the right down corner. I provide the `dateParse` function in `utils` to handle date string, which will return the parse result and you can handle it freely.
> I expect to see the details of the node or link when I click on them.This's a bug and I fixed.
> In this one the connection to the websocket is failingBecause you haven't open the port 8078. I have written in README that you must run `node index.js` under the `netjsonnode` folder to open it.
> The labels of nodes in the SVG mode are superimposed to the nodes, do you see that?Yeah, this seems a bug in Echarts, I'll try to improve it.
> I cannot see any node or link in map mode.I forgot adding css files haha.. Fixed !
> How to test this? ([NetJSON search elements Demo](https://kutugu.github.io/NetJSONDemo/examples/netjson-searchElements.html))I provide the `searchElements` function in `utils` to handle search operation. To use it, you should call this with the param of a API url firstly, and the return is a function that you can call it to search the JSON data when the user input something.In the demo, I open a fake server using postman. If you want to test, you can just input the `test` and click the `search` button. Certainly, it also support `go back`, just click the back button of browser.
6.2 - 6.8:Perfect graph:- add a new example of colorful nodes example: https://kutugu.github.io/NetJSONDemo/examples/netjsongraph-colorful.html
Specification code:- delete commented code:https://github.com/KuTuGu/netjsongraph.js/commit/68f06de67a6d59c808b4a54bf9a624b9e95a7e10- add new line at the end of files:https://github.com/KuTuGu/netjsongraph.js/commit/74996eee783c6b1e3f805895b776b29b54af30b9Perfect the README and params:
> I see. Is the date format configurable? For example, can someone tell the library to use a date like June 12, 2019 instead of 2019.06.12?Yeah, the user can pass a specific regular expression:https://github.com/KuTuGu/netjsongraph.js/blob/b51355c921932f9502599d9aa2a9976aa1c93473/src/js/netjsongraph.core.js#L272> Can you make the link line thicker please?> Can we control the style of those?Yeah, we can control colorful styles according to the params -- nodeStyleProperty、linkStyleProperty:https://github.com/KuTuGu/netjsongraph.js/blob/b51355c921932f9502599d9aa2a9976aa1c93473/src/js/netjsongraph.core.js#L17-L18And because we use canvas render, so we can't custom the style by `css class`, but the specific format in echarts like the link I writed in the commented code.
--
You received this message because you are subscribed to the Google Groups "OpenWISP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openwisp+u...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/openwisp/1fc69cb4-f19f-4bfb-9d5b-3e62fa4d4092%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "OpenWISP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openwisp+u...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/openwisp/cc3dfea7-a853-4774-aaa0-7af594a728cb%40googlegroups.com.
There are some comments on https://github.com/openwisp/netjsongraph.js/pull/73/, please review and let us know.
7.8 - 7.13:Progress:
- Fixed bugs in indoor map when zoom or move: https://github.com/KuTuGu/NetJSONDemo/commit/4772033ce90572f34339e48bf8982050c045dc65- Fixed some default configs in rendering: https://github.com/KuTuGu/netjsongraph.js/commits/dev-nodeExpandTwo indoor map examples:- https://kutugu.github.io/NetJSONDemo/examples/netjsonmap-indoormap.html, align with the center of the screen when initializing.- https://kutugu.github.io/NetJSONDemo/examples/netjsonmap-indoormap2.html, image's positioned based on geographic coordinates.
Doing:- Try to fix the errors when calling the leaflet plugins
> Ensure the controls to zoom in and out are present in the examples.Fixed.
> Please align the points in the indoor map to some visual elements so the example makes more sense, for example: put some points on the center of some tables, on some walls.Modified the location of some nodes. You can see here: https://kutugu.github.io/NetJSONDemo/examples/netjsonmap-indoormap.html
> Can you add a loading indicator while the indoor map loads please? This may be useful also any time anything needs to be downloaded.Added. Loading is now displayed when loading or updating data.
Optimize the fluency of zoom:
- According to the built-in zooming function - `updateViewOnZoom` of `echarts`, but the scale is uncontrollable because `leaflet` and `echarts` have different scaling, and this function also causes nodes bigger, so it should be NOT available.
- Reading the source code of `updateLayout`, trying to understand the key to the re-rendering of `echarts`.
Update README, adding more detail and codes of new features.
--
You received this message because you are subscribed to the Google Groups "OpenWISP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openwisp+u...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/openwisp/e1089ea1-4b3f-4435-b718-c81f24287da1%40googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "OpenWISP" group.
To unsubscribe from this group and stop receiving emails from it, send an email to openwisp+u...@googlegroups.com.
To view this discussion on the web, visit https://groups.google.com/d/msgid/openwisp/aaa6364b-6484-4980-b593-52f3b2e35067%40googlegroups.com.