Graph network visualisation in flutter? - flutter

I'm a newbie in flutter. Would anybody have an idea of how to plot a graph network in flutter?
An example using d3js is below. I'm interested in a solution that doesn't use d3js so it could work on mobiles.
Thank you
https://bl.ocks.org/mbostock/1093130

This package seems to be an answer (very basic compared to d3 though):
https://pub.dev/packages/graphview
Also I noticed this answer today:
https://stackoverflow.com/a/59840394/884752
The package seems more advanced.

Related

Is it possible to draw polygons on maps using the flutter_map package?

I have an application where I need to highlight some states of the country with different colors. Is it possible to do this, using the flutter_map package?
I'm new to flutter, I apologize. But I've searched the library documentation and various places and haven't found anything that can help me.
Sorry for the late response.
If you haven't found it already, or for anyone else looking, have a look at the new documentation website: https://docs.fleaflet.dev/usage/layers/polygon-layer.
If you need more help with this package, we'd love to help you on the Discord server (see the README for the join link).

Android Blood pressure graph implementation?

Thanks for reading the question, I need to implement the Blood pressure graph in my Android sample application, I attached the sample image below, Can i use third party libraries like achart engine and MPChart Android for making the graph,Any ideas and suggestions kindly share those details,
Thanks ,
Naren.S
I would suggest you http://www.android-graphview.org/ library. It's super easy to use. However I'm not sure how to implement the vertical lines among points since you'd have to introduce two LineGraphSeries.
But if you don't need that vertical lines, the GraphView library would be wise and easy solution :)

chart library which can edit graph by dragging points?

I'm looking for preferably javascript (but flash would do too) charting library which would be able to render time series as line chart and then allow to drag points in chart to change the underlying data.
I was said that Excel can do exactly the same thing, but I need it on web. No well-known charting library like Highcharts, amCharts, GoogleCharts or dygraphs cand apparently do that - I found some draggable graphs solutions like WireIt or http://radokirov.com/js-graph-editor/ but these are nodes and edges types of graphs not really-usable for chart drawing.
Do you know any ready for use solution to this problem? I don't care whether it's opensource or commercial.
Late response; I might help future visitors, though.
I'm looking for something similar. try: http://www.jqplot.com/deploy/dist/examples/customHighlighterCursorTrendline.html
Some other options (hopefully helpful to future visitors):
FusionCharts: https://www.fusioncharts.com/charts/visually-editable-charts/editable-line-chart
Chart.js (plugin): https://github.com/chrispahm/chartjs-plugin-dragData

How to create chart application in iphone

I'm assigned with new task for creating chart application in iphone like.,(BarChart,PieChart,etc..,).But,i have no idea for chart application in iphone.Please anyone help me out to guide me to start chart application in iphone.If any of the frameworks or API used for this kind of chart application means please explain that also.
Give a shot to:
Core-Plot Framework
To get it working, read here.
You can also see the accepted answer of this SO question.
For a little bar-chart tutorial go here.
There is also:
s7graphview less features but It's an option.
If you can rely on the web, although it's a far from optimal solution, you can embed a UIWebView in your application, and use the Google Graph Visualization API or you can use a UIWebView with an HTML5 graph library lake rgraph. Look here for a jQuery based solution. Filament Group made also this one.
At the and some sample code from Apple (Accelerometer Graph).
A commonly used Cocoa "native" charting library is core-plot. Whilst I've yet to personally use it, it seems to be quite popular and is under active development.
Here you go, but next time please use the search function first:
http://code.google.com/p/core-plot/
Cocoa Graphing/Plotting Framework that Works on iPhoneOS
A popular one is core plot. http://code.google.com/p/core-plot/

iPhone, how do I draw a simple line graph from an array of prices and dates?

I'm looking for some very simple to develop line graph library. However, all the examples seem quite complicated. I have a database with two main fields, date and value.
Can anyone point me at or provide me with an example of code which will do just that ?
I've used the CorePlot library with success. Here is a really good tutorial on how to use it.
There's example code for line graphs in Apple's Accelerometer sample app.