forked from jgraph/mxgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.txt
More file actions
19 lines (13 loc) · 739 Bytes
/
index.txt
File metadata and controls
19 lines (13 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Document: API Specification
Overview:
This PHP library is divided into 4 packages. The top-level <mxServer>
class dynamically includes everything else.
The *view* and *model* packages implement the graph component, represented
by <mxGraph>. It refers to a <mxGraphModel> which contains <mxCell>s and
caches the state of the cells in a <mxGraphView>. The cells are painted
using a <mxCanvas> based on the appearance defined in <mxStylesheet>.
The *io* package implements a generic <mxObjectCodec> for turning
PHP objects into XML. The main class is <mxCodec>. <mxCodecRegistry>
is the global registry for custom codecs.
Requirements:
The I/O module requires libxml support. The <mxGdCanvas> requires GD support.