Perseus
    Preparing search index...
    type PerseusGraphTypePoint = {
        coord?: Coord;
        coords?: Coord[] | null;
        numPoints?: number | "unlimited";
        startCoords?: Coord[];
        type: "point";
    }
    Index

    Properties

    coord?: Coord

    Used instead of coords in some old graphs that have only one point.

    coords?: Coord[] | null
    numPoints?: number | "unlimited"

    The number of points if a "point" type. default: 1. "unlimited" if no limit

    startCoords?: Coord[]

    The initial coordinates the graph renders with.

    type: "point"