Perseus
    Preparing search index...

    Type Alias PerseusInteractionFunctionElementOptions

    type PerseusInteractionFunctionElementOptions = {
        color: string;
        funcName: string;
        rangeMax: string;
        rangeMin: string;
        strokeDasharray: string;
        strokeWidth: number;
        value: string;
    }
    Index

    Properties

    color: string

    The color of the stroke. e.g. #6495ED

    funcName: string

    The name of the function like f(n). default: "f"

    rangeMax: string

    The range of points to end plotting

    rangeMin: string

    The range of points to start plotting

    strokeDasharray: string

    If the function stroke has a dash, what is it? options: "", "-", "- ", ".", ". "

    strokeWidth: number

    The thickness of the stroke

    value: string

    The definition of the function to draw on the graph. e.g "x^2 + 1"