sesaparcours
    Preparing search index...
    • Adds the line going through points a and with line slope x syntaxes addLineAx(a, x), addLineAx(a, x, name), addLineAx(a, x, name, color), addLineAx(a, x, name, color, lineStyle) and addLineAx(a, x, name, color, lineStyle, thickness) are allowed too

      Parameters

      • options: {
            a: string | CPt;
            color?: string;
            fontSize?: number;
            hidden?: boolean;
            hiddenName?: boolean;
            lineStyle?: string;
            name?: string;
            opacity?: number;
            tag?: string;
            thickness?: number;
            x: string | number | CValDyn;
        }
        • a: string | CPt

          Point or point name the line is going through

        • Optionalcolor?: string

          Color, black by default

        • OptionalfontSize?: number

          Font size of the name

        • Optionalhidden?: boolean

          true to get the created line masked

        • OptionalhiddenName?: boolean

          true to get the created line name masked

        • OptionallineStyle?: string

          Line style (line|-|dot|.|dashdash|--|dashdotdot|-..|dashdotdotdot|-...|dashdashdash|---)

        • Optionalname?: string

          Name of the line to be created (if present)

        • Optionalopacity?: number

          opacity (0 to 1), 1 by default

        • Optionaltag?: string

          Tag to be applied on the created line (if present)

        • Optionalthickness?: number

          Stroke thickness

        • x: string | number | CValDyn

          slope of the line (number or valid formula)

      Returns Promise<undefined> | CDroiteOm

      The created line if isPromiseMode is false or promise that will be resolved when the line is displayed