0
0
FigmaConceptBeginner · 4 min read

What is FigJam: Overview and Use Cases

FigJam is an online collaborative whiteboard tool by Figma designed for teams to brainstorm, plan, and share ideas visually in real time. It allows users to draw, add sticky notes, shapes, and diagrams in a simple, interactive space.
⚙️

How It Works

FigJam works like a digital whiteboard where multiple people can draw, write, and add elements together at the same time. Imagine a big sheet of paper where your team can jot down ideas, sketch diagrams, or organize thoughts using sticky notes and shapes.

It’s easy to use because it feels like working on a physical whiteboard but with the power of digital tools. You can invite teammates to join your board, chat, and even use built-in templates to speed up your work. Changes happen live, so everyone sees updates instantly, making teamwork smooth and interactive.

💻

Example

This example shows how you might create a simple FigJam board with sticky notes and shapes using Figma's API (conceptual example):

javascript
const figjamBoard = {
  title: "Team Brainstorm",
  elements: [
    { type: "stickyNote", text: "Idea 1: New feature", color: "yellow", position: { x: 100, y: 150 } },
    { type: "stickyNote", text: "Idea 2: Improve UI", color: "pink", position: { x: 300, y: 150 } },
    { type: "shape", shapeType: "circle", color: "blue", position: { x: 200, y: 300 }, size: 50 }
  ]
};

console.log(figjamBoard);
Output
{ title: 'Team Brainstorm', elements: [ { type: 'stickyNote', text: 'Idea 1: New feature', color: 'yellow', position: [Object] }, { type: 'stickyNote', text: 'Idea 2: Improve UI', color: 'pink', position: [Object] }, { type: 'shape', shapeType: 'circle', color: 'blue', position: [Object], size: 50 } ] }
🎯

When to Use

Use FigJam when your team needs to brainstorm ideas, plan projects, or map out workflows together. It’s perfect for remote teams who want a shared space to collaborate visually without needing complex software.

Common uses include sprint planning, user journey mapping, design thinking workshops, and quick team meetings where visual input helps everyone understand and contribute better.

Key Points

  • FigJam is a collaborative online whiteboard by Figma.
  • It supports real-time teamwork with drawing, sticky notes, and shapes.
  • Ideal for brainstorming, planning, and visual collaboration.
  • Works well for remote and in-person teams.

Key Takeaways

FigJam is a simple, interactive whiteboard tool for team collaboration.
It allows real-time drawing, note-taking, and diagramming.
Use it for brainstorming, planning, and visual workshops.
It enhances teamwork especially for remote or hybrid teams.