common-spectrum
    Preparing search index...

    Variable JSGraphConst

    JSGraph: {
        getJSGraph: (
            analyses: Analysis[],
            options?: JSGraphOptions,
        ) => {
            axes: {
                x: {
                    display: boolean;
                    flipped: boolean;
                    label: undefined | string;
                    logScale?: boolean;
                    unit: undefined | string;
                    units?: string;
                    unitWrapperAfter: string;
                    unitWrapperBefore: string;
                };
                y: {
                    display: boolean;
                    flipped: boolean;
                    label: undefined
                    | string;
                    logScale?: boolean;
                    unit: undefined | string;
                    units?: string;
                    unitWrapperAfter: string;
                    unitWrapperBefore: string;
                };
            };
            series: Record<string, unknown>[];
        };
        getNormalizationAnnotations: (
            filter?: AnnotationsFilter,
            boundary?: Boundary,
        ) => {
            fillColor: string;
            position: { x: number; y: string }[];
            strokeWidth: number;
            type: string;
        }[];
    } = ...

    Type declaration

    • getJSGraph: (
          analyses: Analysis[],
          options?: JSGraphOptions,
      ) => {
          axes: {
              x: {
                  display: boolean;
                  flipped: boolean;
                  label: undefined | string;
                  logScale?: boolean;
                  unit: undefined | string;
                  units?: string;
                  unitWrapperAfter: string;
                  unitWrapperBefore: string;
              };
              y: {
                  display: boolean;
                  flipped: boolean;
                  label: undefined
                  | string;
                  logScale?: boolean;
                  unit: undefined | string;
                  units?: string;
                  unitWrapperAfter: string;
                  unitWrapperBefore: string;
              };
          };
          series: Record<string, unknown>[];
      }
    • getNormalizationAnnotations: (
          filter?: AnnotationsFilter,
          boundary?: Boundary,
      ) => {
          fillColor: string;
          position: { x: number; y: string }[];
          strokeWidth: number;
          type: string;
      }[]