Skip to main content

How to create bubble diagram in PowerPoint 2013 (for architects)

Powerpoint provides us with many possible shapes to create and many smart shapes too. We can utilize the smart shapes and customize those to our needs. the following method provides architects with an easy method of creating a bubble diagram for their pre-design stage.

This method is very interactive and useful because you can add multiple bubbles that prefer not to overlap and the text automatically changes the size while the shapes and connectors adjust themselves.

Bubble Diagram

  1. Create a blank page and go to insert tab.
  2. Horizontal Hierarchy
  3. Click on smart shapes and the select "Horizontal Hierarchy" shape from the "Hierarchy" list
  4. You'll page will be filled with the following shapes 
    Horizontal Hierarchy
  5. Click on each of the shapes and right-click for the context menu. Select change shape > oval.
  6. Then change the oval shape into a circle by dragging the corners of the shape, like the image below 
    Bubble diagram
  7. If you want to add more bubbles, click on any of the shapes(circle or line) and right click to see add shapes option.
    Add bubbles

    P.S.- I would recommend you to continue to the following step only if you're confident about the size and placement of the shapes
  1. Once you're done, you can right-click inside the smart object(not on the shapes) to select "convert to shapes". This will convert the smart shape into shapes and group them
    Convert to shapes
    P.S. - before ungrouping the smart object, it's better to have a duplicate in case you want to go back to the smart shape
  2. Ungroup the shapes by right click > group > ungroup.
  3. Now if you want to add more lines linking to bubbles, you can add using the line shape tool. 
    Add new lines
  4. Finally, you can change the thickness of the line from the format shape windows that pops up when you right-click on the line > format shape
    Thick lines

P.S. - Unfortunately, after changing the smart art to shapes, they become a custom shape from the standard powerpoint shapes. This makes it difficult to add more points on the shape(for connectors) while retaining the original shape format.

Adding multiple points for connector lines

To get a circle with multiple connector points(more than 8), you can follow the process given rich007.
  1. Insert a 32-point Star.
  2. Slide the yellow adjustment handle so that the "height" of the star-points is zero, forming a circle or oval.
  3. Try to connect a line connector to the shape... only 4 connectors available.
  4. Right-click on the shape > Edit Points.
  5. Right-click on any one of the star's points and change it from Corner Point to Smooth Point.
  6. Try to connect a line connector to the shape... there are now 64 points to choose from!


P.S.: You can change the color of the shape to your need or include gradient, picture, texture, pattern or slide background like following.
Shape fill types





Comments

Popular Posts

Power Query - "SUBSTITUTE" Function: Remove/Replace multiple values in a column in One Step.

Often times, when you get data from a source, there will most probably be something incorrect that needs to be fixed using an ETL process of Power Query. And most of those transformations would require either Replacing or Removing string's that are not necessary. For example, if you extract any financial data from a source which has multiple currency symbols, there's a chance that the numbers get extracted along with the currency symbols like "$700"/"€700" instead of 700. And these type of cases makes it tough to Transform the Data to our wish as the value will be considered as a text instead of a number. In those type of cases, we would most likely have to create multiple steps to remove the multiple currency symbols from the Column. But thanks to the solution provided by Marcel for one of the questions posted on Stack Overflow, with a little manipulation of the Query language (M), we can replace/Remove multiple strings in one step using the List. ...

Scribble on your PC/Mac screen with these annotation tools

     While you are in a presentation or hosting a webinar, you might want to write/highlight a part of your screen to draw the attention of your audience on something important. Although you can use the tools from powerpoint to scribble in the PPT file, you might want to write something on other apps as well.      That's where these awesome apps come into play. Although these apps have similar features, you might prefer one above the other. ZoomIt :       ZoomIt is an application developed by Microsoft which can be installed from the following link . It is a free tool with features like Text, Shapes, whiteboard, blackboard, zoom . When activated, the tool converts the current screen into a static image and allows you to draw/write on it. One the tool is activated, you can also choose to create a whiteboard/blackboard screen on your PC to draw on. Although the colors are limited to 6 colors: Red (R) , Green (G) , Blue (B) , Orange (O...

Grasshopper: offsetting curves on surface vs scaling curves on surface

Though in Grasshopper Offset and Scale are two different node functions, when it comes to a planar surface, the results of the both are similar. But, I found the " Scale" node to be effective when you want to loft the resultant curve with another. The following images show the different results of a Voronoi structure that yielded when scale and offset nodes are used. When the Offset node is used When Scale is used

Grasshopper: Voronoi Holes on a Planar surface

One of the best natural examples for a Voronoi is the Wing structure of a dragon fly.Grasshopper can help us to build a shape like this in Rhino. Image Courtesy:  The Pond blog Grasshopper by default has a node for Voronoi, we just have to prepare the necessary information to feed into the node. The following example shows how to create a Voronoi shaped holes in a surface Create a planar  Surface  from rhino or grasshopper Randomly Populate the surface with points using the  Populate 2D  Node Feed the surface and the points into the  Voronoi  node and feed a number slider too to adjust eh radius This forms the required Voronoi structure which you can edit the number of points or radius. To create the holes we need to offset each and every inner portion towards its centre using the  Scale  node We can find the centre of each of the inner portions using Area node I'm not sure why but using the offset command su...