Is your documentation request related to a problem? Please describe.
#760 provides a way to highly reduce the footprint of maxGraph in applications.
The documentation currently only mention the Graph class which limits tree-shaking.
Describe the solution you'd like
The documentation should provides guidance and best-pratices to reduce the bundle size of applications using maxGraph.
Additional context
Summary from OpenAI Codex
- Graph is the ready-to-use DOM graph class; it wires a container, default model/view, registers built-in shapes, markers, and loads the default plugin set for prototyping (packages/core/src/view/Graph.ts:41).
- BaseGraph exposes the minimal, tree-shakeable graph skeleton for production builds where you opt into specific plugins/styles yourself (packages/core/src/view/BaseGraph.ts:34).
Is your documentation request related to a problem? Please describe.
#760 provides a way to highly reduce the footprint of maxGraph in applications.
The documentation currently only mention the
Graphclass which limits tree-shaking.Describe the solution you'd like
The documentation should provides guidance and best-pratices to reduce the bundle size of applications using maxGraph.
Create a dedicated documentation page for tree-shaking
Document usage patterns for both
GraphandBaseGraph- docs: add graph documentation page and refine related pages #1048Additional context
Summary from OpenAI Codex