stz-util Documentation - v1.5.2
    Preparing search index...

    Variable T$Const

    T$: {
        ArcChartWrapper: typeof ArcChartWrapper;
        BarChartWrapper: typeof BarChartWrapper;
        BubbleChartWrapper: typeof BubbleChartWrapper;
        CartesianChartWrapper: typeof CartesianChartWrapper;
        ChartWrapper: typeof ChartWrapper;
        create: <TType extends keyof ChartTypeRegistry>(
            type: TType,
            labels: (string | number)[],
            datasets: CustomChartDatasets<TType>[],
            options?: CustomChartOptions<TType>,
            plugins?: Plugin<keyof ChartTypeRegistry, AnyObject>,
        ) => TType extends keyof ChartBuilderMap
            ? ChartBuilderMap[TType<TType>]
            : ChartBuilder<TType>;
        defaultsOptions: __module;
        defaultTypes: __module;
        DoughnutChartWrapper: typeof DoughnutChartWrapper;
        LineChartWrapper: typeof LineChartWrapper;
        PieChartWrapper: typeof PieChartWrapper;
        register: <TType extends keyof ChartTypeRegistry, TInstance>(
            type: TType,
            wrapperClass: Constructor<TType, TInstance>,
        ) => void;
        toolBox: {
            setErrorLog(enabled?: boolean): void;
            setErrorShield(enabled?: boolean): void;
        };
    } = ...

    Type Declaration

    • ReadonlyArcChartWrapper: typeof ArcChartWrapper
    • ReadonlyBarChartWrapper: typeof BarChartWrapper
    • ReadonlyBubbleChartWrapper: typeof BubbleChartWrapper
    • ReadonlyCartesianChartWrapper: typeof CartesianChartWrapper
    • ReadonlyChartWrapper: typeof ChartWrapper
    • Readonlycreate: <TType extends keyof ChartTypeRegistry>(
          type: TType,
          labels: (string | number)[],
          datasets: CustomChartDatasets<TType>[],
          options?: CustomChartOptions<TType>,
          plugins?: Plugin<keyof ChartTypeRegistry, AnyObject>,
      ) => TType extends keyof ChartBuilderMap
          ? ChartBuilderMap[TType<TType>]
          : ChartBuilder<TType>
    • ReadonlydefaultsOptions: __module
    • ReadonlydefaultTypes: __module
    • ReadonlyDoughnutChartWrapper: typeof DoughnutChartWrapper
    • ReadonlyLineChartWrapper: typeof LineChartWrapper
    • ReadonlyPieChartWrapper: typeof PieChartWrapper
    • Readonlyregister: <TType extends keyof ChartTypeRegistry, TInstance>(
          type: TType,
          wrapperClass: Constructor<TType, TInstance>,
      ) => void
    • ReadonlytoolBox: {
          setErrorLog(enabled?: boolean): void;
          setErrorShield(enabled?: boolean): void;
      }