Is there a way to create a bubble chart with Chartist.js? - javascript

I'm searching for a chart tool to integrate into my app and I really liked the Chartist.js but I couldn't found any resources showing how to create bubble charts like this one in D3.
My goal is to create a non-overlapping bubble chart with images.
I would like to know if there is a way to achieve this natively or with a plugin.

Related

Angular-7 - How to create hybrid network and bubble chart

I have requirement to design a chart with hybrid of network and bubble chart in Angular-7. The result looks something like in the image below It also should show the flow of data like there in the site Union Budget 2020. I am using chart.js and ng2-charts in angular-7. Is there a way around to design such graph in chart.js or need to use some other library? I have gone through these libraries as of now:
Vis Network
D3
GoJS
but did not found the perfect one.

How to create a chart like this in the browser?

I have a requirement to create a dynamic chart like this in the browser
Users should be able the drag and drop items onto the canvas and connect items together. I'd like to subscribe to events like dropped, connected items, etc. I am not sure what this type of chart is therefore I cannot research to see if there are any ready made JS libraries that do this. Do you know what kind of chart this is? What are some ready made libraries that make working with these charts easier?
You could probably configure an org chart from google charts to match your needs
https://developers.google.com/chart/interactive/docs/gallery/orgchart

d3 zooming charts together in different divs

I have multiple charts in different divs on the same page. All charts
have zoom/pan implemented. However, I want to implement synchronized zooming/panning across all charts, such that when someone zooms/pans one chart all charts zoom/pan together.
In other words, I'd like to implement mbostock's Focus and Context (http://bl.ocks.org/mbostock/1667367) when they are in different divs.
I'm using angular.

Which D3 Layout should I use to show relationships?

Hi I'm just getting into Data Visualization and D3 and I'm trying to make a diagram that conveys the relationships between a group of people and I was wondering if I should use a Chord Diagram layout or a Hierarchal Bundling layout?
I like the look of the edges in Hierarchal Bundling layout but I really don't have an Hierarchy. Also Im not sure how the bundling works.
Can I make a chord layout in D3 with just strokes and not fills?
Here's a list of resources that can help you choose the right visualization technique for your data:
How to design Charts and Graphs
Guide to Visual Communication
Visualization Cheatseet by Tom MacWright
A Tour through the Visualization Zoo by Jeffrey Heer, Michael Bostock, and Vadim Ogievetsky
if you have number of people plototed against their attributes, then parallel plotting is the best option. In parallel Plotting you can compare the feature of 1 perso with another on the same chart.
Here are the two links that will help you in creating parallel coordinates:
parallel chart 1 with all the capability making use of 1 library`
The famous chart directory blocks.org

interaction between d3.js graph and dc.js graph

I am working on d3.js and dc.js libraries from few weeks. I have created scatter plot in d3.js and bar graph in dc.js. I want to know that is there possibility to interact between these two different graphs created in two different javascripts. In short, is it possible to interact between two different graphs created in d3.js and dc.js?
thank you.
Not going to give you the codes, sorry.
You'll want to use crossfilter as the bridge between the graphs, though:
create a dimension which is for the scatterplot (different from the dimensions used in the dc.js charts, but same crossfilter instance)
react to the interaction in d3 and set the filter on that dimension
Often when creating a dimension for a scatterplot, you will use a key that is unique for each row, or barring that, the row index itself. If you search around for dc.js scatterplot or bubblechart, you ought to find examples.
Also dc.js has a scatterplot now. It needs some love and is not as feature-rich as the bubble plot, but it exists.

Categories