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):
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);
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.