Perseus
    Preparing search index...
    type LockedFunctionType = {
        ariaLabel?: string;
        color: LockedFigureColor;
        directionalAxis: "x" | "y";
        domain: [min: number, max: number];
        equation: string;
        labels: LockedLabelType[];
        strokeStyle: LockedLineStyle;
        type: "function";
        weight: StrokeWeight;
    }
    Index

    Properties

    ariaLabel?: string
    directionalAxis: "x" | "y"

    The independent variable of this function

    domain: [min: number, max: number]

    The minimum and maximum values along the directionalAxis at which this function should be graphed. Values of -Infinity and Infinity are allowed. Note that infinite values are serialized as null in JSON.

    equation: string

    This is the user-defined equation (as it was typed)

    labels: LockedLabelType[]
    strokeStyle: LockedLineStyle
    type: "function"
    weight: StrokeWeight