weknowinc / react-bubble-chart-d3

React Bubble Chart using D3
MIT License
57 stars 56 forks source link

Is it possible to pack my bubbles in groups by type? #40

Open igorovisk opened 1 year ago

igorovisk commented 1 year ago

Hello! I want to know if it is possible to pack my bubbles by properties:

ex: const data = [ {type: 'food', name: "banana", value: 10 }, {type: 'food', name: "apple", value: 11 }, {type: 'food', name: "grape", value: 12 }, {type: 'beverage', name: "beer", value: 12 }, {type: 'beverage', name: "wine", value: 12 }, {type: 'beverage', name: "gin", value: 12 }, ]

Is it possible to group the foods in a circle and beverage on another and keep them in the same Chart (SVG)?